From 82d769c56e4a035906a9ac9362a6c0073f7f91b5 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Tue, 1 Jun 2021 11:09:19 +0100 Subject: [PATCH 001/192] Document new irc channel location --- doc/_templates/indexsidebar.html | 2 +- doc/internals/contributing.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/_templates/indexsidebar.html b/doc/_templates/indexsidebar.html index 94174ce909b..55e3f9f40b3 100644 --- a/doc/_templates/indexsidebar.html +++ b/doc/_templates/indexsidebar.html @@ -18,6 +18,6 @@

{%trans%}Questions? Suggestions?{%endtrans%}

-

{%trans%}or come to the #sphinx-doc channel on FreeNode.{%endtrans%}

+

{%trans%}or come to the #sphinx-doc channel on libera.chat.{%endtrans%}

{%trans%}You can also open an issue at the tracker.{%endtrans%}

diff --git a/doc/internals/contributing.rst b/doc/internals/contributing.rst index 6977614cde8..8c74d1b1081 100644 --- a/doc/internals/contributing.rst +++ b/doc/internals/contributing.rst @@ -21,7 +21,7 @@ sphinx-users sphinx-dev Mailing list for development related discussions. -#sphinx-doc on irc.freenode.net +#sphinx-doc on irc.libera.chat IRC channel for development questions and user support. .. _python-sphinx: https://stackoverflow.com/questions/tagged/python-sphinx From 1227799abf0d0e3dafa0d61461cf613468e894df Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 30 Jun 2021 12:40:12 +0200 Subject: [PATCH 002/192] texinfo: fix emission of @footnote directives. Right now, labels are emitted as part of a @footnote directive. That results in e.g. Note1: (@footnote{@w{(1)} Future versions of GCC may zero-extend... }) which is incorrect and should be rather: Note1: (@footnote{Future versions of GCC may zero-extend...}) --- sphinx/writers/texinfo.py | 12 +++++++++--- tests/test_build_texinfo.py | 8 ++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 6df558323f9..ebb05d9abf3 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -761,10 +761,12 @@ def visit_title_reference(self, node: Element) -> None: # -- Blocks def visit_paragraph(self, node: Element) -> None: - self.body.append('\n') + if not self.in_footnote: + self.body.append('\n') def depart_paragraph(self, node: Element) -> None: - self.body.append('\n') + if not self.in_footnote: + self.body.append('\n') def visit_block_quote(self, node: Element) -> None: self.body.append('\n@quotation\n') @@ -1223,7 +1225,11 @@ def depart_sidebar(self, node: Element) -> None: self.depart_topic(node) def visit_label(self, node: Element) -> None: - self.body.append('@w{(') + # label numbering is automatically generated by Texinfo + if self.in_footnote: + raise nodes.SkipNode + else: + self.body.append('@w{(') def depart_label(self, node: Element) -> None: self.body.append(')} ') diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index 546ccaabf4b..807b6b4f752 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -112,3 +112,11 @@ def test_texinfo_escape_id(app, status, warning): assert translator.escape_id('Hello(world)') == 'Hello world' assert translator.escape_id('Hello world.') == 'Hello world' assert translator.escape_id('.') == '.' + + +@pytest.mark.sphinx('texinfo', testroot='footnotes') +def test_texinfo_footnote(app, status, warning): + app.builder.build_all() + + output = (app.outdir / 'python.texi').read_text() + assert 'First footnote: @footnote{First}' in output From 27db7f6307a928469608bf84385a05588e5e2aa9 Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Sun, 15 Aug 2021 12:04:09 +0200 Subject: [PATCH 003/192] "Hide Search Matches" removes "highlight" parameter from URL --- sphinx/themes/basic/static/doctools.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sphinx/themes/basic/static/doctools.js b/sphinx/themes/basic/static/doctools.js index 8cbf1b161a6..dd4af9dd656 100644 --- a/sphinx/themes/basic/static/doctools.js +++ b/sphinx/themes/basic/static/doctools.js @@ -264,6 +264,9 @@ var Documentation = { hideSearchWords : function() { $('#searchbox .highlight-link').fadeOut(300); $('span.highlighted').removeClass('highlighted'); + var url = new URL(window.location); + url.searchParams.delete('highlight'); + window.history.replaceState({}, '', url); }, /** From cf9b5b5be978355e518a1a8d506fbd967baecb54 Mon Sep 17 00:00:00 2001 From: Latosha Maltba <79100569+latosha-maltba@users.noreply.github.com> Date: Tue, 21 Sep 2021 09:19:53 +0000 Subject: [PATCH 004/192] Add tests for :dedent: option of code-block directive --- tests/roots/test-directive-code/dedent.rst | 64 ++++++++++++++++++++++ tests/test_directive_code.py | 26 +++++++++ 2 files changed, 90 insertions(+) create mode 100644 tests/roots/test-directive-code/dedent.rst diff --git a/tests/roots/test-directive-code/dedent.rst b/tests/roots/test-directive-code/dedent.rst new file mode 100644 index 00000000000..f36e3e3ba83 --- /dev/null +++ b/tests/roots/test-directive-code/dedent.rst @@ -0,0 +1,64 @@ +dedent option +------------- + +.. code-block:: + + First line + Second line + Third line + Fourth line + +ReST has no fixed indent and only a change in indention is significant not the amount [1]_. +Thus, the following code inside the code block is not indent even it looks so with respect to the previous block. + +.. code-block:: + + First line + Second line + Third line + Fourth line + +Having an option "fixates" the indent to be 3 spaces, thus the code inside the code block is indented by 4 spaces. + +.. code-block:: + :class: dummy + + First line + Second line + Third line + Fourth line + +The code has 6 spaces indent, minus 4 spaces dedent should yield a 2 space indented code in the output. + +.. code-block:: + :dedent: 4 + + First line + Second line + Third line + Fourth line + +Dedenting by zero, should not strip any spaces and be a no-op. + +.. note:: + This can be used as an alternative to ``:class: dummy`` above, to fixate the ReST indention of the block. + +.. code-block:: + :dedent: 0 + + First line + Second line + Third line + Fourth line + +Dedent without argument should autostrip common whitespace at the beginning. + +.. code-block:: + :dedent: + + First line + Second line + Third line + Fourth line + +.. [1] https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#indentation diff --git a/tests/test_directive_code.py b/tests/test_directive_code.py index a011a31e8ff..95b6455d224 100644 --- a/tests/test_directive_code.py +++ b/tests/test_directive_code.py @@ -580,3 +580,29 @@ def test_linenothreshold(app, status, warning): # literal include not using linenothreshold (no line numbers) assert ('# Very small literal include ' '(linenothreshold check)' in html) + +@pytest.mark.sphinx('dummy', testroot='directive-code') +def test_code_block_dedent(app, status, warning): + app.builder.build(['dedent']) + doctree = app.env.get_doctree('dedent') + codeblocks = list(doctree.traverse(nodes.literal_block)) + # Note: comparison string should not have newlines at the beginning or end + text_0_indent = '''First line +Second line + Third line +Fourth line''' + text_2_indent = ''' First line + Second line + Third line + Fourth line''' + text_4_indent = ''' First line + Second line + Third line + Fourth line''' + + assert codeblocks[0].astext() == text_0_indent + assert codeblocks[1].astext() == text_0_indent + assert codeblocks[2].astext() == text_4_indent + assert codeblocks[3].astext() == text_2_indent + assert codeblocks[4].astext() == text_4_indent + assert codeblocks[5].astext() == text_0_indent From 3b4655310ff2e7521cd9fc73385510cba60512f3 Mon Sep 17 00:00:00 2001 From: Latosha Maltba <79100569+latosha-maltba@users.noreply.github.com> Date: Tue, 21 Sep 2021 09:19:54 +0000 Subject: [PATCH 005/192] code-block: Handle ``0`` as numeric argument in :dedent: Due to how Python converts ints to bool the numeric argument ``0`` to the :dedent: option of the code-block directive was handled like if no argument was given to :dedent:. Check properly for None in the options argument processing, so ``0`` is treated as numeric argument to :dedent:. Bug: #9636 --- CHANGES | 1 + sphinx/directives/code.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 1f33b88a890..0a7a1db118f 100644 --- a/CHANGES +++ b/CHANGES @@ -23,6 +23,7 @@ Bugs fixed * #9644: autodoc: Crashed on getting source info from problematic object * #9630: autosummary: Failed to build summary table if :confval:`primary_domain` is not 'py' +* #9636: code-block: ``:dedent:`` handled numeric argument ``0`` like no argument was given Testing -------- diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 12ab51c5880..5859f359a15 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -57,7 +57,7 @@ def run(self) -> List[Node]: def dedent_lines(lines: List[str], dedent: int, location: Tuple[str, int] = None) -> List[str]: - if not dedent: + if dedent is None: return textwrap.dedent(''.join(lines)).splitlines(True) if any(s[:dedent].strip() for s in lines): From 3b9ecf95dec5a7ea7447b7502a74082d6962d070 Mon Sep 17 00:00:00 2001 From: Latosha Maltba <79100569+latosha-maltba@users.noreply.github.com> Date: Tue, 21 Sep 2021 09:19:55 +0000 Subject: [PATCH 006/192] Fix: 9636: code-block: Do not remove newlines with :dedent: If the option :dedent: (without numeric argument) was given to code-block then all newlines where striped from the resulting code. Preserve newlines when stripping common whitespace at the beginning of code blocks. --- CHANGES | 1 + sphinx/directives/code.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 0a7a1db118f..72882b5f83f 100644 --- a/CHANGES +++ b/CHANGES @@ -24,6 +24,7 @@ Bugs fixed * #9630: autosummary: Failed to build summary table if :confval:`primary_domain` is not 'py' * #9636: code-block: ``:dedent:`` handled numeric argument ``0`` like no argument was given +* #9636: code-block: ``:dedent:`` without argument did strip newlines Testing -------- diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 5859f359a15..2d3c87be9ca 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -58,7 +58,7 @@ def run(self) -> List[Node]: def dedent_lines(lines: List[str], dedent: int, location: Tuple[str, int] = None) -> List[str]: if dedent is None: - return textwrap.dedent(''.join(lines)).splitlines(True) + return textwrap.dedent('\n'.join(lines)).split('\n') if any(s[:dedent].strip() for s in lines): logger.warning(__('non-whitespace stripped by dedent'), location=location) From 54b1991e74c036126a49437d4d19cb2c7572bca9 Mon Sep 17 00:00:00 2001 From: Latosha Maltba <79100569+latosha-maltba@users.noreply.github.com> Date: Thu, 23 Sep 2021 07:52:39 +0000 Subject: [PATCH 007/192] Update :dedent: example The presence or absence of the ``:dedent: 4`` option in the example .. code-block:: ruby :dedent: 4 some ruby code makes no difference for the output due to how ReST handles whitespace. If it is present, then ReST indent is 3 and the 4 spaces of the code are stripped by the :dedent: option. If the dedent option is missing, then the ReST indent is 7 and all whitespace is stripped again. Add a dummy option to fixate the ReST indent to 3, so adding and removing of the option in the example has an effect on the output. --- doc/usage/restructuredtext/directives.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/usage/restructuredtext/directives.rst b/doc/usage/restructuredtext/directives.rst index 2a9743e948d..7745ff1ecc4 100644 --- a/doc/usage/restructuredtext/directives.rst +++ b/doc/usage/restructuredtext/directives.rst @@ -598,6 +598,7 @@ __ https://pygments.org/docs/lexers are removed via :func:`textwrap.dedent()`. For example:: .. code-block:: ruby + :linenos: :dedent: 4 some ruby code From 83225767cbe41294b97c63e34efe455fd2a9338d Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Thu, 28 Oct 2021 12:38:56 -0400 Subject: [PATCH 008/192] Set multiprocessing start method to fork Since the current code requires forking, set it explicitly rather than disabling parallelization on macOS. --- sphinx/application.py | 7 ------- sphinx/util/parallel.py | 15 ++++----------- tests/test_util_logging.py | 4 ---- 3 files changed, 4 insertions(+), 22 deletions(-) diff --git a/sphinx/application.py b/sphinx/application.py index 4a75a83fec3..d02f11faca1 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -12,7 +12,6 @@ import os import pickle -import platform import sys import warnings from collections import deque @@ -195,12 +194,6 @@ def __init__(self, srcdir: str, confdir: Optional[str], outdir: str, doctreedir: # say hello to the world logger.info(bold(__('Running Sphinx v%s') % sphinx.__display_version__)) - # notice for parallel build on macOS and py38+ - if sys.version_info > (3, 8) and platform.system() == 'Darwin' and parallel > 1: - logger.info(bold(__("For security reasons, parallel mode is disabled on macOS and " - "python3.8 and above. For more details, please read " - "https://github.com/sphinx-doc/sphinx/issues/6803"))) - # status code for command-line application self.statuscode = 0 diff --git a/sphinx/util/parallel.py b/sphinx/util/parallel.py index 2a83d6297f8..d7abc81df63 100644 --- a/sphinx/util/parallel.py +++ b/sphinx/util/parallel.py @@ -9,8 +9,6 @@ """ import os -import platform -import sys import time import traceback from math import sqrt @@ -28,12 +26,7 @@ # our parallel functionality only works for the forking Process -# -# Note: "fork" is not recommended on macOS and py38+. -# see https://bugs.python.org/issue33725 -parallel_available = (multiprocessing and - (os.name == 'posix') and - not (sys.version_info > (3, 8) and platform.system() == 'Darwin')) +parallel_available = multiprocessing and os.name == 'posix' class SerialTasks: @@ -64,7 +57,7 @@ def __init__(self, nproc: int) -> None: # task arguments self._args: Dict[int, Optional[List[Any]]] = {} # list of subprocesses (both started and waiting) - self._procs: Dict[int, multiprocessing.Process] = {} + self._procs: Dict[int, multiprocessing.context.ForkProcess] = {} # list of receiving pipe connections of running subprocesses self._precvs: Dict[int, Any] = {} # list of receiving pipe connections of waiting subprocesses @@ -96,8 +89,8 @@ def add_task(self, task_func: Callable, arg: Any = None, result_func: Callable = self._result_funcs[tid] = result_func or (lambda arg, result: None) self._args[tid] = arg precv, psend = multiprocessing.Pipe(False) - proc = multiprocessing.Process(target=self._process, - args=(psend, task_func, arg)) + context = multiprocessing.get_context('fork') + proc = context.Process(target=self._process, args=(psend, task_func, arg)) self._procs[tid] = proc self._precvsWaiting[tid] = precv self._join_one() diff --git a/tests/test_util_logging.py b/tests/test_util_logging.py index a03f62b0122..7b0369150eb 100644 --- a/tests/test_util_logging.py +++ b/tests/test_util_logging.py @@ -10,8 +10,6 @@ import codecs import os -import platform -import sys import pytest from docutils import nodes @@ -311,8 +309,6 @@ def test_colored_logs(app, status, warning): @pytest.mark.xfail(os.name != 'posix', reason="Not working on windows") -@pytest.mark.xfail(platform.system() == 'Darwin' and sys.version_info > (3, 8), - reason="Not working on macOS and py38") def test_logging_in_ParallelTasks(app, status, warning): logging.setup(app, status, warning) logger = logging.getLogger(__name__) From 9e7e6dd5ed26dac6529973af1e63142d128ef8b3 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Wed, 3 Nov 2021 12:22:01 +0100 Subject: [PATCH 009/192] base theme: Wrap sidebar components in
s Responsive themes inheriting from the base theme might want to display the sidebar horizontally on narrower screens, which can be easily achieved with flexbox. This however requires that the individual sidebar components are wrapped in HTML elements so that flexbox can properly lay them out. --- sphinx/themes/basic/localtoc.html | 6 ++++-- sphinx/themes/basic/relations.html | 16 ++++++++++------ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/sphinx/themes/basic/localtoc.html b/sphinx/themes/basic/localtoc.html index d761c23787d..750f5daa02d 100644 --- a/sphinx/themes/basic/localtoc.html +++ b/sphinx/themes/basic/localtoc.html @@ -8,6 +8,8 @@ :license: BSD, see LICENSE for details. #} {%- if display_toc %} -

{{ _('Table of Contents') }}

- {{ toc }} + {%- endif %} diff --git a/sphinx/themes/basic/relations.html b/sphinx/themes/basic/relations.html index c4391fe4d40..db478b71938 100644 --- a/sphinx/themes/basic/relations.html +++ b/sphinx/themes/basic/relations.html @@ -8,12 +8,16 @@ :license: BSD, see LICENSE for details. #} {%- if prev %} -

{{ _('Previous topic') }}

-

{{ prev.title }}

+
+

{{ _('Previous topic') }}

+

{{ prev.title }}

+
{%- endif %} {%- if next %} -

{{ _('Next topic') }}

-

{{ next.title }}

+
+

{{ _('Next topic') }}

+

{{ next.title }}

+
{%- endif %} From faed8cb8dbacf1cfe3061dc6793f0a631f8e3792 Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 30 Jun 2021 15:25:25 +0200 Subject: [PATCH 010/192] texinfo: improve variable in :samp: directives MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The following snippet: Show :samp:`Samp with a {variable}.` Ends in .info as: Show ‘Samp with a `variable'.’ Which is suboptimal and @var{variable} should be rather used. That results in ‘Samp with a VARIABLE.’. --- sphinx/writers/texinfo.py | 11 ++++++++++- tests/test_build_texinfo.py | 11 +++++++++++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 6df558323f9..3f98a882e99 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -194,6 +194,7 @@ def __init__(self, document: nodes.document, builder: "TexinfoBuilder") -> None: self.curfilestack: List[str] = [] self.footnotestack: List[Dict[str, List[Union[collected_footnote, bool]]]] = [] # NOQA self.in_footnote = 0 + self.in_samp = 0 self.handled_abbrs: Set[str] = set() self.colwidths: List[int] = None @@ -809,15 +810,23 @@ def depart_strong(self, node: Element) -> None: self.body.append('}') def visit_emphasis(self, node: Element) -> None: - self.body.append('@emph{') + element = 'emph' if not self.in_samp else 'var' + self.body.append('@%s{' % element) def depart_emphasis(self, node: Element) -> None: self.body.append('}') + def is_samp(self, node: Element) -> bool: + return 'samp' in node['classes'] + def visit_literal(self, node: Element) -> None: + if self.is_samp(node): + self.in_samp += 1 self.body.append('@code{') def depart_literal(self, node: Element) -> None: + if self.is_samp(node): + self.in_samp -= 1 self.body.append('}') def visit_superscript(self, node: Element) -> None: diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index 546ccaabf4b..f59b546e8c5 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -112,3 +112,14 @@ def test_texinfo_escape_id(app, status, warning): assert translator.escape_id('Hello(world)') == 'Hello world' assert translator.escape_id('Hello world.') == 'Hello world' assert translator.escape_id('.') == '.' + + +@pytest.mark.sphinx('texinfo', testroot='root') +def test_texinfo_samp_with_variable(app, status, warning): + app.build() + + output = (app.outdir / 'sphinxtests.texi').read_text() + + assert '@code{@var{variable_only}}' in output + assert '@code{@var{variable} and text}' in output + assert '@code{Show @var{variable} in the middle}' in output From 121d9394fc5d33f13c66599620a9b9966c894b6a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 11 Nov 2021 02:25:06 +0900 Subject: [PATCH 011/192] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 81e2ebf64cd..5450e95507f 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 4.4.0 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 4.3.1 (in development) ============================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 62b3645e7a7..307426eb7c9 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,8 +27,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.3.1+' -__released__ = '4.3.1' # used when Sphinx builds its own docs +__version__ = '4.4.0+' +__released__ = '4.4.0' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -38,7 +38,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 3, 1, 'beta', 0) +version_info = (4, 4, 0, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From ea38d9629832b33420b3700e7fdf21fd67fabf75 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 12 Nov 2021 00:44:03 +0900 Subject: [PATCH 012/192] Fix #9838: autodoc: AttributeError is raised for lru_cache --- CHANGES | 3 +++ sphinx/util/inspect.py | 13 +++++++++++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 81e2ebf64cd..4ee8d55cd91 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Features added Bugs fixed ---------- +* #9838: autodoc: AttributeError is raised on building document for functions + decorated by functools.lru_cache + Testing -------- diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 7e45fe32226..3a39bde1d6b 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -19,8 +19,7 @@ import warnings from functools import partial, partialmethod from importlib import import_module -from inspect import (Parameter, isasyncgenfunction, isclass, ismethod, # NOQA - ismethoddescriptor, ismodule) +from inspect import Parameter, isclass, ismethod, ismethoddescriptor, ismodule # NOQA from io import StringIO from types import ModuleType from typing import Any, Callable, Dict, Mapping, Optional, Sequence, Tuple, Type, cast @@ -408,6 +407,16 @@ def iswrappedcoroutine(obj: Any) -> bool: return False +def isasyncgenfunction(obj: Any) -> bool: + """Check if the object is async-gen function.""" + if hasattr(obj, '__code__') and inspect.isasyncgenfunction(obj): + # check obj.__code__ because isasyncgenfunction() crashes for custom method-like + # objects on python3.7 (see https://github.com/sphinx-doc/sphinx/issues/9838) + return True + else: + return False + + def isproperty(obj: Any) -> bool: """Check if the object is property.""" if sys.version_info >= (3, 8): From f34a0dddff99839dfd1f0896d14966d1efe9c483 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 12 Nov 2021 01:20:48 +0900 Subject: [PATCH 013/192] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 3137c04d12a..8ec29263d81 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 1.8.6 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 1.8.5 (released Mar 10, 2019) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 990b9e50892..ae3869f9021 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -36,8 +36,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '1.8.5' -__released__ = '1.8.5' # used when Sphinx builds its own docs +__version__ = '1.8.6' +__released__ = '1.8.6' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -47,7 +47,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (1, 8, 5, 'final', 0) +version_info = (1, 8, 6, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From b0e119cd722dead4e61686991dac6070a2e33634 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 12 Nov 2021 01:21:20 +0900 Subject: [PATCH 014/192] Close #9807: Restrict docutils to 0.17.x or older --- CHANGES | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 8ec29263d81..c288936a8e9 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,8 @@ Release 1.8.6 (in development) Dependencies ------------ +* #9807: Restrict docutils to 0.17.x or older + Incompatible changes -------------------- diff --git a/setup.py b/setup.py index b6b3bc25980..fa70e86315b 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ 'six>=1.5', 'Jinja2>=2.3', 'Pygments>=2.0', - 'docutils>=0.11', + 'docutils>=0.11,<0.18', 'snowballstemmer>=1.1', 'babel>=1.3,!=2.0', 'alabaster>=0.7,<0.8', From cee86909b9f4ca338bc41168e91226de520369c6 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 12 Nov 2021 01:51:12 +0900 Subject: [PATCH 015/192] Update CHANGES for PR #9815 --- CHANGES | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 5450e95507f..b35f126d788 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,9 @@ Deprecated Features added -------------- +* #9815: html theme: Wrap sidebar components in div to allow customizing their + layout via CSS + Bugs fixed ---------- From f8815ebfb0cb255141009fcabd8f2a98ecef82b0 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Fri, 12 Nov 2021 10:30:29 +0200 Subject: [PATCH 016/192] Create GitHub release from tag --- .github/workflows/create-release.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/create-release.yml diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml new file mode 100644 index 00000000000..8cc7219c58e --- /dev/null +++ b/.github/workflows/create-release.yml @@ -0,0 +1,18 @@ +name: Create release + +on: + push: + tags: + - '*' + +jobs: + create-release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + body: "Changelog: https://www.sphinx-doc.org/en/master/changes.html" From 8356260554fee9ebd26a2c11cdf039af36cd951e Mon Sep 17 00:00:00 2001 From: "oleg.hoefling" Date: Sat, 30 Oct 2021 17:57:17 +0200 Subject: [PATCH 017/192] 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 0af335686c4..4791a68ed38 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 @@ 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 00000000000..f97077300ad --- /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 00000000000..c8b008ea2b6 --- /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 00000000000..0fa9f8c76f1 --- /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 00000000000..ada6f07a6d8 --- /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 00000000000..2be9789f068 --- /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 018/192] 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 b1f23b0ffd5..a81204d4ca6 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 019/192] add changelog entry Signed-off-by: oleg.hoefling --- CHANGES | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index b35f126d788..c62d16c1f53 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 020/192] 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 4791a68ed38..59c5d9309bd 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -42,6 +42,8 @@ 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 @@ def check_uri(self, refnode: nodes.reference) -> None: 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 9ec829fb503cb0a42427de711135bae123086abf Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 25 Aug 2021 11:11:39 +0200 Subject: [PATCH 021/192] texinfo: simplify reference emission. The commit adds a new config value 'texinfo_emit_document_references' that blocks the emission of inline references and make it better readable with legacy stand-alone reader ``info``. Before the change we emit: Default option value for @ref{e,,-Wshift-overflow3}. while with texinfo_emit_document_references == True: Default option value for -Wshift-overflow3. It addresses limitations mentioned in Sphinx' FAQ: https://www.sphinx-doc.org/en/master/faq.html#texinfo-info --- doc/_static/conf.py.txt | 4 ++++ doc/faq.rst | 4 ++++ doc/usage/configuration.rst | 7 +++++++ sphinx/builders/texinfo.py | 1 + sphinx/writers/texinfo.py | 9 ++++++--- tests/test_build_texinfo.py | 14 ++++++++++++++ 6 files changed, 36 insertions(+), 3 deletions(-) diff --git a/doc/_static/conf.py.txt b/doc/_static/conf.py.txt index 9078199b3e1..3077d1b9332 100644 --- a/doc/_static/conf.py.txt +++ b/doc/_static/conf.py.txt @@ -319,6 +319,10 @@ texinfo_documents = [ # # texinfo_no_detailmenu = False +# If false, do not generate in manual @ref nodes. +# +# texinfo_cross_references = False + # -- A random example ----------------------------------------------------- import sys, os diff --git a/doc/faq.rst b/doc/faq.rst index 4b273023d3a..2e108143957 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -299,6 +299,10 @@ appear in the source. Emacs, on the other-hand, will by default replace :ref:`texinfo-links` +One can disable generation of the inline references in a document +with :confval:`texinfo_cross_references`. That makes +an info file more readable with stand-alone reader (``info``). + The exact behavior of how Emacs displays references is dependent on the variable ``Info-hide-note-references``. If set to the value of ``hide``, Emacs will hide both the ``*note:`` part and the ``target-id``. This is generally the best way diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index 551ef5dbda6..61878f225d5 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -2499,6 +2499,13 @@ These options influence Texinfo output. .. versionadded:: 1.1 +.. confval:: texinfo_cross_references + + If false, do not generate inline references in a document. That makes + an info file more readable with stand-alone reader (``info``). + Default is ``True``. + + .. versionadded:: 4.4 .. _qthelp-options: diff --git a/sphinx/builders/texinfo.py b/sphinx/builders/texinfo.py index ee10d58c350..2b28ce40008 100644 --- a/sphinx/builders/texinfo.py +++ b/sphinx/builders/texinfo.py @@ -211,6 +211,7 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('texinfo_domain_indices', True, None, [list]) app.add_config_value('texinfo_show_urls', 'footnote', None) app.add_config_value('texinfo_no_detailmenu', False, None) + app.add_config_value('texinfo_cross_references', True, None) return { 'version': 'builtin', diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 6df558323f9..70d007f6865 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -545,9 +545,12 @@ def add_anchor(self, id: str, node: Node) -> None: def add_xref(self, id: str, name: str, node: Node) -> None: name = self.escape_menu(name) sid = self.get_short_id(id) - self.body.append('@ref{%s,,%s}' % (sid, name)) - self.referenced_ids.add(sid) - self.referenced_ids.add(self.escape_id(id)) + if self.config.texinfo_cross_references: + self.body.append('@ref{%s,,%s}' % (sid, name)) + self.referenced_ids.add(sid) + self.referenced_ids.add(self.escape_id(id)) + else: + self.body.append(name) # -- Visiting diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index 546ccaabf4b..f47ec813cad 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -112,3 +112,17 @@ def test_texinfo_escape_id(app, status, warning): assert translator.escape_id('Hello(world)') == 'Hello world' assert translator.escape_id('Hello world.') == 'Hello world' assert translator.escape_id('.') == '.' + + +@pytest.mark.sphinx('texinfo') +def test_texinfo_xrefs(app, status, warning): + app.builder.build_all() + output = (app.outdir / 'sphinxtests.texi').read_text() + assert re.search(r'@ref{\w+,,--plugin\.option}', output) + + # Now rebuild it without xrefs + app.config.texinfo_cross_references = False + app.builder.build_all() + output = (app.outdir / 'sphinxtests.texi').read_text() + assert not re.search(r'@ref{\w+,,--plugin\.option}', output) + assert 'Link to perl +p, --ObjC++, --plugin.option, create-auth-token, arg and -j' in output From 5547a8bf1164abe6bc415906a388343ee389097f Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 14 Nov 2021 00:11:00 +0000 Subject: [PATCH 022/192] Update message catalogs --- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 240 ++++++++++-------- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70589 -> 70589 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101832 -> 101832 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 238 +++++++++-------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 79496 -> 79780 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 8 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/sphinx.pot | 240 ++++++++++-------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 84 +++--- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 84 +++--- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 84 +++--- 27 files changed, 810 insertions(+), 756 deletions(-) diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 04d0325999a75a5507198410266ac6df8d24d950..97cde223af3c49d5b16ff3c6cb56635ff9985a80 100644 GIT binary patch delta 24 fcmbPZG{{Kq%}Ruu-0 diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 764ab677daa..4e5a09717d8 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Ffig. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabl %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Awdur yr adran:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Awdur y fodiwl:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Awdur y cod:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Awdur:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "ffwythiant" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1988,7 +2016,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2002,20 +2030,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modiwl" @@ -2046,7 +2074,7 @@ msgstr "gweithredydd" msgid "object" msgstr "gwrthrych" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2066,84 +2094,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Chwilio %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Pwnc blaenorol" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "pennod blaenorol" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Pwnc nesaf" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "pennod nesaf" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 40f5ddefb9c952160a7c2ff18346ea80c9a7526d..6e8e50fd32f10e89dfe63abd54069b09f6ebc2e7 100644 GIT binary patch delta 15 WcmeBT>0+7C#$u>zV7{@dfe`>Dcm%ir delta 15 WcmeBT>0+7C#$uprY`C$jfe`>DWCXMT diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 184ee7a89f9..5ca18f568d7 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -1849,7 +1849,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1858,12 +1858,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "" @@ -1876,7 +1876,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1954,7 +1954,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -1971,7 +1971,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +1986,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2000,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2044,7 +2044,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2056,92 +2056,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2908,7 +2908,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index eabd0e5998eab19ea56b3630090a300c99b267f0..11107649aeb611a2d599ede4e1f5befe12ec2b0b 100644 GIT binary patch delta 19 bcmdnHoMrEFmJQL9Sqyaz%s0nRj%xq_QAG#4 delta 19 bcmdnHoMrEFmJQL9SqyZI4L8S6j%xq_Q7s3z diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 0c55ca1e73d..547e7ea703a 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -1856,7 +1856,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parámetros" @@ -1865,12 +1865,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "Devuelve" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "Tipo del valor devuelto" @@ -1883,7 +1883,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "función" @@ -1961,7 +1961,7 @@ msgid "Throws" msgstr "Lanzamientos" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "clase" @@ -1978,7 +1978,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" @@ -1993,7 +1993,7 @@ msgstr "%s() (clase)" msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" @@ -2007,20 +2007,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "módulo" @@ -2051,7 +2051,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "excepción" @@ -2063,92 +2063,92 @@ msgstr "sentencia" msgid "built-in function" msgstr "función incorporada" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descripción duplicada del objeto de %s, otra instancia en %s, utilice :noindex: para uno de ellos" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "se encontró más de un objetivo para la referencia cruzada %r: %s" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2709,42 +2709,42 @@ msgstr "en línea latex %r: %s" msgid "Permalink to this equation" msgstr "Enlace permanente a esta ecuación" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "el inventario intersphinx se ha movido: %s -> %s" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "cargando inventario intersphinx desde %s..." -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "encontró algunos problemas con algunos de los inventarios, pero tenían alternativas de trabajo:" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "no se pudo llegar a ninguno de los inventarios con los siguientes problemas:" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "(en %s)" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "el identificador de intersphinx %r no es una cadena. Ignorado" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "Error al leer intersphinx_mapping[%s], ignorado: %r" @@ -2915,7 +2915,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index eed51abdad008ac8a17f2075497310c6f12b2909..344d1eeb3f3c4a6960f5f21414b41f41b513eeec 100644 GIT binary patch delta 17 ZcmX>xo9)DGwhcd4Fd3R`{xo9)DGwhcd4Fd3L{{\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -76,76 +76,76 @@ msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "انجام شد" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "برای پیام‌های داخلی در دسترس نیست" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "بارگذاری محیط pckle شده" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "شکست خورد: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "هیچ سازنده‌ای برگزیده نشده، استفاده از قالب خروجی پیش‌فرض: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "موفّقیّت‌آمیز بود" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "انجام شد ولی با مشکل" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "ساخت %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "بست کلاس %r در حال حاضر ثبت نام شده است، بازدیدکنندگان این پیوند نادیده گرفته خواهد شد" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "دستور %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +153,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,64 +166,64 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ندارد" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "امکان لغو تنظیمات پیکربندیdictionary %r ، نادیده گرفته می‌شود (برای تعیین تک تک عناصر %r را به کار ببرید)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "شماره نامعتبر %r برای پیکربندی مقدار %r، نادیده گرفته می‌شود" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "امکان لغو تنظیمات پیکربندی %r با نوع پشتیبانی نشده نبود، نادیده گرفته می‌شود" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "مقدار پیکربندی ناشناخته %r در ابطال، نادیده گرفته شد" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "چنین مقداری برای پیکربندی نبود: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "مقدار پیکربندی %r از قبل موجود است" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "خطای نحوی در پرونده‌ی پیکربندی شما وجود دارد: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "پرونده‌ی پیکربندی (یا یکی از ماژول هایی که وارد می کند) sys.exit() را فراخواند" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "یک خطای قابل برنامه ریزی در پرونده‌ی پیکربندی شما وجود دارد:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "مقدار پیکربندی 'source_suffix' انتظار یک رشته، لیست رشته ها، یا فرهنگ لغت را داشت. اما '%r' داده شده است." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "بخش%s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "شکل %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "فهرست %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "مقدار پیکربندی '{name}' باید یکی از {candidates} باشد، اما '{current}' داده شده." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، ولی انتظار می‌رفت {permitted} می‌بود." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "مقدار پیکربندی '{name}' دارای نوع '{current.__name__}' است، حالت پیش‌فرض {permitted} است." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "دامنه‌ی اصلی %r یافت نشد، نادیده گرفته می‌شوند." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -523,104 +523,104 @@ msgstr "تصویر مناسبی برای سازنده‌ی %s پیدا نشد: % msgid "building [mo]: " msgstr "ساخت پرونده‌ی [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "نوشتن برون‌داد... " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "همه‌ی پرونده‌های %d po" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "اهداف برای %d پرونده‌های poی که مشخّص شده" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "مقصد‌های %d پرونده‌های poی هستند که منسوخ شده‌اند" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "همه‌ی پرونده‌های منبع" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "پرونده‌ی %r که در خط فرمان داده شده، در شاخه‌ی منبع نیست, نادیده گرفته می‌شود" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "پرونده‌ی %r که در خط فرمان داده شده، وجود ندارد، نادیده گرفته می‌شود" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "پرونده‌های منبع %d داده شده در خط فرمان" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "مقصد‌های %d پرونده‌های منبعی هستند که منسوخ شده‌اند" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "ساخت [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "در پی پرونده‌هایی که الآن منسوخ هستند... " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d تا مورد پیدا شد" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "چیزی پیدا نشد" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "بارگذاری محیط pickle شده" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "بررسی ثبات" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "هیچ مقدار تاریخ منسوخ نیست." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "به روز رسانی محیط: " -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s اضافه شد، %s تغییر کرد، %s حذف شد" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "خواندن منبع‌ها... " -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "در انتظار برای ابزارهای کارگر..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "نام مستندات برای نوشتن: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "آماده سازی اسناد" @@ -1813,22 +1813,50 @@ msgstr "امکان استفاده‌ی گزینه‌ی «هم‌خوان شما msgid "Line spec %r: no lines pulled from include file %r" msgstr "سطر مشخّص شده %r: هیچ سطری از پرونده‌ی گنجانده شده %r بیرون کشیده نشده" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "درختواره‌ی فهرست مطالب ارجاعی به سند کنار گذاشته شده %r را دارد" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "فهرست مطالب شامل ارجاع به سند ناموجود %r است" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "نویسنده این بخش: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "نویسنده این ماژول: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "نویسنده ی کد: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "نویسنده: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1880,7 +1908,7 @@ msgid "variable" msgstr "متغیّر" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "تابع" @@ -1958,7 +1986,7 @@ msgid "Throws" msgstr "ایجاد" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "کلاس" @@ -1975,7 +2003,7 @@ msgstr "مؤلّفه‌ی قالب" msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" @@ -1990,7 +2018,7 @@ msgstr "%s (کلاس)" msgid "%s (global variable or constant)" msgstr "%s (متغیّر عمومی یا مقدار ثابت)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" @@ -2004,20 +2032,20 @@ msgstr "نشانوندها" msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "متد" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "داده" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "مشخّصه" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "ماژول" @@ -2048,7 +2076,7 @@ msgstr "عملگر" msgid "object" msgstr "شیء" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "ایراد" @@ -2068,84 +2096,84 @@ msgstr "متغیر ها" msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s شگرد کلاس)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "%s(%sویژگی)" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "نمایه ی ماژول های پایتون" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "class method" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "متد استاتیک" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "ویژگی" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "توضیح تکراری شیئ %s، نمونه‌ی دیگر در %s قرار دارد، برای یک مورد از :noindex: استفاده کنید" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "برای ارجاع متقابل %r بیش از یک هدف پیدا شد: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (منسوخ)" @@ -2367,16 +2395,6 @@ msgid "" " will be generated" msgstr "فهرست مطالب دارای ارجاع به سند %r است که عنوانی ندارد: هیچ پیوندی تولید نخواهد شد" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "درختواره‌ی فهرست مطالب ارجاعی به سند کنار گذاشته شده %r را دارد" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "فهرست مطالب شامل ارجاع به سند ناموجود %r است" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3149,7 +3167,7 @@ msgid "page" msgstr "صفحه" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "فهرست عناوین" @@ -3274,19 +3292,19 @@ msgstr "ایجاد شده باSphinx msgid "Search %(docstitle)s" msgstr "جستجو %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "موضوع قبلی" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "فصل قبلی" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "موضوع بعدی" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "فصل بعدی" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 0aded7d1da960e67ffbc83b45545a3e7ef65828e..8b56d95a33e64b65f89a692eed8948a2bdf4185f 100644 GIT binary patch delta 15 WcmZo*X<(Vq#$u>zV7{@dj1d4NOaz($ delta 15 WcmZo*X<(Vq#$uprY`C$jj1d4NI0Tje diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index e05e86107c2..cf50d26d64d 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -1849,7 +1849,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1858,12 +1858,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "" @@ -1876,7 +1876,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1954,7 +1954,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -1971,7 +1971,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +1986,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2000,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2044,7 +2044,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2056,92 +2056,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2908,7 +2908,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index ded198ef9f77dfadcbf5a0ffdae1aca8e302524a..d6884dd9a04c521a138e9a64ddb6033c3f825648 100644 GIT binary patch delta 11520 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 diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 79d5865e363..95eb6281fd9 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ # Takayuki Shimizukawa , 2013-2016 # Takayuki Shimizukawa , 2016-2017,2019 # Komiya Takeshi , 2016-2017,2019 -# Tetsuo Koyama , 2020 +# Tetsuo Koyama , 2020-2021 # tomo, 2019 # shirou - しろう , 2014 # Yasushi Masuda , 2008 @@ -24,8 +24,8 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" -"Last-Translator: Komiya Takeshi \n" +"PO-Revision-Date: 2021-11-11 12:54+0000\n" +"Last-Translator: Tetsuo Koyama \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -297,7 +297,7 @@ msgstr "primary_domain %r が見つかりません。無視します。" msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." -msgstr "" +msgstr "v2.0以降、Sphinxはデフォルトで \"index \" をroot_docとして使用しています。conf.pyに \"root_doc = 'contents'\" を追加してください。" #: sphinx/events.py:67 #, python-format diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 7b667b8331b4ded00c543a8ce4e9785c5490a34e..a15ea5b2f761363599604ad5f04b91fd0f062689 100644 GIT binary patch delta 17 YcmX?TdeC%(s341>u7UYxNx>DI05o6)8UO$Q delta 17 YcmX?TdeC%(s341huCd`}Nx>DI05nJi761SM diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 4b64730dfa0..dd14165eb70 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -1849,7 +1849,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametere" @@ -1858,12 +1858,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "Returnere" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "Retur type" @@ -1876,7 +1876,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "funksjon" @@ -1954,7 +1954,7 @@ msgid "Throws" msgstr "Kaster" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "klasse" @@ -1971,7 +1971,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" @@ -1986,7 +1986,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2000,20 +2000,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "attributt" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "modul" @@ -2044,7 +2044,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "untak" @@ -2056,92 +2056,92 @@ msgstr "uttrykk" msgid "built-in function" msgstr "innebygde funksjoner" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (foreldet)" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2908,7 +2908,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 211236fd60f1aea10dc81407575eb52115688574..ef4e5de9cbc2d977613d7d7ad529aa00f34fef05 100644 GIT binary patch delta 19 bcmaF)lJVtB#trgLEQY!U=9`tBju`;}SHcI8 delta 19 bcmaF)lJVtB#trgLEC#y9hMSe0ju`;}SE>h% diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index f6338072eb0..62d1fc1974f 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -1853,7 +1853,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" @@ -1862,12 +1862,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "Zwraca" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "Typ zwracany" @@ -1880,7 +1880,7 @@ msgid "variable" msgstr "zmienna" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "funkcja" @@ -1958,7 +1958,7 @@ msgid "Throws" msgstr "Wyrzuca" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "klasa" @@ -1975,7 +1975,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1990,7 +1990,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -2004,20 +2004,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "atrybut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "moduł" @@ -2048,7 +2048,7 @@ msgstr "operator" msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "wyjątek" @@ -2060,92 +2060,92 @@ msgstr "instrukcja" msgid "built-in function" msgstr "funkcja wbudowana" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (niezalecane)" @@ -2706,42 +2706,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2912,7 +2912,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 4527290b2e3e76a65ccf31ba97311a4c45cbd928..be82068f62ce6fed916e016e034db66005e1f799 100644 GIT binary patch delta 15 Wcmeyy{Ec}+8;hZ?f%(R+97X^!1_gQm delta 15 Wcmeyy{Ec}+8;gOivEjz997X^z@&$GP diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 7d51b1e17da..ebfe56de204 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -1849,7 +1849,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1858,12 +1858,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "" @@ -1876,7 +1876,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1954,7 +1954,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -1971,7 +1971,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +1986,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2000,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2044,7 +2044,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2056,92 +2056,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2908,7 +2908,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 4dda3787ea0..50993c9f8a7 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 4.3.0\n" +"Project-Id-Version: Sphinx 4.4.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" +"POT-Creation-Date: 2021-11-14 00:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,76 +71,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,65 +161,65 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called " "sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but " "`{current}` is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,103 +520,103 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1827,22 +1827,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path" @@ -1894,7 +1922,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1972,7 +2000,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1989,7 +2017,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2004,7 +2032,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2018,20 +2046,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2062,7 +2090,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2082,84 +2110,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: " "for one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2381,16 +2409,6 @@ msgid "" "link will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3166,7 +3184,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3291,19 +3309,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index d49fd4d77c5d56e295e306586bec45298c2dfe2a..1fc4b4dd09f44a6c29a97bf7a1e7c77b01694f7d 100644 GIT binary patch delta 17 YcmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -1850,7 +1850,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" @@ -1859,12 +1859,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "Повертає" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "Тип повернення" @@ -1877,7 +1877,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "функція" @@ -1955,7 +1955,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "клас" @@ -1972,7 +1972,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -1987,7 +1987,7 @@ msgstr "%s() (клас)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" @@ -2001,20 +2001,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "модуль" @@ -2045,7 +2045,7 @@ msgstr "оператор" msgid "object" msgstr "об'єкт" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "виняткова ситуація" @@ -2057,92 +2057,92 @@ msgstr "вираз" msgid "built-in function" msgstr "вбудована функція" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr " (застарілий)" @@ -2703,42 +2703,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2909,7 +2909,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 0ff1c4890252b6e3244a1bcdecfab6a609edfc23..ec9dd26036fb15e55c74c5ef68cdb108d4ad1eb4 100644 GIT binary patch delta 17 ZcmX@7cTR7^d|nnqT?6yYi+NXb0suXn1~mWx delta 17 ZcmX@7cTR7^d|nm\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -1850,7 +1850,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Tham số" @@ -1859,12 +1859,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "Trả về" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "Kiểu trả về" @@ -1877,7 +1877,7 @@ msgid "variable" msgstr "biến" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "hàm" @@ -1955,7 +1955,7 @@ msgid "Throws" msgstr "Ném" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "lớp" @@ -1972,7 +1972,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" @@ -1987,7 +1987,7 @@ msgstr "%s() (lớp)" msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" @@ -2001,20 +2001,20 @@ msgstr "Đối số" msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "thuộc tính" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "mô-đun" @@ -2045,7 +2045,7 @@ msgstr "toán tử" msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "ngoại lệ" @@ -2057,92 +2057,92 @@ msgstr "câu lệnh" msgid "built-in function" msgstr "hàm dựng sẵn" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -2703,42 +2703,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2909,7 +2909,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 7e3c4d89dd064c7f9472bac56e042cce5cdda1de..0629892b602fe7b95c7fd53c60edff532eef00ed 100644 GIT binary patch delta 15 Wcmeys{DFBw8;hZ?f%(R+G)4e0QUz!L delta 15 Wcmeys{DFBw8;gOivEjz9G)4e0J_Td| diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 08d17aa0111..e0e1628daf6 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -1849,7 +1849,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1858,12 +1858,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "" @@ -1876,7 +1876,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1954,7 +1954,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -1971,7 +1971,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +1986,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2000,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2044,7 +2044,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2056,92 +2056,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2908,7 +2908,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index b1c3bb9bd3062083baeaf2c6d2aab6bd5c62b738..2505409731f4de07a33e7a87134d8a79926ed393 100644 GIT binary patch delta 15 WcmeBW>1CPF#$u>zV7{@dnGpab(geW( delta 15 WcmeBW>1CPF#$uprY`C$jnGpabz68Ah diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index 6979d3ce1b7..af8971fb5f4 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-31 00:10+0000\n" +"POT-Creation-Date: 2021-11-07 00:10+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -1849,7 +1849,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:416 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1858,12 +1858,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:428 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:430 +#: sphinx/domains/python.py:434 msgid "Return type" msgstr "" @@ -1876,7 +1876,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1164 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 msgid "function" msgstr "" @@ -1954,7 +1954,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1166 +#: sphinx/domains/python.py:1170 msgid "class" msgstr "" @@ -1971,7 +1971,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:803 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +1986,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:888 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2000,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1165 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1171 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1177 msgid "module" msgstr "" @@ -2044,7 +2044,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1167 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 msgid "exception" msgstr "" @@ -2056,92 +2056,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:421 +#: sphinx/domains/python.py:425 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:429 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:648 sphinx/domains/python.py:792 +#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:708 sphinx/domains/python.py:884 -#: sphinx/domains/python.py:935 +#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 +#: sphinx/domains/python.py:939 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:710 +#: sphinx/domains/python.py:714 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:735 +#: sphinx/domains/python.py:739 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:740 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:797 +#: sphinx/domains/python.py:801 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:799 sphinx/domains/python.py:939 +#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:805 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:1097 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1094 +#: sphinx/domains/python.py:1098 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1143 +#: sphinx/domains/python.py:1147 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1173 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1174 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1172 +#: sphinx/domains/python.py:1176 msgid "property" msgstr "" -#: sphinx/domains/python.py:1230 +#: sphinx/domains/python.py:1234 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1350 +#: sphinx/domains/python.py:1354 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1404 +#: sphinx/domains/python.py:1408 msgid " (deprecated)" msgstr "" @@ -2702,42 +2702,42 @@ msgstr "" msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:173 +#: sphinx/ext/intersphinx.py:174 #, python-format msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:204 +#: sphinx/ext/intersphinx.py:205 #, python-format msgid "loading intersphinx inventory from %s..." msgstr "" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:219 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:224 +#: sphinx/ext/intersphinx.py:225 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:334 +#: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:336 +#: sphinx/ext/intersphinx.py:272 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:369 +#: sphinx/ext/intersphinx.py:476 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:382 +#: sphinx/ext/intersphinx.py:489 #, python-format msgid "Failed to read intersphinx_mapping[%s], ignored: %r" msgstr "" @@ -2908,7 +2908,7 @@ msgid "" " Please update your setting." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:78 +#: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" From ad0071ddb767602588dd472d8c4abd56146859df Mon Sep 17 00:00:00 2001 From: Josh Mitchell Date: Tue, 9 Nov 2021 13:14:39 +1100 Subject: [PATCH 023/192] #2021: Allow autosummary to respect __all__ --- doc/usage/extensions/autosummary.rst | 19 +++++++ sphinx/ext/autosummary/__init__.py | 1 + sphinx/ext/autosummary/generate.py | 30 ++++++++++-- .../autosummary_dummy_module.py | 12 +++++ tests/test_ext_autosummary.py | 49 +++++++++++++++---- 5 files changed, 96 insertions(+), 15 deletions(-) diff --git a/doc/usage/extensions/autosummary.rst b/doc/usage/extensions/autosummary.rst index 9533ed109c7..6ce292a980e 100644 --- a/doc/usage/extensions/autosummary.rst +++ b/doc/usage/extensions/autosummary.rst @@ -201,6 +201,25 @@ also use these config values: .. versionadded:: 2.1 + .. versionchanged:: 4.3 + + If ``autosummary_ignore___all__`` is ``False``, this configuration value + is ignored for members listed in ``__all__``. + +.. confval:: autosummary_ignore___all__ + + If ``False`` and a module has the ``__all__`` attribute set, autosummary + documents every member listed in ``__all__`` and no others. Default is + ``True`` + + Note that if an imported member is listed in ``__all__``, it will be + documented regardless of the value of ``autosummary_imported_members``. To + match the behaviour of ``from module import *``, set + ``autosummary_ignore___all__`` to False and ``autosummary_imported_members`` + to True. + + .. versionadded:: 4.3 + .. confval:: autosummary_filename_map A dict mapping object names to filenames. This is necessary to avoid diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 478b5c9f33a..b8691b3dae3 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -826,5 +826,6 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('autosummary_mock_imports', lambda config: config.autodoc_mock_imports, 'env') app.add_config_value('autosummary_imported_members', [], False, [bool]) + app.add_config_value('autosummary_ignore___all__', True, 'env', bool) return {'version': sphinx.__display_version__, 'parallel_read_safe': True} diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index a5c8ce11fde..6bca102e947 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -28,7 +28,7 @@ import warnings from gettext import NullTranslations from os import path -from typing import Any, Dict, List, NamedTuple, Set, Tuple, Type, Union +from typing import Any, Dict, List, NamedTuple, Sequence, Set, Tuple, Type, Union from jinja2 import TemplateNotFound from jinja2.sandbox import SandboxedEnvironment @@ -46,7 +46,7 @@ from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.registry import SphinxComponentRegistry from sphinx.util import logging, rst, split_full_qualified_name -from sphinx.util.inspect import safe_getattr +from sphinx.util.inspect import getall, safe_getattr from sphinx.util.osutil import ensuredir from sphinx.util.template import SphinxTemplateLoader @@ -68,6 +68,7 @@ def __init__(self, translator: NullTranslations) -> None: self.config.add('autosummary_context', {}, True, None) self.config.add('autosummary_filename_map', {}, True, None) + self.config.add('autosummary_ignore___all__', True, 'env', bool) self.config.init_values() def emit_firstresult(self, *args: Any) -> None: @@ -192,7 +193,7 @@ def is_skipped(self, name: str, value: Any, objtype: str) -> bool: def scan(self, imported_members: bool) -> List[str]: members = [] - for name in dir(self.object): + for name in members_of(self.app.config, self.object): try: value = safe_getattr(self.object, name) except AttributeError: @@ -216,11 +217,25 @@ def scan(self, imported_members: bool) -> List[str]: # list all members up members.append(name) elif imported is False: - # list not-imported members up + # list not-imported members + members.append(name) + elif '__all__' in dir(self.object) and not self.app.config.autosummary_ignore___all__: + # list members that have __all__ set members.append(name) return members +def members_of(conf: Config, obj: Any) -> Sequence[str]: + """Get the members of ``obj``, possibly ignoring the ``__all__`` module attribute + + Follows the ``conf.autosummary_ignore___all__`` setting.""" + + if conf.autosummary_ignore___all__: + return dir(obj) + else: + return getall(obj) or dir(obj) + + def generate_autosummary_content(name: str, obj: Any, parent: Any, template: AutosummaryRenderer, template_name: str, @@ -245,7 +260,7 @@ def get_class_members(obj: Any) -> Dict[str, Any]: def get_module_members(obj: Any) -> Dict[str, Any]: members = {} - for name in dir(obj): + for name in members_of(app.config, obj): try: members[name] = safe_getattr(obj, name) except AttributeError: @@ -630,6 +645,10 @@ def get_parser() -> argparse.ArgumentParser: dest='imported_members', default=False, help=__('document imported members (default: ' '%(default)s)')) + parser.add_argument('-a', '--respect-__all__', action='store_false', + dest='ignore___all__', default=True, + help=__('document exactly the members in module __all__ attribute. ' + '(default: %(default)s)')) return parser @@ -646,6 +665,7 @@ def main(argv: List[str] = sys.argv[1:]) -> None: if args.templates: app.config.templates_path.append(path.abspath(args.templates)) + app.config.autosummary_ignore___all__ = args.ignore___all__ generate_autosummary_docs(args.source_file, args.output_dir, '.' + args.suffix, diff --git a/tests/roots/test-ext-autosummary/autosummary_dummy_module.py b/tests/roots/test-ext-autosummary/autosummary_dummy_module.py index ca347545989..38e96199008 100644 --- a/tests/roots/test-ext-autosummary/autosummary_dummy_module.py +++ b/tests/roots/test-ext-autosummary/autosummary_dummy_module.py @@ -1,6 +1,16 @@ from os import path # NOQA from typing import Union +__all__ = [ + "CONSTANT1", + "Exc", + "Foo", + "_Baz", + "bar", + "qux", + "path", +] + #: module variable CONSTANT1 = None CONSTANT2 = None @@ -48,3 +58,5 @@ class _Exc(Exception): #: a module-level attribute qux = 2 +#: a module-level attribute that has been excluded from __all__ +quuz = 2 diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index cb595e4546c..6f8cf853b9c 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -216,14 +216,42 @@ def test_autosummary_generate_content_for_module(app): context = template.render.call_args[0][1] assert context['members'] == ['CONSTANT1', 'CONSTANT2', 'Exc', 'Foo', '_Baz', '_Exc', - '__builtins__', '__cached__', '__doc__', '__file__', - '__name__', '__package__', '_quux', 'bar', 'qux'] + '__all__', '__builtins__', '__cached__', '__doc__', + '__file__', '__name__', '__package__', '_quux', 'bar', + 'quuz', 'qux'] assert context['functions'] == ['bar'] assert context['all_functions'] == ['_quux', 'bar'] assert context['classes'] == ['Foo'] assert context['all_classes'] == ['Foo', '_Baz'] assert context['exceptions'] == ['Exc'] assert context['all_exceptions'] == ['Exc', '_Exc'] + assert context['attributes'] == ['CONSTANT1', 'qux', 'quuz'] + assert context['all_attributes'] == ['CONSTANT1', 'qux', 'quuz'] + assert context['fullname'] == 'autosummary_dummy_module' + assert context['module'] == 'autosummary_dummy_module' + assert context['objname'] == '' + assert context['name'] == '' + assert context['objtype'] == 'module' + + +@pytest.mark.sphinx(testroot='ext-autosummary') +def test_autosummary_generate_content_for_module___all__(app): + import autosummary_dummy_module + template = Mock() + app.config.autosummary_ignore___all__ = False + + generate_autosummary_content('autosummary_dummy_module', autosummary_dummy_module, None, + template, None, False, app, False, {}) + assert template.render.call_args[0][0] == 'module' + + context = template.render.call_args[0][1] + assert context['members'] == ['CONSTANT1', 'Exc', 'Foo', '_Baz', 'bar', 'qux', 'path'] + assert context['functions'] == ['bar'] + assert context['all_functions'] == ['bar'] + assert context['classes'] == ['Foo'] + assert context['all_classes'] == ['Foo', '_Baz'] + assert context['exceptions'] == ['Exc'] + assert context['all_exceptions'] == ['Exc'] assert context['attributes'] == ['CONSTANT1', 'qux'] assert context['all_attributes'] == ['CONSTANT1', 'qux'] assert context['fullname'] == 'autosummary_dummy_module' @@ -232,7 +260,6 @@ def test_autosummary_generate_content_for_module(app): assert context['name'] == '' assert context['objtype'] == 'module' - @pytest.mark.sphinx(testroot='ext-autosummary') def test_autosummary_generate_content_for_module_skipped(app): import autosummary_dummy_module @@ -246,9 +273,9 @@ def skip_member(app, what, name, obj, skip, options): generate_autosummary_content('autosummary_dummy_module', autosummary_dummy_module, None, template, None, False, app, False, {}) context = template.render.call_args[0][1] - assert context['members'] == ['CONSTANT1', 'CONSTANT2', '_Baz', '_Exc', '__builtins__', - '__cached__', '__doc__', '__file__', '__name__', - '__package__', '_quux', 'qux'] + assert context['members'] == ['CONSTANT1', 'CONSTANT2', '_Baz', '_Exc', '__all__', + '__builtins__', '__cached__', '__doc__', '__file__', + '__name__', '__package__', '_quux', 'quuz', 'qux'] assert context['functions'] == [] assert context['classes'] == [] assert context['exceptions'] == [] @@ -265,17 +292,17 @@ def test_autosummary_generate_content_for_module_imported_members(app): context = template.render.call_args[0][1] assert context['members'] == ['CONSTANT1', 'CONSTANT2', 'Exc', 'Foo', 'Union', '_Baz', - '_Exc', '__builtins__', '__cached__', '__doc__', + '_Exc', '__all__', '__builtins__', '__cached__', '__doc__', '__file__', '__loader__', '__name__', '__package__', - '__spec__', '_quux', 'bar', 'path', 'qux'] + '__spec__', '_quux', 'bar', 'path', 'quuz', 'qux'] assert context['functions'] == ['bar'] assert context['all_functions'] == ['_quux', 'bar'] assert context['classes'] == ['Foo'] assert context['all_classes'] == ['Foo', '_Baz'] assert context['exceptions'] == ['Exc'] assert context['all_exceptions'] == ['Exc', '_Exc'] - assert context['attributes'] == ['CONSTANT1', 'qux'] - assert context['all_attributes'] == ['CONSTANT1', 'qux'] + assert context['attributes'] == ['CONSTANT1', 'qux', 'quuz'] + assert context['all_attributes'] == ['CONSTANT1', 'qux', 'quuz'] assert context['fullname'] == 'autosummary_dummy_module' assert context['module'] == 'autosummary_dummy_module' assert context['objname'] == '' @@ -313,6 +340,7 @@ def test_autosummary_generate(app, status, warning): assert doctree[3][0][0][2][5].astext() == 'autosummary_dummy_module.qux\n\na module-level attribute' module = (app.srcdir / 'generated' / 'autosummary_dummy_module.rst').read_text() + print(module) assert (' .. autosummary::\n' ' \n' ' Foo\n' @@ -321,6 +349,7 @@ def test_autosummary_generate(app, status, warning): ' \n' ' CONSTANT1\n' ' qux\n' + ' quuz\n' ' \n' in module) Foo = (app.srcdir / 'generated' / 'autosummary_dummy_module.Foo.rst').read_text() From f3d09559dd6a12610f50a0d6f9b1d103f810598c Mon Sep 17 00:00:00 2001 From: Josh Mitchell Date: Tue, 9 Nov 2021 18:22:45 +1100 Subject: [PATCH 024/192] Update changelog --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index b35f126d788..8faa9ce9738 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,7 @@ Features added * #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___all__` is set to ``False``. The default behaviour is unchanged. Bugs fixed ---------- From 79089b5fa43e1bc3156cf4cc11b06e956bb9fa07 Mon Sep 17 00:00:00 2001 From: Josh Mitchell Date: Wed, 10 Nov 2021 14:24:47 +1100 Subject: [PATCH 025/192] Corrections from review by tk0miya --- CHANGES | 5 ++++- doc/man/sphinx-autogen.rst | 4 ++++ doc/usage/extensions/autosummary.rst | 14 +++++++------- sphinx/ext/autosummary/generate.py | 2 +- tests/test_ext_autosummary.py | 2 +- 5 files changed, 17 insertions(+), 10 deletions(-) diff --git a/CHANGES b/CHANGES index 8faa9ce9738..9af83621279 100644 --- a/CHANGES +++ b/CHANGES @@ -15,7 +15,10 @@ Features added * #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___all__` is set to ``False``. The default behaviour is unchanged. +* #9831: Autosummary now documents only the members specified in a module's + ``__all__`` attribute if :confval:`autosummary_ignore___all__` is set to + ``False``. The default behaviour is unchanged. Autogen also now supports + this behavior with the ``--respect-module-all`` switch. Bugs fixed ---------- diff --git a/doc/man/sphinx-autogen.rst b/doc/man/sphinx-autogen.rst index 18ae8d1e9d6..4c8f0f20782 100644 --- a/doc/man/sphinx-autogen.rst +++ b/doc/man/sphinx-autogen.rst @@ -39,6 +39,10 @@ Options Document imported members. +.. option:: -a, --respect-module-all + + Document exactly the members in a module's ``__all__`` attribute. + Example ------- diff --git a/doc/usage/extensions/autosummary.rst b/doc/usage/extensions/autosummary.rst index 6ce292a980e..ac7bbd68f7b 100644 --- a/doc/usage/extensions/autosummary.rst +++ b/doc/usage/extensions/autosummary.rst @@ -201,12 +201,12 @@ also use these config values: .. versionadded:: 2.1 - .. versionchanged:: 4.3 + .. versionchanged:: 4.4 - If ``autosummary_ignore___all__`` is ``False``, this configuration value - is ignored for members listed in ``__all__``. + If ``autosummary_ignore_module_all`` is ``False``, this configuration + value is ignored for members listed in ``__all__``. -.. confval:: autosummary_ignore___all__ +.. confval:: autosummary_ignore_module_all If ``False`` and a module has the ``__all__`` attribute set, autosummary documents every member listed in ``__all__`` and no others. Default is @@ -215,10 +215,10 @@ also use these config values: Note that if an imported member is listed in ``__all__``, it will be documented regardless of the value of ``autosummary_imported_members``. To match the behaviour of ``from module import *``, set - ``autosummary_ignore___all__`` to False and ``autosummary_imported_members`` - to True. + ``autosummary_ignore_module_all`` to False and + ``autosummary_imported_members`` to True. - .. versionadded:: 4.3 + .. versionadded:: 4.4 .. confval:: autosummary_filename_map diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 6bca102e947..05363f3c71b 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -645,7 +645,7 @@ def get_parser() -> argparse.ArgumentParser: dest='imported_members', default=False, help=__('document imported members (default: ' '%(default)s)')) - parser.add_argument('-a', '--respect-__all__', action='store_false', + parser.add_argument('-a', '--respect-module-all', action='store_false', dest='ignore___all__', default=True, help=__('document exactly the members in module __all__ attribute. ' '(default: %(default)s)')) diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index 6f8cf853b9c..dd9b8c51930 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -340,7 +340,7 @@ def test_autosummary_generate(app, status, warning): assert doctree[3][0][0][2][5].astext() == 'autosummary_dummy_module.qux\n\na module-level attribute' module = (app.srcdir / 'generated' / 'autosummary_dummy_module.rst').read_text() - print(module) + assert (' .. autosummary::\n' ' \n' ' Foo\n' From 8e45229feed31786f90057dd97ff25f793841855 Mon Sep 17 00:00:00 2001 From: Josh Mitchell Date: Mon, 15 Nov 2021 13:27:26 +1100 Subject: [PATCH 026/192] Fixed missed ignore___all__ -> ignore_module_all --- CHANGES | 2 +- sphinx/ext/autosummary/__init__.py | 2 +- sphinx/ext/autosummary/generate.py | 14 +++++++------- tests/test_ext_autosummary.py | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/CHANGES b/CHANGES index 9af83621279..a5725b0d518 100644 --- a/CHANGES +++ b/CHANGES @@ -16,7 +16,7 @@ Features added * #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___all__` is set to + ``__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. diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index b8691b3dae3..298c9013802 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -826,6 +826,6 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('autosummary_mock_imports', lambda config: config.autodoc_mock_imports, 'env') app.add_config_value('autosummary_imported_members', [], False, [bool]) - app.add_config_value('autosummary_ignore___all__', True, 'env', bool) + app.add_config_value('autosummary_ignore_module_all', True, 'env', bool) return {'version': sphinx.__display_version__, 'parallel_read_safe': True} diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 05363f3c71b..dd712d80281 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -68,7 +68,7 @@ def __init__(self, translator: NullTranslations) -> None: self.config.add('autosummary_context', {}, True, None) self.config.add('autosummary_filename_map', {}, True, None) - self.config.add('autosummary_ignore___all__', True, 'env', bool) + self.config.add('autosummary_ignore_module_all', True, 'env', bool) self.config.init_values() def emit_firstresult(self, *args: Any) -> None: @@ -219,7 +219,7 @@ def scan(self, imported_members: bool) -> List[str]: elif imported is False: # list not-imported members members.append(name) - elif '__all__' in dir(self.object) and not self.app.config.autosummary_ignore___all__: + elif '__all__' in dir(self.object) and not self.app.config.autosummary_ignore_module_all: # list members that have __all__ set members.append(name) @@ -228,9 +228,9 @@ def scan(self, imported_members: bool) -> List[str]: def members_of(conf: Config, obj: Any) -> Sequence[str]: """Get the members of ``obj``, possibly ignoring the ``__all__`` module attribute - Follows the ``conf.autosummary_ignore___all__`` setting.""" + Follows the ``conf.autosummary_ignore_module_all`` setting.""" - if conf.autosummary_ignore___all__: + if conf.autosummary_ignore_module_all: return dir(obj) else: return getall(obj) or dir(obj) @@ -645,8 +645,8 @@ def get_parser() -> argparse.ArgumentParser: dest='imported_members', default=False, help=__('document imported members (default: ' '%(default)s)')) - parser.add_argument('-a', '--respect-module-all', action='store_false', - dest='ignore___all__', default=True, + parser.add_argument('-a', '--respect-module-all', action='store_true', + dest='respect_module_all', default=False, help=__('document exactly the members in module __all__ attribute. ' '(default: %(default)s)')) @@ -665,7 +665,7 @@ def main(argv: List[str] = sys.argv[1:]) -> None: if args.templates: app.config.templates_path.append(path.abspath(args.templates)) - app.config.autosummary_ignore___all__ = args.ignore___all__ + app.config.autosummary_ignore_module_all = not args.respect_module_all generate_autosummary_docs(args.source_file, args.output_dir, '.' + args.suffix, diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index dd9b8c51930..0c35b9e3eea 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -238,7 +238,7 @@ def test_autosummary_generate_content_for_module(app): def test_autosummary_generate_content_for_module___all__(app): import autosummary_dummy_module template = Mock() - app.config.autosummary_ignore___all__ = False + app.config.autosummary_ignore_module_all = False generate_autosummary_content('autosummary_dummy_module', autosummary_dummy_module, None, template, None, False, app, False, {}) From 34c165e497e80ea563ac0619c602ad6ab8bd4742 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 15 Nov 2021 12:46:03 +0100 Subject: [PATCH 027/192] Add clarification on other languages --- doc/tutorial/describing-code.rst | 49 ++++++++++++++++++++++++++++++-- 1 file changed, 46 insertions(+), 3 deletions(-) diff --git a/doc/tutorial/describing-code.rst b/doc/tutorial/describing-code.rst index bfeca0455bc..f080b095c71 100644 --- a/doc/tutorial/describing-code.rst +++ b/doc/tutorial/describing-code.rst @@ -14,8 +14,11 @@ section apply for the other domains as well. .. _tutorial-describing-objects: +Python +------ + Documenting Python objects --------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~ Sphinx offers several roles and directives to document Python objects, all grouped together in :ref:`the Python domain `. For example, @@ -68,7 +71,7 @@ Notice several things: ``.. function::`` directly. Cross-referencing Python objects --------------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ By default, most of these directives generate entities that can be cross-referenced from any part of the documentation by using @@ -123,7 +126,7 @@ And finally, this is how the result would look: Beautiful, isn't it? Including doctests in your documentation ----------------------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Since you are now describing code from a Python library, it will become useful to keep both the documentation and the code as synchronized as possible. @@ -229,3 +232,43 @@ And finally, ``make test`` reports success! For big projects though, this manual approach can become a bit tedious. In the next section, you will see :doc:`how to automate the process `. + +Other languages (C, C++, others) +-------------------------------- + +Documenting and cross-referencing objects +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Sphinx also supports documenting and cross-referencing objects written in +other programming languages. There are four extra built-in domains: +C, C++, JavaScript, and reStructuredText, and third party extensions may +define domains for more languages, such as +`.NET `, +`Fortran `_, +or `Julia `_. + +For example, to document a C++ type definition, you would use the built-in +:rst:dir:`cpp:type` directive, as follows: + +.. code-block:: rst + + .. cpp:type:: std::vector CustomList + + A typedef-like declaration of a type. + +Which would give the following result: + +.. cpp:type:: std::vector CustomList + + A typedef-like declaration of a type. + +All such directives then generate generate references that can be +cross-referenced by using the corresponding role. For example, to reference +the previous type definition, you can use the :rst:role:`cpp:type` role +as follows: + +.. code-block:: rst + + Cross reference to :cpp:type:`CustomList`. + +Which would produce a hyperlink to the previous definition: :cpp:type:`CustomList`. From d7d82a88ad2cf84b76b8e3256c9dfd59369b6de0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 15 Nov 2021 14:29:17 +0100 Subject: [PATCH 028/192] Typo Co-authored-by: Manuel Kaufmann --- doc/tutorial/describing-code.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/describing-code.rst b/doc/tutorial/describing-code.rst index f080b095c71..88e1f870214 100644 --- a/doc/tutorial/describing-code.rst +++ b/doc/tutorial/describing-code.rst @@ -262,7 +262,7 @@ Which would give the following result: A typedef-like declaration of a type. -All such directives then generate generate references that can be +All such directives then generate references that can be cross-referenced by using the corresponding role. For example, to reference the previous type definition, you can use the :rst:role:`cpp:type` role as follows: From eceb6b8f4b26e20246662ce916dc4143376b664d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 15 Nov 2021 14:30:07 +0100 Subject: [PATCH 029/192] Remove reference to unmaintained extension --- doc/tutorial/describing-code.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/doc/tutorial/describing-code.rst b/doc/tutorial/describing-code.rst index 88e1f870214..bf8ab1c1f64 100644 --- a/doc/tutorial/describing-code.rst +++ b/doc/tutorial/describing-code.rst @@ -243,8 +243,7 @@ Sphinx also supports documenting and cross-referencing objects written in other programming languages. There are four extra built-in domains: C, C++, JavaScript, and reStructuredText, and third party extensions may define domains for more languages, such as -`.NET `, -`Fortran `_, +`Fortran `_ or `Julia `_. For example, to document a C++ type definition, you would use the built-in From 2ed4bed33a9233cd049ddae8680240a966dc154d Mon Sep 17 00:00:00 2001 From: Matt Ficke Date: Tue, 16 Nov 2021 10:52:02 -0500 Subject: [PATCH 030/192] Update RFC base url The tools.ietf.org subdomain is being wound down and services are moving to datatracker.ietf.org. Links to RFC documents using the old subdomain are being redirected to datatracker; this updates the configured `rfc_base_url` to point to the current subdomain. Discussion: https://mailarchive.ietf.org/arch/msg/ietf/0n-6EXEmkTp3Uv_vj-5Vnm3o0bo/ --- doc/usage/configuration.rst | 4 ++-- sphinx/environment/__init__.py | 2 +- tests/test_build_html.py | 4 ++-- tests/test_markup.py | 10 +++++----- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index 551ef5dbda6..cd6fa06a1bc 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -1005,7 +1005,7 @@ that use Sphinx's HTMLWriter class. to indicate the location of document using `The Canonical Link Relation`_. Default: ``''``. - .. _The Canonical Link Relation: https://tools.ietf.org/html/rfc6596 + .. _The Canonical Link Relation: https://datatracker.ietf.org/doc/html/rfc6596 .. versionadded:: 1.8 @@ -2679,7 +2679,7 @@ Options for the linkcheck builder doubling the wait time between attempts until it succeeds or exceeds the ``linkcheck_rate_limit_timeout``. By default, the timeout is 5 minutes. - .. _Retry-After: https://tools.ietf.org/html/rfc7231#section-7.1.3 + .. _Retry-After: https://datatracker.ietf.org/doc/html/rfc7231#section-7.1.3 .. versionadded:: 3.4 diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index dc494add122..478db40e672 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -51,7 +51,7 @@ 'cloak_email_addresses': True, 'pep_base_url': 'https://www.python.org/dev/peps/', 'pep_references': None, - 'rfc_base_url': 'https://tools.ietf.org/html/', + 'rfc_base_url': 'https://datatracker.ietf.org/doc/html/', 'rfc_references': None, 'input_encoding': 'utf-8-sig', 'doctitle_xform': False, diff --git a/tests/test_build_html.py b/tests/test_build_html.py index 106ad047009..a1d4717e77d 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -225,9 +225,9 @@ def test_html4_output(app, status, warning): (".//a[@href='https://www.python.org/dev/peps/pep-0008']" "[@class='pep reference external']/strong", 'Python Enhancement Proposal #8'), - (".//a[@href='https://tools.ietf.org/html/rfc1.html']" + (".//a[@href='https://datatracker.ietf.org/doc/html/rfc1.html']" "[@class='rfc reference external']/strong", 'RFC 1'), - (".//a[@href='https://tools.ietf.org/html/rfc1.html']" + (".//a[@href='https://datatracker.ietf.org/doc/html/rfc1.html']" "[@class='rfc reference external']/strong", 'Request for Comments #1'), (".//a[@href='objects.html#envvar-HOME']" "[@class='reference internal']/code/span[@class='pre']", 'HOME'), diff --git a/tests/test_markup.py b/tests/test_markup.py index f8fff1c2d03..b3960bc5ebd 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -36,7 +36,7 @@ def settings(app): settings.env = app.builder.env settings.env.temp_data['docname'] = 'dummy' settings.contentsname = 'dummy' - settings.rfc_base_url = 'http://tools.ietf.org/html/' + settings.rfc_base_url = 'http://datatracker.ietf.org/doc/html/' domain_context = sphinx_domains(settings.env) domain_context.enable() yield settings @@ -181,10 +181,10 @@ def get(name): 'verify', ':rfc:`2324`', ('

RFC 2324

'), + 'href="http://datatracker.ietf.org/doc/html/rfc2324.html">RFC 2324

'), ('\\sphinxAtStartPar\n' '\\index{RFC@\\spxentry{RFC}!RFC 2324@\\spxentry{RFC 2324}}' - '\\sphinxhref{http://tools.ietf.org/html/rfc2324.html}' + '\\sphinxhref{http://datatracker.ietf.org/doc/html/rfc2324.html}' '{\\sphinxstylestrong{RFC 2324}}') ), ( @@ -192,11 +192,11 @@ def get(name): 'verify', ':rfc:`2324#id1`', ('

' + 'href="http://datatracker.ietf.org/doc/html/rfc2324.html#id1">' 'RFC 2324#id1

'), ('\\sphinxAtStartPar\n' '\\index{RFC@\\spxentry{RFC}!RFC 2324\\#id1@\\spxentry{RFC 2324\\#id1}}' - '\\sphinxhref{http://tools.ietf.org/html/rfc2324.html\\#id1}' + '\\sphinxhref{http://datatracker.ietf.org/doc/html/rfc2324.html\\#id1}' '{\\sphinxstylestrong{RFC 2324\\#id1}}') ), ( From b1381742a14cad1a0f35d8325fb15b07353a5f49 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade Date: Tue, 16 Nov 2021 18:28:50 +0200 Subject: [PATCH 031/192] "v*.*.*" is the tag format Co-authored-by: Takeshi KOMIYA --- .github/workflows/create-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 8cc7219c58e..cd86ec2fd2a 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -3,7 +3,7 @@ name: Create release on: push: tags: - - '*' + - "v*.*.*" jobs: create-release: From 6e64c4b498c40f463b44bf33ee052b6191c3fe40 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 17 Nov 2021 02:08:36 +0900 Subject: [PATCH 032/192] Update CHANGES for PR #9857 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 6c9e7d10000..9fb06ea34d5 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,8 @@ Features added Bugs fixed ---------- +* #9857: Generated RFC links use outdated base url + Testing -------- From 303a37735e564a3f0bdba15d72727445e0f7cf5f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 18 Nov 2021 00:39:54 +0900 Subject: [PATCH 033/192] Bump to 1.8.6 final --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index c288936a8e9..bee41e601f2 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 1.8.6 (in development) -============================== +Release 1.8.6 (released Nov 18, 2021) +===================================== Dependencies ------------ From 66650edd2ad6c7d3aed7db340d1934fdd4fa3a69 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 18 Nov 2021 00:43:39 +0900 Subject: [PATCH 034/192] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 7021b731fff..10a02767d64 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 2.4.5 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 2.4.4 (released Mar 05, 2020) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 8363edd2abd..01484ba4087 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,8 +32,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '2.4.4' -__released__ = '2.4.4' # used when Sphinx builds its own docs +__version__ = '2.4.5' +__released__ = '2.4.5' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -43,7 +43,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (2, 4, 4, 'final', 0) +version_info = (2, 4, 5, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From 3bbc0fa633bda09729a2ab58eeafbb0f90686fa4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 18 Nov 2021 00:45:12 +0900 Subject: [PATCH 035/192] Close #9807: Restrict docutils to 0.17.x or older --- CHANGES | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 10a02767d64..5301b5eb835 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,8 @@ Release 2.4.5 (in development) Dependencies ------------ +* #9807: Restrict docutils to 0.17.x or older + Incompatible changes -------------------- diff --git a/setup.py b/setup.py index 55578350f76..65e3b38e170 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ 'sphinxcontrib-qthelp', 'Jinja2>=2.3', 'Pygments>=2.0', - 'docutils>=0.12', + 'docutils>=0.12,<0.18', 'snowballstemmer>=1.1', 'babel>=1.3,!=2.0', 'alabaster>=0.7,<0.8', From 5eb5d073e8418d1b2e43b4ad39d5fbe02603eae4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 18 Nov 2021 00:45:40 +0900 Subject: [PATCH 036/192] Bump to 2.4.5 final --- CHANGES | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/CHANGES b/CHANGES index 5301b5eb835..39183cac91d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,26 +1,11 @@ -Release 2.4.5 (in development) -============================== +Release 2.4.5 (released Nov 18, 2021) +===================================== Dependencies ------------ * #9807: Restrict docutils to 0.17.x or older -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -Testing --------- - Release 2.4.4 (released Mar 05, 2020) ===================================== From ad36d86d2ccafd5a29cbcd9734fcdb31cc8d6595 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 15 Nov 2021 23:31:27 +0100 Subject: [PATCH 037/192] Add descriptive section to deployment section of tutorial --- doc/tutorial/deploying.rst | 57 ++++++++++++++++++++++++++++++++++++++ doc/tutorial/index.rst | 1 + 2 files changed, 58 insertions(+) create mode 100644 doc/tutorial/deploying.rst diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst new file mode 100644 index 00000000000..5d7227f7bf1 --- /dev/null +++ b/doc/tutorial/deploying.rst @@ -0,0 +1,57 @@ +Deploying a Sphinx project online +================================= + +When you are ready to show your documentation project to the world, there are +many options available to do so. Since the HTML generated by Sphinx is static, +you can decouple the process of building your HTML documentation from hosting +such files in the platform of your choice. You will not need a sophisticated +server running Python: virtually every web hosting service will suffice. + +Therefore, the challenge is less how or where to serve the static HTML, but +rather how to pick a workflow that automatically updates the deployed +documentation every time there is a change in the source files. + +Sphinx-friendly deployment options +---------------------------------- + +There are several possible options you have to host your Sphinx documentation. +Some of them are: + +**Read the Docs** + `Read the Docs`_ is an online service specialized in hosting technical + documentation written in Sphinx, as well as MkDocs. They have a + number of extra features, such as versioned documentation, traffic and + search analytics, custom domains, user-defined redirects, and more. + +**GitHub Pages** + `GitHub Pages`_ is a simple static web hosting tightly integrated with + `GitHub`_: static HTML is served from one of the branches of a project, + and usually sources are stored in another branch so that the output + can be updated every time the sources change (for example using `GitHub + Actions`_). It is free to use and supports custom domains. + +**GitLab Pages** + `GitLab Pages`_ is a similar concept to GitHub Pages, integrated with + `GitLab`_ and usually automated with `GitLab CI`_ instead. + +**Netlify** + `Netlify`_ is a sophisticated hosting for static sites enhanced by + client-side web technologies like JavaScript (so-called `"Jamstack"`_). + They offer support for headless content management systems and + serverless computing. + +**Your own server** + You can always use your own web server to host Sphinx HTML documentation. + It is the option that gives more flexibility, but also more complexity. + +All these options have zero cost, with the option of paying for extra features. + +.. _Read the Docs: https://readthedocs.org/ +.. _GitHub Pages: https://pages.github.com/ +.. _GitHub: https://github.com/ +.. _GitHub Actions: https://github.com/features/actions +.. _GitLab Pages: https://about.gitlab.com/stages-devops-lifecycle/pages/ +.. _GitLab: https://gitlab.com/ +.. _GitLab CI: https://about.gitlab.com/stages-devops-lifecycle/continuous-integration/ +.. _Netlify: https://www.netlify.com/ +.. _"Jamstack": https://jamstack.org/ diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 6a5e7de5f07..1d12aff838a 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -35,4 +35,5 @@ project. narrative-documentation describing-code automatic-doc-generation + deploying end From f16f4a249ba863f47d9b5e833fa7166897ce8c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 17 Nov 2021 21:37:01 +0100 Subject: [PATCH 038/192] Finish background section on deployment --- doc/tutorial/deploying.rst | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index 5d7227f7bf1..69476d7d978 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -55,3 +55,27 @@ All these options have zero cost, with the option of paying for extra features. .. _GitLab CI: https://about.gitlab.com/stages-devops-lifecycle/continuous-integration/ .. _Netlify: https://www.netlify.com/ .. _"Jamstack": https://jamstack.org/ + +Embracing the "Docs as Code" philosophy +--------------------------------------- + +The free offerings of most of the options listed above require your +documentation sources to be publicly available. Moreover, these services +expect you to use a `Version Control System`_, a technology that tracks the +evolution of a collection of files as a series of snapshots ("commits"). +The practice of writing documentation in plain text files with the same tools +as the ones used for software development is commonly known as `"Docs as Code"`_. + +The most popular Version Control System nowadays is Git_, a free and open +source tool that is the backbone of services like GitHub and GitLab. +Since both Read the Docs and Netlify have integrations with GitHub and GitLab, +and both GitHub and GitLab have an integrated Pages product, the most effective +way of automatically build your documentation online is to upload your sources +to either of these Git hosting services. + +The rest of this section will focus on GitHub, which is the most popular Git +hosting service nowadays. It is very similar to GitLab. + +.. _Version Control System: https://en.wikipedia.org/wiki/Version_control +.. _"Docs as Code": https://www.writethedocs.org/guide/docs-as-code/ +.. _Git: https://git-scm.com/ From 7045505eaf1e1ecb985cc1d965280a06c01430cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 18 Nov 2021 10:19:14 +0100 Subject: [PATCH 039/192] Change focus to be broader and more descriptive --- doc/tutorial/deploying.rst | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index 69476d7d978..314bd3e2423 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -1,5 +1,5 @@ -Deploying a Sphinx project online -================================= +Appendix: Deploying a Sphinx project online +=========================================== When you are ready to show your documentation project to the world, there are many options available to do so. Since the HTML generated by Sphinx is static, @@ -73,9 +73,6 @@ and both GitHub and GitLab have an integrated Pages product, the most effective way of automatically build your documentation online is to upload your sources to either of these Git hosting services. -The rest of this section will focus on GitHub, which is the most popular Git -hosting service nowadays. It is very similar to GitLab. - .. _Version Control System: https://en.wikipedia.org/wiki/Version_control .. _"Docs as Code": https://www.writethedocs.org/guide/docs-as-code/ .. _Git: https://git-scm.com/ From 142c5cf853b82d3d00836e0786f4ed3b976f95d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 18 Nov 2021 10:19:38 +0100 Subject: [PATCH 040/192] Write how to publish documentation sources --- doc/tutorial/deploying.rst | 76 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index 314bd3e2423..dd3a669896b 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -11,6 +11,10 @@ Therefore, the challenge is less how or where to serve the static HTML, but rather how to pick a workflow that automatically updates the deployed documentation every time there is a change in the source files. +The following sections describe some of the available options to deploy +your online documentation, and give some background information. If you want +to go directly to the practical part, you can skip to :ref:`publishing-sources`. + Sphinx-friendly deployment options ---------------------------------- @@ -76,3 +80,75 @@ to either of these Git hosting services. .. _Version Control System: https://en.wikipedia.org/wiki/Version_control .. _"Docs as Code": https://www.writethedocs.org/guide/docs-as-code/ .. _Git: https://git-scm.com/ + +.. _publishing-sources: + +Publishing your documentation sources +------------------------------------- + +GitHub +~~~~~~ + +The quickest way to upload an existing project to GitHub is to: + +1. `Sign up for a GitHub account `_. +2. `Create a new repository `_. +3. Open `the "Upload files" page`_ of your new repository. +4. Select the files on your operating system file browser (in your case + ``README.rst``, ``lumache.py``, the makefiles under the ``docs`` directory, + and everything under ``docs/source``) and drag them to the GitHub interface + to upload them all. +5. Click on the :guilabel:`Commit changes` button. + +.. _the "Upload files" page: https://docs.github.com/en/repositories/working-with-files/managing-files/adding-a-file-to-a-repository + +.. note:: + + Make sure you don't upload the ``docs/build`` directory, as it contains the + output generated by Sphinx and it will change every time you change the + sources, complicating your workflow. + +These steps do not require access to the command line or installing any +additional software. To learn more, you can: + +- Follow `this interactive GitHub course`_ to learn more about how the GitHub + interface works. +- Read `this quickstart tutorial`_ to install extra software on your machine + and have more flexibility. You can either use the Git command line, or the + GitHub Desktop application. + +.. _this interactive GitHub course: https://lab.github.com/githubtraining/introduction-to-github +.. _this quickstart tutorial: https://docs.github.com/en/get-started/quickstart + +GitLab +~~~~~~ + +Similarly to GitHub, the fastest way to upload your project to GitLab is +using the web interface: + +1. `Sign up for a GitLab account `_. +2. `Create a new blank project `_. +3. Upload the project files (in your case ``README.rst``, ``lumache.py``, the + makefiles under the ``docs`` directory, and everything under + ``docs/source``) one by one using the :guilabel:`Upload File` button [#f1]_. + +Again, these steps do not require additional software on your computer. To +learn more, you can: + +- Follow `this tutorial`_ to install Git on your machine. +- Browse the `GitLab User documentation`_ to understand the possibilities of + the platform. + +.. _this tutorial: https://docs.gitlab.com/ee/gitlab-basics/start-using-git.html +.. _GitLab User documentation: https://docs.gitlab.com/ee/user/index.html + +.. note:: + + Make sure you don't upload the ``docs/build`` directory, as it contains the + output generated by Sphinx and it will change every time you change the + sources, complicating your workflow. + +.. [#f1] At the time of writing, `uploading whole directories to GitLab using + only the web + interface `_ is + not yet implemented. From 1d1b2296c5bd2faae9d291d838cbde38f8517148 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 18 Nov 2021 15:58:53 +0100 Subject: [PATCH 041/192] Describe deployment on Read the Docs and GitHub Pages --- doc/conf.py | 1 + doc/tutorial/deploying.rst | 73 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index 220774b7f6b..893761cde19 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -109,6 +109,7 @@ intersphinx_mapping = { 'python': ('https://docs.python.org/3/', None), 'requests': ('https://requests.readthedocs.io/en/master', None), + 'readthedocs': ('https://docs.readthedocs.io/en/stable', None), } # Sphinx document translation with sphinx gettext feature uses these settings: diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index dd3a669896b..f4991379f07 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -152,3 +152,76 @@ learn more, you can: only the web interface `_ is not yet implemented. + +Publishing your HTML documentation +---------------------------------- + +Read the Docs +~~~~~~~~~~~~~ + +`Read the Docs`_ offers integration with both GitHub and GitLab. The quickest +way of getting started is to follow :doc:`the RTD +tutorial `, which is loosely based on this one. +You can publish your sources on GitHub as explained :ref:`in the previous +section `, then skip directly to +:ref:`readthedocs:tutorial/index:Sign up for Read the Docs`. +If you choose GitLab instead, the process is similar. + +GitHub Pages +~~~~~~~~~~~~ + +`GitHub Pages`_ requires you to :ref:`publish your +sources ` on `GitHub`_. After that, you will need an +automated process that performs the ``make html`` step every time the sources +change. That can be achieved using `GitHub Actions`_. + +After you have published your sources on GitHub, create a file named +``.github/workflows/sphinx.yml`` in your repository with the following +contents: + +.. code-block:: yaml + :caption: .github/workflows/ + + name: Sphinx build + + on: push + + jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build HTML + uses: ammaraskar/sphinx-action@0.4 + - name: Upload artifacts + uses: actions/upload-artifact@v1 + with: + name: html-docs + path: docs/build/html/ + - name: Deploy + uses: peaceiris/actions-gh-pages@v3 + if: github.ref == 'refs/heads/main' + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: docs/build/html + +.. todo:: + Some more changes are needed to tell the Sphinx action to install the + dependencies. + +This contains a GitHub Actions workflow with a single job of four steps: + +1. Checkout the code. +2. Build the HTML documentation using Sphinx. +3. Attach the HTML output the artifacts to the GitHub Actions job, for easier + inspection. +4. If the change happens on the default branch, take the contents of + ``docs/build/html`` and push it to the ``gh-pages`` branch. + +After that, you are ready to `enable GitHub Pages on your repository`_. For that, +go to :guilabel:`Settings`, then :guilabel:`Pages` on the left sidebar, select +the ``gh-pages`` branch in the "Source" dropdown menu, and click +:guilabel:`Save`. After a few minutes, you should be able to see your HTML at +the designated URL. + +.. _enable GitHub Pages on your repository: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site From 043b5e925357d6eb6e5aa3a7cbfccc0f5be0743c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 18 Nov 2021 18:47:39 +0100 Subject: [PATCH 042/192] Add missing content on dependencies --- doc/tutorial/deploying.rst | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index f4991379f07..08fa57ebc4f 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -205,10 +205,6 @@ contents: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: docs/build/html -.. todo:: - Some more changes are needed to tell the Sphinx action to install the - dependencies. - This contains a GitHub Actions workflow with a single job of four steps: 1. Checkout the code. @@ -218,9 +214,18 @@ This contains a GitHub Actions workflow with a single job of four steps: 4. If the change happens on the default branch, take the contents of ``docs/build/html`` and push it to the ``gh-pages`` branch. -After that, you are ready to `enable GitHub Pages on your repository`_. For that, -go to :guilabel:`Settings`, then :guilabel:`Pages` on the left sidebar, select -the ``gh-pages`` branch in the "Source" dropdown menu, and click +Next, you need to specify the dependencies for the ``make html`` step to be +successful. For that, create a file ``docs/requirements.txt`` and add the +following contents: + +.. code-block:: + :caption: docs/requirements.txt + + furo==2021.11.16 + +And finally, you are ready to `enable GitHub Pages on your repository`_. For +that, go to :guilabel:`Settings`, then :guilabel:`Pages` on the left sidebar, +select the ``gh-pages`` branch in the "Source" dropdown menu, and click :guilabel:`Save`. After a few minutes, you should be able to see your HTML at the designated URL. From daceb8aba3b0d90beb5ad6c84d8187284c5932df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 18 Nov 2021 19:34:09 +0100 Subject: [PATCH 043/192] Document GitLab Pages --- doc/tutorial/deploying.rst | 47 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index 08fa57ebc4f..85fc6643ab5 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -230,3 +230,50 @@ select the ``gh-pages`` branch in the "Source" dropdown menu, and click the designated URL. .. _enable GitHub Pages on your repository: https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site + +GitLab Pages +~~~~~~~~~~~~ + +`GitLab Pages`_, on the other hand, requires you to :ref:`publish your +sources ` on `GitLab`_. When you are ready, you can +automate the process of running ``make html`` using `GitLab CI`_. + +After you have published your sources on GitLab, create a file named +``.gitlab-ci.yml`` in your repository with these contents: + +.. code-block:: yaml + :caption: .gitlab-ci.yml + + stages: + - deploy + + pages: + stage: deploy + image: python:3.9-slim + before_script: + - apt-get update && apt-get install make --no-install-recommends -y + - python -m pip install sphinx furo + script: + - cd docs && make html + after_script: + - mv docs/build/html/ ./public/ + artifacts: + paths: + - public + rules: + - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH + +This contains a GitLab CI workflow with one job of several steps: + +1. Install the necessary dependencies. +2. Build the HTML documentation using Sphinx. +3. Move the output to a known artifacts location. + +.. note:: + You will need to `validate your account`_ by entering a payment method + (you will be charged a small amount that will then be reimbursed). + +.. _validate your account: https://about.gitlab.com/blog/2021/05/17/prevent-crypto-mining-abuse/#validating-an-account + +After that, if the pipeline is successful, you should be able to see your HTML +at the designated URL. From 79f6d404135389b0e7a74675daf480dc890ae6a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 18 Nov 2021 23:04:30 +0100 Subject: [PATCH 044/192] Apply suggestions from code review Co-authored-by: Jakob Lykke Andersen --- doc/tutorial/describing-code.rst | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/describing-code.rst b/doc/tutorial/describing-code.rst index bf8ab1c1f64..0b88f5bd9df 100644 --- a/doc/tutorial/describing-code.rst +++ b/doc/tutorial/describing-code.rst @@ -240,11 +240,13 @@ Documenting and cross-referencing objects ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Sphinx also supports documenting and cross-referencing objects written in -other programming languages. There are four extra built-in domains: -C, C++, JavaScript, and reStructuredText, and third party extensions may +other programming languages. There are four additional built-in domains: +C, C++, JavaScript, and reStructuredText. Third-party extensions may define domains for more languages, such as -`Fortran `_ -or `Julia `_. + +- `Fortran `_, +- `Julia `_, or +- `PHP `_. For example, to document a C++ type definition, you would use the built-in :rst:dir:`cpp:type` directive, as follows: From ffdecbfada836edcda581101636a291d58790c16 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 21 Nov 2021 00:11:20 +0000 Subject: [PATCH 045/192] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70589 -> 70589 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101832 -> 101832 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 4 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74234 -> 76686 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 275 ++++++++++-------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 79780 -> 79780 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 242 ++++++++------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83028 -> 83432 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 242 ++++++++------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80228 -> 80639 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 242 ++++++++------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/sphinx.pot | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78906 -> 78906 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63473 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 240 ++++++++------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 240 ++++++++------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 42174 -> 42177 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 242 ++++++++------- 126 files changed, 7767 insertions(+), 6686 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index e9a84337090dbf26667b080e2a55e89a2a7493f7..944945f8f2e7874e815132e9c3dd9dc7356c5ef7 100644 GIT binary patch delta 24 fcmZp)YqZ;-B*0{3I9WwNg~d?U&}6fZz*as0QO*WR delta 24 fcmZp)YqZ;-B*0`~K3PRTg~dSE&|tHVz*as0QRfCp diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 933e974541a..08d605bb824 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "تم" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "غير متوفرة للرسائل الافتراضية المدمجة" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "فشل: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "نجح" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "انتهى مع وجود مشاكل" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "بناء %s، %sتحذير." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "بناء %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "قسم %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "جدول %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "بناء [mo]:" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "جميع ملفات المصدر" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "بناء [%s]" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "التحقق من التوافق" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "تحديث البيئة:" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "تجهيز المستندات" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "مؤلف القسم:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "كاتب الكود:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "المؤلف" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "متغير" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "كائن" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1988,7 +2016,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2002,20 +2030,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2046,7 +2074,7 @@ msgstr "" msgid "object" msgstr "كائن" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2066,84 +2094,84 @@ msgstr "متغيرات" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "صفحة" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "قائمة المحتويات" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "البحث %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "الموضوع السابق" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "القسم السابق" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "الموضوع التالي" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "الفصل التالي" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index b1a81d05341bce0812fffcff301dd133b7e92ce9..c15988feffedafaaa9732f91c4a00da1ee728cf7 100644 GIT binary patch delta 21 ccmey${FQk^2a}QE#4Z&ULtR6Yjhmbq0anTf8vp\n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 1b6d8df01720e19cf2bdc8e306420e1e200c9198..9abdf46899a9b24b7951b92185f7fc83d5030395 100644 GIT binary patch delta 24 gcmbPjKihu84qhfB!^yjNRagvl4NW#b;@v3-0BdFlKmY&$ delta 24 gcmbPjKihu84qhe$^U1q-Ragvk4GlIw;@v3-0Be5;KL7v# diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 8d0fcd1d548..530c3139a92 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "অনুচ্ছেদ লেখক:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "মডিউল লেখক:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "লেখক:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "ফাংশন" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "ক্লাস" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -1987,7 +2015,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "এ্যট্রিবিউট" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "মডিউল" @@ -2045,7 +2073,7 @@ msgstr "অপারেটর" msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "এক্সেপশন" @@ -2065,84 +2093,84 @@ msgstr "" msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "%(docstitle)s-এ খুঁজুন" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "পূর্ববর্তী টপিক" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "পূর্ববর্তী অধ্যায়" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "পরবর্তী টপিক" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "পরবর্তী অধ্যায়" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index dcad5dfb3dc650ad255b9aa200a8c687dd230bde..1b7d4e59cc69ccd0ca6a626de84e930bb30fb356 100644 GIT binary patch delta 24 gcmbQMGgoKBVqPXA!^ul|Ragvl4NW$m\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor de la secció:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor del mòdul: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funció" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "class" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" @@ -1987,7 +2015,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "mòdul" @@ -2045,7 +2073,7 @@ msgstr "operador" msgid "object" msgstr "objecte" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "excepció" @@ -2065,84 +2093,84 @@ msgstr "" msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (obsolet)" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Cercar a %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Tema anterior" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "capítol anterior" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Tema següent" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "capítol següent" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index b1a86752201eb0157c88050ab7a829512d286af2..ee637ca5c8f01e3dfa4ffcee21939965df536be5 100644 GIT binary patch delta 24 gcmaDU^ipU;DJzqa;pB2w6&6EXLzB((Sx+$o0B24IqyPW_ delta 24 gcmaDU^ipU;DJzqK`Q&m|6&3?sLxaupSx+$o0B2_hqW}N^ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 56a3bb0025b..6859f38499e 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "xk'isïk" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "sachoj: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Ruwachib'äl %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Kik'ajtz'ïk %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "retal jalöj" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "Ruwäch" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1987,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2045,7 +2073,7 @@ msgstr "" msgid "object" msgstr "wachinäq" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2065,84 +2093,84 @@ msgstr "Retal jalöj" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 9ac529234e410c283c1aae9109c1c5631bf46aa1..61823bda32c9bab65e090d6cc34212f10f45ec65 100644 GIT binary patch delta 24 fcmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabulka %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor sekce: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "proměnná" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkce" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "Vyvolá" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "třída" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -1988,7 +2016,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2002,20 +2030,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2046,7 +2074,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "výjimka" @@ -2066,84 +2094,84 @@ msgstr "Proměnné" msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Prohledat %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Přechozí téma" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "předchozí kapitola" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Další téma" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "další kapitola" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 97cde223af3c49d5b16ff3c6cb56635ff9985a80..223a1734ed53a33d864e62e13494622d5b625baa 100644 GIT binary patch delta 15 WcmbPZG{IBvR diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 4e5a09717d8..3e2da837643 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 16e05ee5b0f5b6df0702d56df5f81651f3962805..c281fb7cc449cdf4b7fab15339ef8d13296343fe 100644 GIT binary patch delta 24 fcmdm)u`^?Xp#qbU;bdb46&6EXLzB(X3ipHoXPF0? delta 24 fcmdm)u`^?Xp#qbE`D9}S6&3?sLxauH3ipHoXR-&F diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index f539576977f..b94f113d116 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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+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" @@ -76,76 +76,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "færdig" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "ikke tilgængelig for indbyggede beskeder" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "fejlede: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "lykkedes" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "færdig med problemer" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "kompilering %s, %s advarsel." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "kompilering %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +153,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,64 +166,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Ingen sådan konfigurationsværdi: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Konfigurationsværdien %r er allerede til stede" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "figur %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "tabel %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Kildekode %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r blev ikke fundet, ignorerer." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -523,104 +523,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "læser kilder ..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "forbereder dokumenter" @@ -1813,22 +1813,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Afsnitsforfatter: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Modulforfatter: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Kodeforfatter: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Forfatter: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1880,7 +1908,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funktion" @@ -1958,7 +1986,7 @@ msgid "Throws" msgstr "Kaster" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klasse" @@ -1975,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" @@ -1990,7 +2018,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" @@ -2004,20 +2032,20 @@ msgstr "Parametre" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2048,7 +2076,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "undtagelse" @@ -2068,84 +2096,84 @@ msgstr "Variable" msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (forældet)" @@ -2367,16 +2395,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3149,7 +3167,7 @@ msgid "page" msgstr "side" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3274,19 +3292,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Søg i %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Forrige emne" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "forrige kapitel" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Næste emne" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "næste kapitel" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 87563ad047810397add14201aba898b9718066c2..1ebe687114f34efd03af5a759572c0581d7f7165 100644 GIT binary patch delta 24 gcmZ1)xioUaQYj`Q!^z8~R9Fmk4NW$mm%1hh0C439lK=n! delta 24 gcmZ1)xioUaQYj__^U2GlR9Fmj4GlJ*m%1hh0C4^Yk^lez diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 4a91c94ee9e..daa69177e76 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" @@ -76,76 +76,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "erledigt" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "nicht verfügbar für vordefinierte Nachrichten" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +153,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,64 +166,64 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Keine solche Konfigurationseinstellung: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Konfigurationswert %r bereits gesetzt" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Abschnitt %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Abb. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tab. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Quellcode %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nicht gefunden, daher ignoriert." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -523,104 +523,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1813,22 +1813,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor des Abschnitts: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor des Moduls: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor des Quellcode: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1880,7 +1908,7 @@ msgid "variable" msgstr "Variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "Funktion" @@ -1958,7 +1986,7 @@ msgid "Throws" msgstr "Wirft" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "Klasse" @@ -1975,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" @@ -1990,7 +2018,7 @@ msgstr "%s() (Klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" @@ -2004,20 +2032,20 @@ msgstr "Parameter" msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "Attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "Modul" @@ -2048,7 +2076,7 @@ msgstr "Operator" msgid "object" msgstr "Objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "Exception" @@ -2068,84 +2096,84 @@ msgstr "Variablen" msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (veraltet)" @@ -2367,16 +2395,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3149,7 +3167,7 @@ msgid "page" msgstr "Seite" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Inhaltsverzeichnis" @@ -3274,19 +3292,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Suche in %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Vorheriges Thema" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "vorheriges Kapitel" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Nächstes Thema" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "nächstes Kapitel" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 2b7c7a7721cb8297fc9237d47111d12cd31c8711..ce5f7048849e45a54ffaf36be0a02e230f213dff 100644 GIT binary patch delta 26 hcmZo@V{K?--JsCKWMnv5sY!*!P}k68vscr$0|0Ro2;~3( delta 26 hcmZo@V{K?--JsCKWMDp7sY!*!K-bV2;=|& diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index f6e9445e471..58c546fe371 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -75,76 +75,76 @@ msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχ msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "ολοκλήρωση" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "φόρτωση πακτωμένου περιβάλλοντος" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "αποτυχία: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "επιτυχία" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "ολοκλήρωση με προβλήματα" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "μεταγλώττιση %s, %s προειδοποίηση" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "μεταγλώττιση %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -152,12 +152,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -165,64 +165,64 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "ο κατάλογος παραμετροποίησης δεν περιλαμβάνει κανένα αρχείο conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης καταλόγου %r, θα αγνοηθεί (χρησιμοποιήστε το %r για να καθορίσετε τα επιμέρους στοιχεία)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ανέγκυρος αριθμός %r για τιμή παραμετροποίησης %r, θα αγνοηθεί" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμισης παραμετροποίησης %r με τύπο ο οποίος δεν υποστηρίζεται, θα αγνοηθεί" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "άγνωστη τιμή παραμετροποίσης %r στην υπερσκέλιση, θα αγνοηθεί" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Δεν υπάρχει τέτοια τιμή παραμετροποίησης: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Η τιμή παραμετροποίησης %r υφίσταται ήδη." -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Υπάρχει ένα συντακτικό λάθος στο αρχείο παραμετροποίησής σας: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Το αρχείο παραμετροποίησης (ή ένα από τα στοιχεία που εισάγει) κάλεσε την sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,57 +230,57 @@ msgid "" "%s" msgstr "Υπάρχει ένα προγραμματιστικό λάθος στο αρχείο παραμετροποίησής σας:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Η τιμή παραμτετροποίησης 'source_suffix' αναμένει στοιχειοσειρά, στοιχειοσειρά καταλόγου, ή λεξικό. Αλλά παραδόθηκε %r." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Τομέας %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Εικ. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Πίνακας %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Λίστα %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Η τιμή παραμετροποίησης '{name}' πρέπει να λαμβάνει μία από τις {candidates} αλλά εκχωρήθηκε η '{current}'." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Η τιμή παραμετροποίησης '{name]' έχει τύπο '[current__name__}'; αναμενόμενη {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Η τιμή παραμετροποίησης '{name}' έχει τύπο '{current__name__}', αρχικοποίηση σε '{default__name__}'." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "το primary_domain %r δεν βρέθηκε, θα αγνοηθεί." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -522,104 +522,104 @@ msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για το msgid "building [mo]: " msgstr "μεταγλώττιση [mo]:" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "εγγραφή εξόδου..." -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "όλα τα αρχεία po του %d" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "στόχοι για τα αρχεία po του %d οι οποίοι έχουν καθοριστεί" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "στόχοι για τα αρχεία po του %d τα οποία είναι ξεπερασμένα" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "όλα τα αρχεία πηγής" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "το αρχείο %r που δόθηκε στη γραμμή εντολής δεν βρίσκεται κάτω από τον κατάλογο πηγής, θα αγνοηθεί" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "το αρχείο %r που δόθηκε στη γραμμή εντολής δεν υπάρχει, θα αγνοηθεί" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "τα αρχεία πηγής %d που δόθηκαν στη γραμμή εντολής" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "στόχοι για τα αρχεία πηγής %d τα οποία είναι ξεπερασμένα" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "μεταγλώττιση [%s]:" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "αναζήτηση για νεοξεπερασμένα αρχεία..." -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "βρέθηκε %d" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "δεν βρέθηκε κανένα" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "Περιβάλλον μετατροπής αντικειμένων Python σε ροή bytes" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "έλεγχος συνοχής" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "κανένας στόχος δεν είναι ξεπερασμένος." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "αναβάθμιση περιβάλλοντος:" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s προστέθηκε, %s άλλαξε, %s απομακρύνθηκε" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "ανάγνωση πηγών..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "σε αναμονή για εργάτες..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "docname προς εγγραφή: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "προετοιμασία κειμένων" @@ -1812,22 +1812,50 @@ msgstr "Δεν είναι δυνατή η χρήση \"leneno-match\" με έν msgid "Line spec %r: no lines pulled from include file %r" msgstr "Προσδιορισμός γραμμής %r: δεν ελήφθησαν γραμμές από το συμπεριληφθέν αρχείο %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "Το toctree περιλαμβάνει αναφορά στο αποκλεισμένο κείμενο %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "το toctree περιλαμβάνει αναφορά στο μη υπαρκτό έγγραφο %r" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Συντάκτης τμήματος: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Συντάκτης μονάδας: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Συντάκτης κώδικα: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Συντάκτης: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1879,7 +1907,7 @@ msgid "variable" msgstr "μεταβλητή" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "συνάρτηση" @@ -1957,7 +1985,7 @@ msgid "Throws" msgstr "Προκαλεί" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "κλάση" @@ -1974,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" @@ -1989,7 +2017,7 @@ msgstr "%s() (κλάση)" msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" @@ -2003,20 +2031,20 @@ msgstr "Παράμετροι" msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "ιδιότητα" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "μονάδα" @@ -2047,7 +2075,7 @@ msgstr "τελεστής" msgid "object" msgstr "αντικείμενο" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "εξαίρεση" @@ -2067,84 +2095,84 @@ msgstr "Μεταβλητές" msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -2366,16 +2394,6 @@ msgid "" " will be generated" msgstr "το toctree περιλαμβάνει αναφορά στο έγγραφο %r η οποία δεν έχει τίτλο: δεν θα δημιουργηθεί σύνδεσμος" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "Το toctree περιλαμβάνει αναφορά στο αποκλεισμένο κείμενο %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "το toctree περιλαμβάνει αναφορά στο μη υπαρκτό έγγραφο %r" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3148,7 +3166,7 @@ msgid "page" msgstr "σελίδα" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Πίνακας περιεχομένων" @@ -3273,19 +3291,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Αναζήτηση %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Προηγούμενο θέμα" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "προηγούμενο κεφάλαιο" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Επόμενο θέμα" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "επόμενο κεφάλαιο" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 7a1a9dc68e22f9342b84361475c5e53f9873f98f..d0dd87138a9d9e49dff5a6a234b50c2c826d6bee 100644 GIT binary patch delta 21 ccmcb?e1myH2a}QE#4Z&ULtR6YjhoaM0a6GC!~g&Q delta 21 ccmcb?e1myH2a|#M#4Z&U16@OdjhoaM0a6|Y!vFvP diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 7512859759e..f32d9e4d63c 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 6e8e50fd32f10e89dfe63abd54069b09f6ebc2e7..3a3bf7d87f4bbd83999ca326de30d8c05e004baa 100644 GIT binary patch delta 21 ccmeBT>0+7C!DM7Ou}g);P}k680+7C!DL`Qu}g);K-bV<\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 6a1e4046d8a3cae7847502dda7570023afbb3b94..484f083c9dfcf98809ca3a9bbd50c7922aaac846 100644 GIT binary patch delta 21 ccmZo=X=Rzv!DM7Ou}g);P}k68\n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 0696a808f147c0661be6fbf16d42d766ad58771a..94e153a58e4eff69aee967c3050ad8ccebe4409b 100644 GIT binary patch delta 24 fcmX@WcYtq$5et)%;bapQ6&6EXLzB%hEKisKRpthl delta 24 fcmX@WcYtq$5et)n`D7Co6&3?sLxasREKisKRsRN- diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 6472ba924e3..1ca2c7a1eeb 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Aŭtoro:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkcio" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klaso" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1988,7 +2016,7 @@ msgstr "%s() (klaso)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2002,20 +2030,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2046,7 +2074,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "escepto" @@ -2066,84 +2094,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Antaŭa temo" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "antaŭa ĉapitro" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Sekva temo" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "sekvo ĉapitro" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 11107649aeb611a2d599ede4e1f5befe12ec2b0b..c3fada2f9163eb34e4449675262572a771c8483e 100644 GIT binary patch delta 26 icmdnHoMrEFmJP9!nT!l4$4^#aG1N6Q+1x(atN{RwCke>_ delta 26 icmdnHoMrEFmJP9!nGDP)$4^#aG0-(M*xWwZtN{RwKnchI diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 547e7ea703a..6ef49723af3 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" @@ -79,76 +79,76 @@ msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "hecho" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "no disponible para mensajes incorporados" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "cargando el ambiente pickled" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilación %s, %sadvertencia (con advertencias tratadas como errores)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilación %s, %s advertencias (con advertencias tratadas como errores)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "construir %s, %s advertencia." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "compilación %s, %s advertencias." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la clase de nodo %r ya está registrada, sus visitantes serán reemplazados" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ya está registrada, esa se reemplazará" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,64 +169,64 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "directorio de configuración no contiene un archivo conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "no se puede reemplazar el ajuste de la configuración del diccionario %r, haciendo caso omiso (utilice %r para definir elementos individuales)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número no válido %r de valor de configuración %r, haciendo caso omiso" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "no se puede reemplazar los ajustes de configuración %r con tipo no compatible, haciendo caso omiso" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "No hay tal valor de configuración: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Valor de configuración %r ya presente" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hay un error de sintaxis en su archivo de configuración: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El archivo de configuración (o uno de los módulos que importa) invocó sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -234,57 +234,57 @@ msgid "" "%s" msgstr "Hay un error programable en su archivo de configuración:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuración `source_suffix' espera una cadena de caracteres, una lista de cadena de caracteres o un diccionario. Pero `%r' es dado." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabla %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Lista %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuración `{name}` tiene que ser uno de {candidates}, pero fue dado `{current}`." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuración `{name}' tiene tipo `{current.__name__}'; esperado {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuración `{name}' tiene el tipo `{current.__name__}', el valor predeterminado es `{default.__name__}'." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r no fue encontrado, se ignora." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -526,104 +526,104 @@ msgstr "una imagen adecuada para %s constructor no encontrado: %s" msgid "building [mo]: " msgstr "compilando [mo]:" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "escribiendo salida... " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "Todos los %d archivos po" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "los objetivos para %d los archivos po que se especifican" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "los objetivos para %d los archivos po que estan desactualizados" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "todos los archivos fuente" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "archivo %r dado en la línea de comandos no está en el directorio fuente, ignorado" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "archivo %r dado en la línea de comandos no existe, ignorado" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d archivos fuente dados en la línea de comandos" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "los objetivos para %d los archivos fuentes que estan desactualizados" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "compilando [%s]:" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "buscando por archivos no actualizados..." -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "encontrado %d" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "no encontrado" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "preparando ambiente" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "verificando consistencia" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "no hay archivos objetivo desactualizados." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "actualizando ambiente" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%sañadido, %s cambiado, %s removido" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "leyendo fuentes..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "Esperando a los workers..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparando documentos" @@ -1816,22 +1816,50 @@ msgstr "No puede utilizar a \"lineno-match\" con un conjunto desunido de \"líne msgid "Line spec %r: no lines pulled from include file %r" msgstr "Línea especifico %r: sin líneas tiradas desde el archivo incluido %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree contiene referencia al documento excluido %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "toctree contiene referencias a documentos inexistentes %r" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor de la sección: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor del módulo: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Código del autor: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1883,7 +1911,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "función" @@ -1961,7 +1989,7 @@ msgid "Throws" msgstr "Lanzamientos" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "clase" @@ -1978,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" @@ -1993,7 +2021,7 @@ msgstr "%s() (clase)" msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" @@ -2007,20 +2035,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "módulo" @@ -2051,7 +2079,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "excepción" @@ -2071,84 +2099,84 @@ msgstr "Variables" msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descripción duplicada del objeto de %s, otra instancia en %s, utilice :noindex: para uno de ellos" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "se encontró más de un objetivo para la referencia cruzada %r: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2370,16 +2398,6 @@ msgid "" " will be generated" msgstr "toctree contiene una referencia al documento %r que no tiene título: no se generará ningún enlace" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree contiene referencia al documento excluido %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "toctree contiene referencias a documentos inexistentes %r" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3152,7 +3170,7 @@ msgid "page" msgstr "página" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Tabla de contenido" @@ -3277,19 +3295,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Buscar en %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Tema anterior" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "capítulo anterior" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Próximo tema" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "próximo capítulo" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 21b330d9e3c830234f462882a3dbcf1cec24295e..5bbf9987122e5f7fa31d49da527b11e4613fbe20 100644 GIT binary patch delta 26 hcmX@t$#kxhX+xS1lab-%3?CI1LtR6Y%@cg=EC7LV2(bVF delta 26 hcmX@t$#kxhX+xS1lY#l<3?CI116@Od%@cg=EC7Lu2(SPE diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index f346ef8c07b..757802dd485 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" @@ -76,76 +76,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "valmis" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "serialiseeritud keskkonna laadimine" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +153,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,64 +166,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "vigane arv %r seadistuse väärtusele %r, eiratakse" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Puudub määratud seadistusväärtus: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Seadistuste väärtus %r on juba olemas" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Sinu seadistusfailis on süntaksi viga: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Seadistusfail (või mõni selle poolt imporditud moodulitest) kutsus välja sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Sektsioon %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Joonis %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Nimekiri %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r ei leitud, eiratakse." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -523,104 +523,104 @@ msgstr "" msgid "building [mo]: " msgstr "ehitamine [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "väljundi kirjutamine... " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "%d määratud po-faili sihtfailid" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "%d po-faili sihtfailid on aegunud" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "kõik lähtefailid" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d lähtefaili sihtfailid on aegunud" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "ehitamine [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "praeguseks aegunud failide otsimine... " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "leitud %d" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "ei leitud" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "kooskõla kontrollimine" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "aegunud sihtfaile pole" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "keskkonna uuendamine:" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "lisatud %s, muudetud %s, eemaldatud %s" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "lähtefailide lugemine..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" @@ -1813,22 +1813,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Sektsiooni autor: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Mooduli autor: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Koodi autor: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1880,7 +1908,7 @@ msgid "variable" msgstr "muutuja" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funktsioon" @@ -1958,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klass" @@ -1975,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" @@ -1990,7 +2018,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" @@ -2004,20 +2032,20 @@ msgstr "Argumendid" msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "moodul" @@ -2048,7 +2076,7 @@ msgstr "operaator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "erind" @@ -2068,84 +2096,84 @@ msgstr "Muutujad" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (iganenud)" @@ -2367,16 +2395,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3149,7 +3167,7 @@ msgid "page" msgstr "lehekülg" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Sisukorratabel" @@ -3274,19 +3292,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Otsi %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Eelmine teema" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "eelmine jaotis" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Järgmine teema" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "järgmine jaotis" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 0abec77148ecd8fbe69992fcf3c52968dd7c732a..63b6965e4e59eee743d109fa06801859ecbc63ee 100644 GIT binary patch delta 24 fcmexw^50}bumF>h;p9*O6&6EXLzB(50!&;0Y%~WB delta 24 fcmexw^50}bumF>R`Q%Um6&3?sLxat=0!&;0Y)uCZ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 92b9e1dbea8..9f8358359c1 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Atalaren egilea: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Moduluaren egilea: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Kodearen egilea: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Egilea:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "aldagaia" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funtzioa" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "Jaurtitzen du" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klasea" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" @@ -1988,7 +2016,7 @@ msgstr "%s() (klasea)" msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" @@ -2002,20 +2030,20 @@ msgstr "Argumentuak" msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atributua" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modulua" @@ -2046,7 +2074,7 @@ msgstr "eragiketa" msgid "object" msgstr "objetua" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "salbuespena" @@ -2066,84 +2094,84 @@ msgstr "Aldagaiak" msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (zaharkitua)" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "%(docstitle)s bilatu" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Aurreko gaia" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "aurreko kapitulua" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Hurrengo gaia" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "hurrengo kapitulua" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 344d1eeb3f3c4a6960f5f21414b41f41b513eeec..3251057a88deee554b848a64b2efb9dcb5ee04e7 100644 GIT binary patch delta 25 jcmV+!0OtS5n+C|62C(?30x~g^`luw6_NWlEE~%R2reX~$ delta 27 lcmV+$0ObG3n+C|62C(?3lOU-MlLo061TZZzFtZ}5rsS**3$XwI diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 29f3eb2ecfc..6c7d998c928 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/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-14 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 570b3d8c56f8b24911e80b1296eba470f2f99349..accdd0209abbde9d952d2fc2b24d239cbadebc85 100644 GIT binary patch delta 24 gcmaDL_CRdI88#*(!^!8^R9Fmk4NW$GW6NRz0CD~ZLjV8( delta 24 gcmaDL_CRdI88#*Z^U3GfR9Fmj4GlJbW6NRz0CE=yLI3~& diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index c1fa88141ab..c8d2cfa674e 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Luvun kirjoittaja: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Moduulin kirjoittaja: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Tekijä: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1987,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "moduuli" @@ -2045,7 +2073,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2065,84 +2093,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (poistettu)" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "<<" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "<<" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr ">>" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr ">>" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 120c0a7b8c5..659530a126b 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -13,7 +13,7 @@ Documentation.addTranslations({ "Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te", "Contents": "Contenu", "Copyright": "Copyright", - "Created using Sphinx %(sphinx_version)s.": "", + "Created using Sphinx %(sphinx_version)s.": "Cr\u00e9\u00e9 en utilisant Sphinx %(sphinx_version)s.", "Expand sidebar": "Agrandir la barre lat\u00e9rale", "Full index on one page": "Index complet sur une seule page", "General Index": "Index g\u00e9n\u00e9ral", diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 10d9848f790afc59c2c33c4e10a0c2153bb6f36b..b824b224cf130320d81f0e116f7783b9c99bef2d 100644 GIT binary patch delta 13458 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 delta 11461 zcmYM)2~^e9+Q;$#Q6?E=5@jA#1esC684<++QOO*#6v3fHMQ}{BI%;N_XzEIoU-2UkNsckZM|!K_Os7_*!$Vf-si}DmwfAT?|_T* zLV(L_7XR&NU|Hd~H%QU{|2HDhvKBflYb5?c_vIwZ$|XLTY*|x@gHtVQ5-vs`yo0Xj zmS$NA=#5>mJ+{Xg*a!cC-7L##{XwHS9hvEt)d+{92ads5oP-)!1xDcqs26;Jf%rB0 z$F_pZ8nSXz0f0Q3F_RU+@+_OuQHMAiuVj)g9wd zaf$6*)C;Px8E(R0{20CQ3Dn1RhjcjA{( zGk+DCq_x8KbL>t07is{#cuN2lBFVL;U>L4PrT!zVLU-1~Ihw{A8bR2ggBf8kDjtZ@ zI1ZJWg|^F3sa%0ts?C^%+wIS9Vm$GE+m;|04?Dt$UW8- z)Y?aOGBfXq8c;rx9BVX2V-@QDf1;M)Qw+s#Q7Qfn^`d~zW&&ZT=f>Lh>rDP5=$JwW z*IG-FWLQVBDK_Y0iZcXNWL?k=2cRbo!7wbceHx31-#}lyi>6qp=!Q11C|LIgd*H|4;*SbSGOFggr1A)jtAVupHYu z*#DS9yqQt*Jg0S+G2Da^=#pz} zj>=Rv4#z3 zF&QUfJidu~?taujj@j|Q^*QgiexjkZ52PYg#YyObUGY)OL04Rb?zjPy@O^AbN>5`G z;_H3Q{VsWCX@W4G{ubzg`KZheK~J2BPOark8sYc~hT?m+2eBFPMcX^5>;0(M5RAiC z*d19tYdn_V`>2ct`*ccC@Mt%yF zp`Xwj@1vH$V}LpFf>CiIw!qHV5=Wt)w*YnD8|a2_4ps_sP{c^($D}r3d|aXpiS~^&M&;;SZUarlN}LVblc1p$1lpTKoCvkBd>6ScTdR&T1MeGOt1A z`}%QgOS~LY@gS;*e#aDyeAu#hx78oZaWyJ4zJtxSO2y{H51~>&9i#D09EZD6?~5Kn zcC`QJ(4fycib_q?P;*94L_K&pYF}5Q*3@U1IoZ-t@o-d;J!AJDLhbMC$f0WaKVpvb zfv6>T0axI19IO4GL>{=-T8=aEM^teXG0cYe1Zq1@#AqzX`V3)H;)AF)K98FD9n{)~ zF>0mw5!8#fqn2hbYCG3q67RQ;((uFEs4DjuVFnP1M~Gul54w&oVc(G^L#Hr__#TE~ zT%ozI2dZZBP%j*6$Axx00aX)I(a9QEb7(Baqu5P1j4~(K>)3|44)ws>7=aCoO!38_ z2Hp-kVlIZF6E))%sO`29$+lIE8n9=vd2ah+@;{o633O!OF=UcfLps^oRuQWBwqkGm z7Mozy7_+ABP#K$q9dJHsN%o)ya1vwjJQiVtv1S5eFp_xQSf@EK*3#ii$2Qb9`4~0h zlc*E!0=7g~N;m`)P?_k7n(=7Vz@EV~QrZzU;sQG^#U8{9Q1>53W#&HWx}b?BLv1jaxB!*%64XRq!~pI8 zl{A{s@c}9mhcF(`V^?&YWQwc@YKaD88jeL5d=2&D6{rJi2Wm+!V*>t-tuUd~)Wk!m z3_ON@+W)W7&|1EO(O8EX$Q4Y+d#C}%Pd1sz#&qIgs240k72yu_z@w-Eeua9mOPQ&u zL{x2bMNM!d`tp8jAq}PMb=w+@B|d@Fjr9kv!x80XN&Z63yzLZ|kq$VVxDToZ)?*4@ zK&9Mgs#$_0RAzEfpBJH1YrK?3BG#ee8>kV+PBZZU97g;c>VfAl5bvQ5p2pM7{!YL= zU56UranwY?>kCh>$P$$wuO>*&yhKcgOyJj<+MA8blI8++q2 z9Dt`$YaKV+EI}G7rP-(fm0>%ak3Lw7Nq7+3;%|0;E9X8hU0ZiMQ<`3f?Y5YhoUk%1KAx;>t!06NsZ~S zzD9TAKQR|w=9&{Q54GKfVSAj9&2cv>L*Jn?;5N?;q`7T2s=p9*{Zpukt-@y7{~Kti zD)(S#Jb@}E@A<|+)QzDSgI(?ZQP_g`anyic!k$=x8Tc)#=zN|tyCE38i6c-;nSi;x z-x@(92iK#D>GJ#JK)n8jUQqGeuK?1?gdkPd8qrw;Xr&AmEq&4 zTKXP6@b(Mj-;aj%qM5NjYP+;Y4I~#e)4{0J&BJ(Hg1K00_dh_@hUX&l;0#oXvrx5C zj>^;~R7UDh+w_Y?rm=dU!9=(vM=Q0x-3zY9?Nc^+y;Yp@Cr+KyamQvADZ z+%l87;W&cp%1|l)95umfsOR`CHwRKC7Ha>GrqPBEK0$4pTd0E~p~9rBFDlhzP@j)S zE!ApNRc}XS;v3Wi9-v+vUupJvPfR4v!(^O^8puWr)BZn7L;L!wt;efoCJCtiY}AQ0 z8a;3}>c#U>FMP-D{}Ka;&!VpX1q;ySH8Y_h*qV4ccEr`Fzdu>0?GKu~Zq_;r^`Ks; zZ8Y3=Dr#nnF$mv9)xTSZ6Nu zTV?+FU4h=j-m6UtLr|%U!hGzH{c#08gx7EYc3NZ3fkmid+k&3B6I1XL)PQeb6#A?s z|E@HW*P1nLi+;qt(F-5JKpcyj@hm%Df{lsSqYj>GY>KB)_x+3-z-`ov9qagMj%gT) zTTuf)w$5o%8nxbxs52^skD*dM8I{79&uy4k!S6a9%_KxO7l zOvCM{=X{S@826spJ&&U@TZUb={}R4VGRC(ZrcCB|1b}XLKR1AY>9nvGM1u>@H{FLH&AOA zyVZPMC*dgK>G&v~LOmz-12fydVP{B@f z;7qSIH_XEYTu_B7w(x(NeclCC&7-gqpTubN+GW->3HuNaz{XgGT9S7#2_3un<0PhF zKRmme_1DZ>?J*?qLC$=(x{h;H8huwp@!^s~XgSa~O5w->A%Z{L7qp@fb$j4z*MT z*aBx_IIh4bti?$D*6w%yK_i)tz>kgHF`Kvy%W)g#V$3JzAEQs8*6cz1KOh$51109Bb+W*sND1{5`3o0;xc%vQHq6T;bwJmRBFoxHe?}`jm zN_$~b%tvn=gZ1YH>iM(mcp+*4OE6md|2-NyP(DLF_-oYK{fe5AbiscsN!__)WqQ!O&o{XC4Eo>oP`T;DdzBgtH~j=Cc`k6cqVGiSEAOs8a0sJ zs26>W+CCRi54?p>q1R#lsDKMmFT9K$vB?p${|BIU!F<#?@BunCgUd9Y$F4_BiVxUc zLp{jnGjou1MJ+`ca>!Y$a0%vrZvHrZ4mF|P$IPE}4`CbP@Z;tu*g%|0JO^9iugAGu zCtKhb=0!bmF!6L${}H?Y9_A4zoG>Td4D=-4h2LTw&cKyl*8ixq0#5RcNjwF0oyS*Z zI|rgN8j7v3#a9eBi$)$D+7^p!H(?ahzP#K8(hC>NgIB6u(=*~2>R;8#Hzl*x@5UQGwqegxXz3?)+;|;t24vrvp zoTg5&5Q{M6j5)ZT!hGWWsQZ1-np$&)(P&0TcMQhiH~^=j4vtSyFTQ}j_ydl{+t>yl zJ!j7RS8y8f3G9SD&+{*1bmC)p6;m+hJF~=7FhJ$Si4otM%ydEBSB6^3W2k|g!Z7>+-SxnRm(919 z7b^9G@nPJ6qw%&KKYGO!<5n!B-*MIa1}wr+#M`kS2K-=lOCg35Z^j;2hf(Np&15JZ zow}eGjS*OkUGO7}!TZ<}BYreXk%P^N$74J$#um5(mHN}D)c=Cv==GC1XyUOa@kmsy ztw+6g_fI4=hsM`*cwq3)=E#gejW`E2fQ6_BypKxt4Qzxh|7!-Ef`P;nu{AnvH=_ph z6=va0)DorrVkS877xJG=#}qo!uogq`8fridelwKOTenG>u4 zyAwZ&n#e9}gMZs`oBx?2o`uT5b}Yx6*cF|lZ<&3+7PY3ka2{U5@i_K(bJ86{rS_a1 zyZ&MB3q-AT61K&@n1Iiq2D}NiRA*2b{2o=*skix~hc;9Njc7Vr-Z3f6MWwz7W3dEP zwM#J{KR_@16I-FjUGsw^6~_?I#K-Y0YC_%bnG8%o73)S+CJy6pZD{xV=7q%=$OjWp zDSQ^2Vl{Tt4H$qPf108TL(S+B)O8!N7w$o2puq!^v1H699){|F1GQua)X)1Z*S}1$ z^g_+F1jBF7zmPIe1MQ5( zI0&68njJKB;XV6;)(sr>8OX*A`ln$wZbmK1PpFyrHFVVPmd>c!7=lW%6SejmP)m6V zhv9dq0c5y1>We$y#o??!Vwcg8$_Gbn@1b6l;A$RNfO^4nY>ul@+wT)}#jAGwUkoAk zcXL=nFcIBw9%>*jqV8L6yVK2SE;vU=93Nalcl303)PL^>U^?+Q)X1w)pKnD!+=

rkLE|_^V1TEi{zqjRwj*AI{qZBz`QYtk zW*Clri8E0dnTyKA2K222QYY(YaQc>+h^%c!OJ5w(^fK92gL z?21!~N80fT3?{yT+K!DHJL4=EKxJ$YYFCw@s{R@D!G9r{b6Uq}=*10vO-hTf z8}Ss>gR8MC?!zv4AN7I`ekLPDsDYHD)_xJ{OJ;-JzsK%Bh04gUsB^>e*TkIs7Nen* z^hTvTA64D+FbTJyQhEkw;bl~2Mh2K#n1`CtA}qivRPkLyt#wwQS;8_@?d-!SJc!}E z-?~C08yhq+FYJNI#O1gESEFX$BFIs{TZ&L?y#h6(wWuR@J8GBg#YDV{+SUR5KM5&g z-BB4T!Hf7DIOmobR`6Ig^-F&cY^m>G>nJ@`!=h=*|o28TN8kJcrq zOdLbaG&0PjJPVcSahQt}!r1>>t8H{>gojZxxPdCd&~Q`Td8iqeqEb2yvv4D7rr%>E z`bIeFzb#Wx&v^nh0=TJ-bR|NZC7kWpUCCEe_6i=d3I~P?86{sTJhpLIt zD6#D+CD!+MaTZ6Rrl`pPr znVXiJo)(>!)+s$LF^&H`^NXiVPaZtAc=EJK#na2Cc8cy-R$4Nl`cC|D=&RGyC$&Ky+KXO-Alr1vcFm5 zRdee<8ydTfDVscV+|-JD?Q1e_zU@`x{$P5e+Ffpr2ky0*zK*GWRivzK?ae4hfUE16 eNyXEqRV|HmG_M^Q>saPmH8;T#T9usWDE>b_w$6(H diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 86434cb83d4..11ef7c6192b 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -8,6 +8,7 @@ # Christophe CHAUVET , 2017 # Christophe CHAUVET , 2013,2015 # cyrille gachot , 2019 +# David Georges, 2021 # Larlet David , 2008 # Denis Bitouzé , 2020-2021 # fgallaire , 2010 @@ -33,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" -"Last-Translator: Komiya Takeshi \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" "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" @@ -68,7 +69,7 @@ msgid "" "For security reasons, parallel mode is disabled on macOS and python3.8 and " "above. For more details, please read https://github.com/sphinx-" "doc/sphinx/issues/6803" -msgstr "" +msgstr "Pour des raisons de sécurité, le mode parallèle est désactivé sur macOS et Python3.8 et plus. Pour plus de détails, veuillez lire https://github.com/sphinx-doc/sphinx/issues/6803

" #: sphinx/application.py:228 #, python-format @@ -98,76 +99,76 @@ msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "fait" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "traductions indisponibles" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "Chargement de l'environnement pickled" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "a réussi" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "s'est terminée avec des problèmes" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "La compilation %s, %s avertissement (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "La compilation %s, %s avertissements (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "La compilation %s, %s avertissement." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "La compilation %s, %s avertissements." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "La compilation %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe de nœud %r est déjà enregistrée, ses visiteurs seront écrasés" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directive %r est déjà enregistrée, elle sera écrasée" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -175,12 +176,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -188,64 +189,64 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "impossible d'écraser le dictionnaire de configuration %r ; ignoré (utilisez %r pour modifier les éléments individuellement)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre non valide %r pour l'option de configuration %r ; ignoré" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "impossible de remplacer le paramètre de configuration %r par un type non-supporté ; ignoré" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Option de configuration inexistante : %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "L'option de configuration %r est déjà présente" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Votre fichier de configuration comporte une erreur de syntaxe : %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Le fichier de configuration (ou un des modules qu'il utilise) génère un sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -253,57 +254,57 @@ msgid "" "%s" msgstr "Votre fichier de configuration comporte une erreur de programmation : \n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Le paramètre « source_suffix » s'attend à recevoir une chaîne de caractères, une liste de chaînes de caractères ou un dictionnaire. Mais vous avez fourni un « %r »." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tableau %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Code source %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "La valeur « {current} » du paramètre « {name} » ne figure pas dans la liste des possibilités valables « {candidates} »." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Le type du paramètre de configuration « {name} » doit être {permitted} et non « {current.__name__} »." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Le paramètre de configuration « {name} » a pour type « {current.__name__} », tandis que le type par défaut est « {default.__name__} »." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r non trouvé; ignoré." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -545,104 +546,104 @@ msgstr "l'image appropriée pour le constructeur %s n'a pas été trouvée : %s" msgid "building [mo]: " msgstr "Construction en cours [mo] : " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "Écriture... " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "tous les %d fichiers po" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "cibles spécifiées pour les fichiers po %d" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "cibles périmées pour les fichiers po %d" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "tous les fichiers source" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "le fichier %r saisi en ligne de commande n'est pas présent dans le dossier source, il sera ignoré" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "le fichier %r saisi en ligne de commande n'existe pas, il sera ignoré" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d fichiers source saisis en ligne de commande" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "cibles périmées pour les fichiers sources %d" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "Construction [%s] : " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "Recherche des fichiers périmés... " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d trouvé" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "aucun résultat" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "Environnement de sérialisation" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "Vérification de la cohérence" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "Aucune cible n'est périmée." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "Mise à jour de l'environnement : " -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s ajouté(s), %s modifié(s), %s supprimé(s)" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "Lecture des sources... " -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "En attente des processus parallélisés..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "Document en préparation" @@ -678,7 +679,7 @@ msgstr "Pillow introuvable - copie des fichiers image" #: sphinx/builders/_epub_base.py:471 msgid "writing mimetype file..." -msgstr "" +msgstr "écriture du type MIME du fichier ..." #: sphinx/builders/_epub_base.py:476 msgid "writing META-INF/container.xml file..." @@ -983,7 +984,7 @@ msgstr "impossible de copier le fichier téléchargeable %r: %s" #: sphinx/builders/html/__init__.py:788 sphinx/builders/html/__init__.py:800 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" -msgstr "" +msgstr "Échec de la copie du fichier dans html_static_file : %s : %r" #: sphinx/builders/html/__init__.py:821 msgid "copying static files" @@ -1228,7 +1229,7 @@ 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 msgid "For more information, visit ." -msgstr "" +msgstr "Pour plus d'informations, visitez le site ." #: sphinx/cmd/build.py:105 msgid "" @@ -1548,7 +1549,7 @@ msgstr "Langue du projet" msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "L'extension de fichier pour les fichiers sources. En général : \".txt\" ou \".rst\". Seuls les fichiers avec cette extension sont considérés." #: sphinx/cmd/quickstart.py:284 msgid "Source file suffix" @@ -1674,7 +1675,7 @@ msgstr "si spécifié, les répertoires source et build seront séparés" #: sphinx/cmd/quickstart.py:486 msgid "if specified, create build dir under source dir" -msgstr "" +msgstr "si spécifié, créé le dossier build dans le dossier source" #: sphinx/cmd/quickstart.py:488 msgid "replacement for dot in _templates etc." @@ -1835,22 +1836,50 @@ msgstr "On ne peut pas utiliser \"lineno-match\" avec un \"lines\" non contigu " msgid "Line spec %r: no lines pulled from include file %r" msgstr "Spécification de lignes %r : aucune ligne extraite du fichier inclus %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "le toctree contient une référence à des documents exclus %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "la table des matières contient des références à des documents inexistants %r" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "entrée dupliquée trouvée dans toctree: %s" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Auteur de la section : " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Auteur du module : " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Auteur du code : " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Auteur : " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1902,7 +1931,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "fonction" @@ -1980,7 +2009,7 @@ msgid "Throws" msgstr "Déclenche" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "classe" @@ -1990,14 +2019,14 @@ msgstr "concept" #: sphinx/domains/cpp.py:7598 msgid "template parameter" -msgstr "" +msgstr "paramètre du modèle" #: sphinx/domains/javascript.py:146 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" @@ -2012,7 +2041,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" @@ -2026,20 +2055,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "module" @@ -2070,7 +2099,7 @@ msgstr "opérateur" msgid "object" msgstr "objet" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "exception" @@ -2090,84 +2119,84 @@ msgstr "Variables" msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "propriété" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "description dupliquée pour l'objet %s; l'autre instance se trouve dans %s, utilisez :noindex: sur l'une d'elles" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "plusieurs cibles trouvées pour le renvoi %r : %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (obsolète)" @@ -2389,16 +2418,6 @@ msgid "" " will be generated" msgstr "la table des matières contient une référence à un document %r qui n'a pas de titre : aucun lien ne sera généré" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "le toctree contient une référence à des documents exclus %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "la table des matières contient des références à des documents inexistants %r" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -2556,7 +2575,7 @@ msgstr "regex invalide %r dans coverage_c_regexes" #: sphinx/ext/coverage.py:127 #, python-format msgid "undocumented c api: %s [%s] in file %s" -msgstr "" +msgstr "API C non documentée : %s [%s] dans le fichier %s" #: sphinx/ext/coverage.py:159 #, python-format @@ -2683,7 +2702,7 @@ msgstr "[graphe]" #, python-format msgid "" "convert command %r cannot be run, check the image_converter setting: %s" -msgstr "" +msgstr "la commande convert %r ne peut pas être exécutée; vérifiez le paramètre image_converter: %s" #: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:70 #, python-format @@ -2895,12 +2914,12 @@ msgstr "" #: sphinx/ext/autodoc/__init__.py:2743 #, python-format msgid "Failed to get a function signature for %s: %s" -msgstr "" +msgstr "Échec pour obtenir la signature de la fonction pour %s : %s" #: sphinx/ext/autodoc/__init__.py:1569 #, python-format msgid "Failed to get a constructor signature for %s: %s" -msgstr "" +msgstr "Échec pour obtenir la signature du constructeur pour %s : %s" #: sphinx/ext/autodoc/__init__.py:1670 #, python-format @@ -2916,12 +2935,12 @@ msgstr "alias de %s" #: sphinx/ext/autodoc/__init__.py:1890 #, python-format msgid "alias of TypeVar(%s)" -msgstr "" +msgstr "alias de TypeVar(%s)" #: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 #, python-format msgid "Failed to get a method signature for %s: %s" -msgstr "" +msgstr "Échec pour obtenir la signature de la méthode pour %s : %s" #: sphinx/ext/autodoc/__init__.py:2348 #, python-format @@ -3101,12 +3120,12 @@ msgstr "" #: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "malformed string literal (missing closing quote): %s" -msgstr "" +msgstr "chaîne littérale malformée (guillemet fermant manquant) : %s" #: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "malformed string literal (missing opening quote): %s" -msgstr "" +msgstr "chaîne littérale malformée (guillemet ouvrant manquant) : %s" #: sphinx/locale/__init__.py:252 msgid "Attention" @@ -3171,7 +3190,7 @@ msgid "page" msgstr "page" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Table des matières" @@ -3289,26 +3308,26 @@ msgstr "Mis à jour le %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" +msgstr "Créé en utilisant Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format msgid "Search %(docstitle)s" msgstr "Rechercher %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Sujet précédent" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "Chapitre précédent" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Sujet suivant" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "Chapitre suivant" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 8b56d95a33e64b65f89a692eed8948a2bdf4185f..4c74d8f5fd0c88592f2b22e02d46173807e7098d 100644 GIT binary patch delta 21 ccmZo*X<(Vq!DM7Ou}g);P}k68<0d~w07Sk9J^%m! delta 21 ccmZo*X<(Vq!DL`Qu}g);K-bV<<0d~w07TRVJpcdz diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index cf50d26d64d..f932b96b825 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 412943ffb9b29df8b611162cbb0ff6a4d0d0d1d9..84dc8f213ce85d588a5f7147c824f7f44190f40a 100644 GIT binary patch delta 24 gcmZ3YzC?Y)5iTYp!^y|ER9Fmk4NW$`\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "מחבר הקטע:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "מחבר המודול:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "מחבר הקוד:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "מחבר:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "משתנה" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "פונקציה" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "מחלקה" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1987,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "מודול" @@ -2045,7 +2073,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2065,84 +2093,84 @@ msgstr "משתנים" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "חפש %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "נושא קודם" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "פרק קודם" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "נושא הבא" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "פרק הבא" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index d5feb9c170775ce42653177a6d211ec93d7dba9a..f4c2abdd1db5280e3acbdee32d2a36ad1e35741c 100644 GIT binary patch delta 26 icmaFZ&i1gKZ39Oqlab+Mu1*yeLtR6Y%|@N;e*pl2vk9vJ delta 26 icmaFZ&i1gKZ39OqlY#kUu1*ye16@Od%|@N;e*pl2%n7Oh diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 83f380eb845..56d260287aa 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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+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" @@ -76,76 +76,76 @@ msgstr "'स्थापना' को जैसा कि अभी कोन msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "संपन्न" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "अंतर्निर्मित संदेशों में उपलब्ध नहीं है" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "रक्षित स्थिति को लागू किया जा रहा है" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "असफल: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "किसी निर्माता को नहीं चुना गया, मानक उपयोग: एच्.टी.ऍम.एल." -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "सफल हुआ" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "समस्याओं के साथ समाप्त हुआ" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s निर्माण, चेतावनी %s (चेतावनी को गलती माने)| " -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "%s सम्पूर्ण, %s चेतावनी." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "%s निर्मित." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "निर्देशक कक्षा #node class# %r पहले से पंजीकृत है, इसके अभ्यागत निरस्त हो जाएंगे " -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "निर्देश %r पहले से पंजीकृत है, यह निरस्त हो जाएगा" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +153,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,64 +166,64 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "शब्दकोष विन्यास मान %r की उल्लंघन नहीं किया जा सकता, अनदेखा किया गया (प्रत्येक अवयव का मान रखने के लिए %r का उपयोग करें)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "विन्यास मान %r के लिए अमान्य संख्या %r, अनदेखा किया गया" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "असमर्थित प्रकार के साथ विन्यास मान %r का उल्लंघन नहीं किया जा सकता, अनदेखा किया गया" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "आरोहण में अज्ञात विन्यास मान %r, अनदेखा किया गया" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "ऐसा कोई विन्यास मान नहीं है: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "विन्यास मान %r पहले से विद्यमान है" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "आपकी विन्यास फाइल में रचनाक्रम की त्रुटि है: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "विन्यास फाइल (अथवा इसके द्वारा आयातित प्रभागों) द्वारा sys.exit() का आह्वान किया गया" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "विन्यास फाइल में प्रोग्राम के योग्य त्रुटि है:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "विन्यास मान `source_suffix' में अक्षर-समूह, अक्षर-समूहों की सूची, अथवा कोष की अनुमति है. लेकिन `%r' दिया गया है." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "भाग %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "चित्र %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "सारणी %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "सूची %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` विन्यास मान, {candidates} में से एक होना चाहिए, परन्तु `{current}` दिया गया है." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; अपेक्षित {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; मानक `{default.__name__}' का प्रयोग किया गया." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r नहीं मिला, अनदेखा किया गया." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -523,104 +523,104 @@ msgstr "%s निर्माता के लिए योग्य चित msgid "building [mo]: " msgstr "निर्माणाधीन [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "परिणाम लिखा जा रहा है..." -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "सभी %d पी.ओ. फाइलें" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "निर्दिष्ट %d पी.ओ. फाइलों के लक्ष्य" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "%d पी.ओ. फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "सभी स्रोत फाइलें" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "आदेश स्थान में दी गयी फाइल %r स्रोत निर्देशिका में नहीं है, उपेक्षा की जा रही है" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "आदेश स्थान में दी गयी फाइल %r का नहीं है, उपेक्षा कर दी गई" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d स्रोत फाइलें आदेश स्थान में दी " -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "निर्माणाधीन [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "अप्रचलित फाइलों को चिन्हित किया जा रहा है..." -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d मिला" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "एक भी नहीं मिला" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "स्थिति को परिरक्षित किया जा रहा है" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "संगतता की जांच की जा रही है" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "कोई प्रयोजन कालातीत नहीं है" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "स्थिति का नवीनीकरण किया जा रहा है" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s जोड़ा गया, %s बदला गया, %s हटाया गया" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "स्रोतों को पढ़ा जा रहा है..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "कर्मियों की प्रतीक्षा हो रही है" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" @@ -1813,22 +1813,50 @@ msgstr "\"lineno-match\" का प्रयोग बिना जुडी \"l msgid "Line spec %r: no lines pulled from include file %r" msgstr "लाइन ब्यौरा %r: सम्मिलित फाइल %r से कोई लाइन नहीं ली जा सकीं" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "विषय-सूची-संरचना में छोड़े गए लेखपत्र %r का सन्दर्भ है" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "विषय-सूची-संरचना में अविद्यमान लेखपत्र %r का सन्दर्भ है" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "भाग के लेखक:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "प्रभाग लेखक:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "निर्देश लेखक:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "लेखक:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1880,7 +1908,7 @@ msgid "variable" msgstr "चर पद" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "फंक्शन" @@ -1958,7 +1986,7 @@ msgid "Throws" msgstr "देता है " #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "वर्ग" @@ -1975,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधि)" @@ -1990,7 +2018,7 @@ msgstr "%s() (वर्ग)" msgid "%s (global variable or constant)" msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s लक्षण)" @@ -2004,20 +2032,20 @@ msgstr "चर " msgid "%s (module)" msgstr "%s (प्रभाग)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "पद्धति" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "आंकड़े " -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "लक्षण" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "प्रभाग" @@ -2048,7 +2076,7 @@ msgstr "चालक" msgid "object" msgstr "वस्तु" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "अपवाद " @@ -2068,84 +2096,84 @@ msgstr "चर पद " msgid "Raises" msgstr "उभारता है " -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "प्रभाग" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "अवमानित " -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "वर्ग विधि" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "स्थैतिक पद्धति" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "(अवमानित)" @@ -2367,16 +2395,6 @@ msgid "" " will be generated" msgstr "विषय-सूची-संरचना में लेखपत्र %r, जिसका कोई शीर्षक नहीं है, का सन्दर्भ है: कोई सम्बन्ध नहीं बनाया जा सकेगा" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "विषय-सूची-संरचना में छोड़े गए लेखपत्र %r का सन्दर्भ है" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "विषय-सूची-संरचना में अविद्यमान लेखपत्र %r का सन्दर्भ है" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3149,7 +3167,7 @@ msgid "page" msgstr "पृष्ठ" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "विषय-सूची" @@ -3274,19 +3292,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr " %(docstitle)s में खोजें" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "पिछला प्रकरण" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "पिछला अध्याय" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "अगला प्रकरण" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "अगला अध्याय" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 5aa2cc641d172bddb6171b3acf303494053553e6..77c9bedee5bf0e98900397a317530ff588729bc4 100644 GIT binary patch delta 21 ccmey*{GWM32a}QE#4Z&ULtR6YjhlQK0a$JaIRF3v delta 21 ccmey*{GWM32a|#M#4Z&U16@OdjhlQK0a%0wH~;_u diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 53aa1dc655e..bfec6e41a91 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 6158fd890d2a0538b6d1f0ca06929b0d3618d594..3986e0620a82cbd717a6982c8ddbbaeca96c63ba 100644 GIT binary patch delta 26 hcmaFX&iJgIaf7Y~lab+MeGL^BLtR6Y&EXpT(g1l|2lxO0 delta 26 hcmaFX&iJgIaf7Y~lY#kUeGL^B16@Od&EXpT(g1mM2loH~ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 24832c9ec7c..a04e060eeee 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmije msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "ne može se nadjačati osnovna konf. postavka %r, zanemarena je (koristite %r za postavljanje pojedinačnih elemenata)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nepravilan broj %r za konf. vrijednost %r, zanemaruje se" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "ne može se nadjačati konf. vrijednost %r zbog nepodržanog tipa, zanemareno" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Ne postoji konfiguracijska vrijednost: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Konfiguracijska vrijednost %r već postoji" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Postoji sintaksna greška u konfiguracijskoj datoteci: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Poglavlje %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Slika %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tablica %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Ispis %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nije pronađen, zanemareno je." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "Ne može se koristiti \"lineno-match\" sa nespojivom grupom \"lines\"" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specifikacija retka %r: nema redaka preuzetih iz include datoteke %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor sekcije: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor modula: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor koda:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "varijabla" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkcija" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "Baca (iznimke)" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "razred" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1987,7 +2015,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -2001,20 +2029,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2045,7 +2073,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "izuzetak" @@ -2065,84 +2093,84 @@ msgstr "Varijable" msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (zastarjelo)" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "stranica" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Traži %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Prijašnja tema" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "Prijašnje poglavlje" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Sljedeća tema" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "sljedeće poglavlje" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 14586abb8dbe9bb059ec21ff0136f86aa6ce1c58..268dea45ea9ca33e0c0eb5062f0395477a832400 100644 GIT binary patch delta 24 gcmewt{V#gMekmp+!^sDwR9Fmk4NW$`loAyN0E1%)*Z=?k delta 24 gcmewt{V#gMekmpc^T`LLR9Fmj4GlKGloAyN0E2u8*8l(j diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index d781376370b..07ec391b81e 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -78,76 +78,76 @@ msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "kész" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "nem érhető el beépített üzenetekhez" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "pickle-t környezet betöltése" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "sikertelen: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Nincs összeállító kiválasztva, az alapértelmezett használata: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "sikerült" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "problémákkal befejeződött" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "%s összeállítás." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a(z) %r csomópontosztály már regisztrálva van, a látogatói felül lesznek bírálva" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,64 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "%s. bekezdés" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "%s. ábra" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "%s. táblázat" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "%s. felsorlás" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -525,104 +525,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1815,22 +1815,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Fejezet szerző: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Modul szerző: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Kód szerző: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Szerző: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1882,7 +1910,7 @@ msgid "variable" msgstr "változó" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "függvény" @@ -1960,7 +1988,7 @@ msgid "Throws" msgstr "Dob" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "osztály" @@ -1977,7 +2005,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" @@ -1992,7 +2020,7 @@ msgstr "%s() (osztály)" msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" @@ -2006,20 +2034,20 @@ msgstr "Argumentum" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attribútum" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2050,7 +2078,7 @@ msgstr "operátor" msgid "object" msgstr "objektum" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "kivétel" @@ -2070,84 +2098,84 @@ msgstr "Változók" msgid "Raises" msgstr "Kivétel" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (elavult)" @@ -2369,16 +2397,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3151,7 +3169,7 @@ msgid "page" msgstr "oldal" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3276,19 +3294,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Keresés %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Előző témakör" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "előző fejezet" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Következő témakör" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "következő fejezet" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 6959e47d7d8597fe860c7c2594b33b3d5de2d9e2..d3288845e1e071070f2a503ac3ddfea80a3ce1ed 100644 GIT binary patch delta 26 icmeCV%iMF9dBdVMCL_biOWIUe40R1nHlJxbkPZNqg$n8b delta 26 icmeCV%iMF9dBdVMCIj=yOWIUe40H_*HlJxbkPZNqo(kyz diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index e3f21770056..d039fd54425 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -77,76 +77,76 @@ msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "selesai" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "tidak tersedia untuk built-in messages" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "memuat lingkungan yang diawetkan" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "gagal: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "berhasil" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "selesai with masalah" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "bangun %s, %s peringatan (dengan peringatan dianggap sebagai kesalahan)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s peringatan." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "kelas simpul %r sudah terdaftar, pengunjungnya akan diganti" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "pengarahan %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +154,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,64 +167,64 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "tidak dapat menulis ulang pengaturan direktori konfigurasi %r, mengabaikan (gunakan %r untuk mengatur elemen-elemen satuan)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nomor %r yang salah untuk konfigurasi nilai %r, mengabaikan" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "tidak dapat menulis ulang pengaturan konfigurasi %r dengan tipe yang tidak didukung, mengabaikan" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nilai konfigurasi %r yang tidak dikenal pada penulisan ulang, mengabaikan" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Tidak terdapat nilai konfigurasi demikian: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Nilai konfigurasi %r sudah ada" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ada kesalahan sintaksis dalam file konfigurasi Anda: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Berkas konfigurasi (atau salah satu dari modul terimpor) disebut sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,57 +232,57 @@ msgid "" "%s" msgstr "Terdapat kesalahan programmable dalam berkas konfigurasi anda:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Nilai konfigurasi `source_suffix 'mengharapkan sebuah string, daftar string, atau kamus. Tetapi `%r' diberikan." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Bab %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Gambar. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Daftar %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Nilai konfigurasi `{name}` harus salah satu dari {candidates}, tapi `{current}` diberikan." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Nilai konfigurasi `{name}' memiliki tipe `{current.__name__}'; diharapkan {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Nilai konfigurasi `{name}` bertipe `{current.__name__}', default menjadi `{default.__name__}'." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r tidak ditemukan, diabaikan." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -524,104 +524,104 @@ msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s" msgid "building [mo]: " msgstr "membangun [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "menulis keluaran... " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "semua dari %d berkas po" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "target untuk %d berkas po yang telah ditetapkan" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "target untuk %d berkas po telah usang" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "semua berkas sumber" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "berkas %r yang diberikan di command line tidak berada dalam direktori sumber, mengabaikan" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "berkas %r yang diberikan di command line tidak tersedia, mengabaikan" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d berkas sumber diberikan di command line" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "target untuk %d berkas sumber yang telah usang" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "membangun [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "mencari berkas yang kini-usang... " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d ditemukan" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "tidak ditemukan apapun" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "lingkungan pengawetan" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "memeriksa konsistensi" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "tidak ada target yang usang." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "memperbarui lingkungan:" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s ditambahkan, %s diubah, %s dihapus" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "membaca sumber... " -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "menunggu workers..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "menyiapkan dokumen" @@ -1814,22 +1814,50 @@ msgstr "Tidak dapat menggunakan \"lineno-match\" dengan rangkaian \"baris\" yang msgid "Line spec %r: no lines pulled from include file %r" msgstr "Spesifikasi baris %r: tidak ada baris yang ditarik dari berkas %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree berisi referensi ke dokumen yang dikecualikan %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "toctree berisi referensi ke dokumen yang tidak ada %r" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Penyusun bagian:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Penyusun modul: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Penulis kode:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Penyusun: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1881,7 +1909,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "fungsi" @@ -1959,7 +1987,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "class" @@ -1976,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" @@ -1991,7 +2019,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2005,20 +2033,20 @@ msgstr "Argumen" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2049,7 +2077,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "eksepsi" @@ -2069,84 +2097,84 @@ msgstr "Variabel" msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "lebih dari satu target ditemukan untuk referensi silang %r: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (obsolet)" @@ -2368,16 +2396,6 @@ msgid "" " will be generated" msgstr "toctree berisi referensi ke dokumen %r yang tidak memiliki judul: tidak ada tautan yang akan dihasilkan" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree berisi referensi ke dokumen yang dikecualikan %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "toctree berisi referensi ke dokumen yang tidak ada %r" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3150,7 +3168,7 @@ msgid "page" msgstr "laman" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Daftar Isi" @@ -3275,19 +3293,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Pencarian %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Topik sebelumnya" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "bab sebelum" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Topik berikutnya" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "bab berikutnya" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index d759f7b7804feabeebd83eb10b804c2736b3b11e..1c652b1419bc43ce61627bc12c6cd49641665166 100644 GIT binary patch delta 24 fcmaDY`C4*AIXjb);p9qo6&6EXLzB%5*}Yf+Xle&U delta 24 fcmaDY`C4*AIXjbq`Q%D=6&3?sLxar=*}Yf+XoCks diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 3d5efef170d..24b917b383d 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Kafli %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Mynd %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tafla %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Listi %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1987,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2045,7 +2073,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2065,84 +2093,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Efnisyfirlit" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Leita í %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Fyrra efni" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "fyrri kafli" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Næsta efni" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "næsti kafli" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 7597cfa5c3380a06d1e2d760df566329457eeb8f..2ce668c1004df5541dffa61ca6f256070f22b12b 100644 GIT binary patch delta 24 fcmaFq|I&Yhy9ASw;bcz<6&6EXLzB&g5*7RaZ7m0f delta 24 fcmaFq|I&Yhy9ASg`D9NC6&3?sLxatQ5*7RaZAJ%% diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 4f9413618bf..00c2fcfcdc1 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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+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" @@ -77,76 +77,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "fatto" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +154,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,64 +167,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -232,57 +232,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Sezione %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabella %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Listato %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "il primary_domain %r non è stato trovato, tralasciato." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -524,104 +524,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1814,22 +1814,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autore della sezione: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autore del modulo: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autore del codice: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autore: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1881,7 +1909,7 @@ msgid "variable" msgstr "variabile" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funzione" @@ -1959,7 +1987,7 @@ msgid "Throws" msgstr "Solleva" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "classe" @@ -1976,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" @@ -1991,7 +2019,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" @@ -2005,20 +2033,20 @@ msgstr "Parametri" msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modulo" @@ -2049,7 +2077,7 @@ msgstr "operatore" msgid "object" msgstr "oggetto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "eccezione" @@ -2069,84 +2097,84 @@ msgstr "Variabili" msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (deprecato)" @@ -2368,16 +2396,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3150,7 +3168,7 @@ msgid "page" msgstr "pagina" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3275,19 +3293,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Cerca %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Argomento precedente" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "capitolo precedente" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Argomento successivo" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "capitolo successivo" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index d6884dd9a04c521a138e9a64ddb6033c3f825648..177d95733dfadd11b6741f23286787a255b8704e 100644 GIT binary patch delta 77 zcmZ4To@L2@R delta 77 zcmZ4To@L2\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -88,76 +88,76 @@ msgstr "conf.pyにある'setup'はPythonのcallableではありません。定 msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "完了" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "翻訳が用意されていません" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "保存された環境データを読み込み中" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "ビルド %s, %s 警告." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -165,12 +165,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -178,64 +178,64 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "直列で %sします" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "conf.py が設定ディレクトリに存在しません (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "設定値の辞書 %r は上書きないため無視されました (%r を使って個別に設定してください)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "%r は設定値 %r の正しい値ではないため無視されました" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "%r は正しい型ではないため無視されました" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "%s という設定値はありません" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "設定値 %r は既に登録済みです" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "設定ファイルに文法エラーが見つかりました: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "設定ファイル(あるいはインポートしたどれかのモジュール)がsys.exit()を呼びました" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -243,57 +243,57 @@ msgid "" "%s" msgstr "設定ファイルにプログラム上のエラーがあります:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "設定値 `source_suffix' に `%r' が指定されましたが、文字列、文字列のリスト、辞書、のいずれかを指定してください。" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "%s 章" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "図 %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "リスト %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr " 設定値 `{name}` に `{current}` が指定されましたが、 {candidates} のいずれかを指定してください。" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されていますが、 {permitted} 型を指定してください。" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されています。デフォルト値は `{default.__name__}' です。" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r が見つかりません。無視します。" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -535,104 +535,104 @@ msgstr "%sビルダー向けの画像形式が見つかりません: %s" msgid "building [mo]: " msgstr "ビルド中 [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "出力中..." -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "全%d件のpoファイル" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "指定された %d 件のpoファイル" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "更新された %d 件のpoファイル" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "全てのソースファイル" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "コマンドラインに指定されたファイル %r はソースディレクトリ以下にないため無視されます" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "コマンドラインに指定されたファイル %r がないため無視されます" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "コマンドラインで指定された%d件のソースファイル" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "更新された %d 件のソースファイル" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "ビルド中 [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "更新されたファイルを探しています... " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d 件見つかりました" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "見つかりませんでした" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "環境データを保存中" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "整合性をチェック中" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "更新が必要な対象はありませんでした" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "環境データを更新中" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 件追加, %s 件更新, %s 件削除" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "ソースを読み込み中..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "ワーカーの終了を待っています..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "ドキュメントの出力準備中" @@ -1825,22 +1825,50 @@ msgstr " \"lineno-match\" は不連続な \"lines\" に対して使用できま msgid "Line spec %r: no lines pulled from include file %r" msgstr "指定された %r に一致する行がインクルードファイル %r にありませんでした" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree に除外したドキュメントへの参照が含まれています %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "toctree に存在しないドキュメントへの参照が含まれています %r" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "この節の作者: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "モジュールの作者: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "コードの作者: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "作者: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1892,7 +1920,7 @@ msgid "variable" msgstr "変数" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "の関数" @@ -1970,7 +1998,7 @@ msgid "Throws" msgstr "例外" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "クラス" @@ -1987,7 +2015,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" @@ -2002,7 +2030,7 @@ msgstr "%s() (クラス)" msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" @@ -2016,20 +2044,20 @@ msgstr "引数" msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "の属性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "モジュール" @@ -2060,7 +2088,7 @@ msgstr "演算子" msgid "object" msgstr "オブジェクト" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "例外" @@ -2080,84 +2108,84 @@ msgstr "変数" msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "%s (%s のプロパティ)" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "プロパティ" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s のオブジェクト記述、 %s の他の​​インスタンスを複製し、そのうちの1つに :noindex: を使用します" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (非推奨)" @@ -2379,16 +2407,6 @@ msgid "" " will be generated" msgstr "toctree にはタイトルのないドキュメント %r への参照が含まれています: リンクは生成されません" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree に除外したドキュメントへの参照が含まれています %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "toctree に存在しないドキュメントへの参照が含まれています %r" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3161,7 +3179,7 @@ msgid "page" msgstr "ページ" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "目次" @@ -3286,19 +3304,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "%(docstitle)s 内を検索" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "前のトピックへ" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "前の章へ" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "次のトピックへ" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "次の章へ" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 2eada1da459a8fbed47d2c50d9f8e73654f2e621..86c2be16be6c9f8d5c42183a87b5319b3f1b310a 100644 GIT binary patch delta 12514 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 q4~9S3Iigj>@6iC3OQ6xIYv%d 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 u9~A%63!bj50YeG~6~*@(Hl(=u`au8UO\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -74,76 +74,76 @@ msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "완료" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "기본 제공 메시지를 사용할 수 없습니다" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "pickle로 저장된 환경을 불러오는 중" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "실패: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "성공" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "빌드 %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "%r 노드 클래스가 이미 등록되어 있으며, 방문자를 무시합니다" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "Dictionary 구성 설정 %r을(를) 재정의할 수 없으며, 무시합니다 (개별 요소를 설정하기 위해 %r 사용)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "숫자 %r이(가) 설정값 %r에 대해 유효하지 않으며, 무시합니다" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "지원되지 않는 유형의 구성 설정 %r을(를) 재정의 할 수 없으며, 무시합니다" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "재정의 중 알 수 없는 설정값 %r, 무시합니다" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "해당 설정값이 없습니다: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "설정값 %r이(가) 이미 존재합니다" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "구성 파일에 구문 오류가 있습니다: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "구성 파일(또는 가져온 모듈 중 하나)에서 sys.exit()을 호출했습니다" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "구성 파일에 프로그램 오류가 있습니다:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "설정값 'source_suffix'는 문자열, 문자열의 목록 또는 dictionary를 예상합니다. 그러나 `%r'이(가) 지정되었습니다." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "제 %s 절" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "그림 %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "표 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "예시 %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "설정값 `{name}`은(는) {candidates} 중 하나여야 하지만, `{current}`이(가) 지정되었습니다." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, {permitted} 유형을 기대했습니다." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "설정값 `{name}'은(는) `{current.__name__}' 유형이지만, 기본값은 `{default.__name__}'입니다." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r(이)가 없으므로, 무시합니다." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "%s 빌더에 적합한 이미지를 찾을 수 없음: %s" msgid "building [mo]: " msgstr "빌드 중 [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "출력을 쓰는 중… " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "모든 %d 개의 po 파일" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "지정된 %d 개의 po 파일 대상" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "오래된 %d 개의 po 파일 대상" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "모든 원본 파일" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "명령줄에 지정된 파일 %r이(가) 원본 디렉토리에 있지 않으므로, 무시합니다" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "명령줄에 지정된 파일 %r이(가) 존재하지 않으므로, 무시합니다" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "명령줄에 지정된 %d 개의 원본 파일" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "오래된 %d 개의 원본 파일 대상" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "빌드 중 [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "오래된 파일을 찾는 중… " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d 개 찾음" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "찾은 것이 없음" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "pickle로 환경을 저장하는 중" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "일관성 확인 중" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "오래된 대상이 없습니다." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "환경을 갱신하는 중: " -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 개 추가됨, %s 개 변경됨, %s 개 제거됨" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "원본을 읽는 중… " -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "작업자를 기다리는 중…" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "기록할 문서 이름: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "문서 준비 중" @@ -1811,22 +1811,50 @@ msgstr "분리된 \"lines\" 집합과 함께 \"lineno-match\"를 사용할 수 msgid "Line spec %r: no lines pulled from include file %r" msgstr "행 지정 %r: 포함 파일 %r에서 가져온 줄이 없습니다" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "toctree glob 패턴 %r 이(가) 어느 문서와도 일치하지 않습니다" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree에 제외된 문서 %r에 대한 참조가 있음" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "toctree에 존재하지 않는 문서 %r에 대한 참조가 있음" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "toctree에서 중복 항목이 발견됨: %s" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "구역 작성자: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "모듈 작성자: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "코드 작성자: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "작성자: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr ".. acks 내용이 목록이 아닙니다" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr ".. hlist 내용이 목록이 아닙니다" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "변수" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "함수" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "예외" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "클래스" @@ -1973,7 +2001,7 @@ msgstr "템플릿 매개변수" msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" @@ -1988,7 +2016,7 @@ msgstr "%s() (클래스)" msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" @@ -2002,20 +2030,20 @@ msgstr "인수" msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "메서드" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "속성" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "모듈" @@ -2046,7 +2074,7 @@ msgstr "연산자" msgid "object" msgstr "객체" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "예외" @@ -2066,84 +2094,84 @@ msgstr "변수" msgid "Raises" msgstr "예외 발생" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "%s (%s의 특성)" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "폐지됨" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "특성" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s의 중복 객체 설명, 다른 인스턴스는 %s에 있으며, 이 중 하나에 :noindex:를 사용하십시오" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (폐지됨)" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "toctree에 제목이 없는 문서 %r에 대한 참조가 있습니다. 링크가 생성되지 않습니다" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree에 제외된 문서 %r에 대한 참조가 있음" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "toctree에 존재하지 않는 문서 %r에 대한 참조가 있음" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "페이지" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "목차" @@ -3272,19 +3290,19 @@ msgstr "Sphinx %(sphinx_version)s msgid "Search %(docstitle)s" msgstr "%(docstitle)s에서 찾기" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "이전 항목" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "이전 장" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "다음 항목" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "다음 장" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index a5f68db53098c61cb2a644e3b1971877b5dbc576..186d90c3e3281043cfa8901080f5ebd5c89c3d2f 100644 GIT binary patch delta 24 gcmexk{>Oa70Rbi>!^wvPR9Fmk4NW$`5)k4B0DGedW&i*H delta 24 gcmexk{>Oa70Rbih^T~$\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Skyriaus autorius: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Modulio autorius: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Kodo autorius: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autorius: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "kintamasis" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkcija" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "Išmeta" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klasė" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" @@ -1987,7 +2015,7 @@ msgstr "%s() (klasė)" msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" @@ -2001,20 +2029,20 @@ msgstr "Argumentais" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribudas" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modulis" @@ -2045,7 +2073,7 @@ msgstr "operatorius" msgid "object" msgstr "objektas" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "išimtis" @@ -2065,84 +2093,84 @@ msgstr "Kintamieji" msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (atmestas)" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Ieškoti %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Praeita tema" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "praeita dalis" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Kita tema" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "kita dalis" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 9b24e760d63a14c589a4815d50272d0f011dde8f..7b7573dc962e4cadcfecefc34e6789f7ddb13acd 100644 GIT binary patch delta 24 fcmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Sekcijas autors: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Moduļa autors: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Koda autors: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autors: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "mainīgais" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkcija" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "Izmet" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klase" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" @@ -2000,20 +2028,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atributs" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modulis" @@ -2044,7 +2072,7 @@ msgstr "operators" msgid "object" msgstr "objekts" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "izņēmums" @@ -2064,84 +2092,84 @@ msgstr "Mainīgie" msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "%(docstitle)s meklēšana" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "iepriekšēja tēma" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "iepriekšēja sadaļa" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "nākoša tēma" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "nākoša sadaļa" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 6bffcb2bab8bb635a0278f00e024260bb425e4d1..e6ea90912d28943fcda3d464e9af43b2a02b57dd 100644 GIT binary patch delta 24 gcmX@hf0lp4O=cz|!^yXqRagvl4NW#Pvz%fE0Be&6jQ{`u delta 24 gcmX@hf0lp4O=czo^U1fFRagvk4GlIkvz%fE0BfuVi~s-t diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 01716344656..11e4cd6a332 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Автор на секцијата:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Автор на модул:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Автор на код:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Автор: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "променлива" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "функција" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "Фрла" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "класа" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -1987,7 +2015,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2045,7 +2073,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2065,84 +2093,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index a15ea5b2f761363599604ad5f04b91fd0f062689..aaa12fb9eb15fc0442e3eee9c79d5c509dc1b6e2 100644 GIT binary patch delta 24 fcmX?TdeC%(xFC~};bcic6&6EXLzB&pf(@JiS?C5} delta 24 fcmX?TdeC%(xFC~(`D95!6&3?sLxatZf(@JiS^)-M diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index dd14165eb70..34c4cc2db70 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Seksjon forfatter: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Modul forfattar: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Kildekode forfatter: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Forfatter: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funksjon" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "Kaster" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klasse" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" @@ -1986,7 +2014,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2000,20 +2028,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attributt" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2044,7 +2072,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "untak" @@ -2064,84 +2092,84 @@ msgstr "Variabler" msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (foreldet)" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Søk %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Forrige tittel" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "Forrige kapittel" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Neste emne" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "neste kapittel" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 19000d39c1d5b66128634d440caa4f2ce5712444..180a7f0558beedabc8e5c5a32b0e86378359e5c0 100644 GIT binary patch delta 24 gcmbQ~Hq&jxF##qc!^tNER9Fmk4NW$G5YQ9?0Bw2)?f?J) delta 24 gcmbQ~Hq&jxF##q6^T{U!R9Fmj4GlJb5YQ9?0Bw^8?EnA( diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index ebe8ff61c18..7f32d7a1fde 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "सेक्सनको लेखक" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "मडुलको लेखक" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Codeको लेखक " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "लेखक" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "चल" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "फन्क्सन" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "कक्षा" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" @@ -1988,7 +2016,7 @@ msgstr "%s() (कक्षा)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -2002,20 +2030,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attribute" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "मडुल" @@ -2046,7 +2074,7 @@ msgstr "सन्चालक" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "अपबाद" @@ -2066,84 +2094,84 @@ msgstr "चलहरू" msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "(deprecated)" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "अघिल्लो विषय " -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "अघिल्लो खन्ड" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "पछिल्लो विषय" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "पछिल्लो खन्ड" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 8ad5a3fa98c90628073b0e78da7229d4bd04046e..35af5d9ff83f27e5afe04b05d8dffdbd69dd979b 100644 GIT binary patch delta 26 icmdlplX1^X#trT|Oh$&2J#|!A40R1nHW%u6D*ym^NC)Ep delta 26 icmdlplX1^X#trT|Oa|tYJ#|!A40H_*HW%u6D*ym^VF%&> diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index d5a29d869cf..6aa34bffc31 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+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" @@ -78,76 +78,76 @@ msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callabl msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "klaar" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,64 +168,64 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "configuratiemap bevat geen conf.py bestand (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "kan dictionary-instelling %r niet overschrijven in configuratie, wordt genegeerd (gebruik %r om individuele elementen te overschrijven)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ongeldig getal %r voor configuratiewaarde %r, wordt genegeerd" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "kan instelling %r niet overschrijven met zo'n waarde van een niet-ondersteund type; wordt genegeerd" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Ongeldige configuratiewaarde: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Configuratiewaarde %r was reeds aangevoerd" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "Een fout heeft zich voorgedaan in uw configuratiebestand:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Sectie %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Codefragment %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r onbekend, wordt genegeerd." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -525,104 +525,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "bestand %r zoals gegeven op de opdrachtregel is niet aanwezig in de bronmap, wordt genegeerd" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1815,22 +1815,50 @@ msgstr "\"lineno-match\" kan niet gebruikt worden met een disjuncte set \"lines\ msgid "Line spec %r: no lines pulled from include file %r" msgstr "Regels %r: geen regels gebruikt uit include-bestand %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Auteur van deze sectie: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Auteur van deze module: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Auteur van deze broncode:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Auteur: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1882,7 +1910,7 @@ msgid "variable" msgstr "variabele" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "functie" @@ -1960,7 +1988,7 @@ msgid "Throws" msgstr "Werpt" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klasse" @@ -1977,7 +2005,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" @@ -1992,7 +2020,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" @@ -2006,20 +2034,20 @@ msgstr "Argumenten" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "module" @@ -2050,7 +2078,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "exceptie" @@ -2070,84 +2098,84 @@ msgstr "Variabelen" msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (verouderd)" @@ -2369,16 +2397,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3151,7 +3169,7 @@ msgid "page" msgstr "pagina" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3276,19 +3294,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Zoek in %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Vorig onderwerp" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "vorig hoofdstuk" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Volgend onderwerp" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "volgend hoofdstuk" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index ef4e5de9cbc2d977613d7d7ad529aa00f34fef05..269d31befcecd16f512fe02e178991078a3006a8 100644 GIT binary patch delta 26 icmaF)lJVtB#tn*2Oh$&2m7P>r40R1nHhVkGGXemO%Lx(y delta 26 icmaF)lJVtB#tn*2Oa|tYm7P>r40H_*HhVkGGXemO\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" @@ -76,76 +76,76 @@ msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego de msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "gotowe" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "ładowanie zapakowanego środowiska" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "udało się" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "zakończono z problemami" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +153,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,64 +166,64 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nie można nadpisać słownikowego ustawienia konfiguracji %r, ignorowanie (użyj %r, by ustawić poszczególne elementy)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "niepoprawna liczba %r dla wartości konfiguracji %r, ignorowanie" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nie można nadpisać ustawienia konfiguracji %r nie wspieranym typem, ignorowanie" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Nie ma takiej wartości konfiguracyjnej: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Wartość konfiguracji %r już podana" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Plik konfiguracyjny (albo jeden z modułów przez niego zaimportowanych) wywołał sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "W twoim piku konfiguracyjnym jest błąd programowalny: \n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Rozdział %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Rys. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Wartość konfiguracyjna `{name}` musi być jednym z {candidates}, a podany jest `{current}`." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Nie odnaleziono primary_domain %r, zignorowano." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -523,104 +523,104 @@ msgstr "" msgid "building [mo]: " msgstr "budowanie [mo]:" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "pisanie wyjścia..." -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "wszystkie z %d plików po" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "wsztstkie pliki źródłowe" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "plik %r podany w wierszu poleceń nie znajduje się w katalogu źródłowym, ignoruję" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "plik %r podany w wierszu poleceń nie istnieje, ignoruję" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d plików źródłowych podano w wierszu poleceń" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "znaleziono %d" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "nic nie znaleziono" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1813,22 +1813,50 @@ msgstr "Nie można użyć „lineno-match” z rozłącznym zbiorem „lines”" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specyfikacja linii %r: nie wyciągnięto żadnych linii z pliku include %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor rozdziału: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor modułu: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor kodu: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1880,7 +1908,7 @@ msgid "variable" msgstr "zmienna" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkcja" @@ -1958,7 +1986,7 @@ msgid "Throws" msgstr "Wyrzuca" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klasa" @@ -1975,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1990,7 +2018,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -2004,20 +2032,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atrybut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "moduł" @@ -2048,7 +2076,7 @@ msgstr "operator" msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "wyjątek" @@ -2068,84 +2096,84 @@ msgstr "Zmienne" msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (niezalecane)" @@ -2367,16 +2395,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3149,7 +3167,7 @@ msgid "page" msgstr "strona" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Spis treści" @@ -3274,19 +3292,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Przeszukaj %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Poprzedni temat" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "poprzedni rozdział" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Następny temat" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "następny rozdział" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index be82068f62ce6fed916e016e034db66005e1f799..b0c5d8f76174fa7474f9aa1de121bd526ee4feb6 100644 GIT binary patch delta 21 ccmeyy{Ec}+2a}QE#4Z&ULtR6YjhkE;0ao+}9smFU delta 21 ccmeyy{Ec}+2a|#M#4Z&U16@OdjhkE;0apqK9RL6T diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index ebfe56de204..461e0734593 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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+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" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 649938bfa05972d9410747144abd622eae79fe1e..f1be2cc481e34977107928fdb5a0ad16f9bd741b 100644 GIT binary patch delta 12540 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 delta 12146 zcmYM)d0f?1{>Sm}MFB+?1rb4(3nC!MzNz4Xf#AO2zJf-nk>!?#+SjqN!lg;aB}Z*c z#d0j2&~&s?vqf9Yol+}HQ&TfbC$sYRdUL*y$FF~$=X378-*e9Ae9pO7X71f;`2Ed> z_PM}@%Ps!9w5+Mbm$EFY z5=UlRmLDEMPdtfnjJvTBzKd<}W7I@{ z#whe}Z&}fpf*P-CF5J8X!zm`)Xe8&EUrM3W9>z) z^d`2#z&!JM3jUY46xjvKFW*eC0KJL(pfWNT({ZHZVk{=!hqh+o&4vVG6tcZm25O-3 zsI9SaB_6_YSk~FH7}Gk4n%F%I#;7i4!r7>}65Ti-m9Y(uuc0!$s|)$p-hMy_&#*ps z-r(QWvJ!|}Iu>9g@g(Fe)^n)O9Yz(~QH;iKklnI8$iHeO50!~>)PyD?b!yq@#vKK= zdB6!ev^U>j82*Y;7|_iOl!{tGd+dwdPy@W+xCN-V)M*bCcq zC!070m62*x2JNLZIGWZ!QN{NKYHu!}X80>ArCwAF+i!J271LbQK--YTTEC)dCznx^ zaRMgc3RH2vi}83Hm5In6_5HS0KtmlfP^nvmt??LoVnW_cU8G3f=V2!N#~2 z_4&>CFFcPrj!&|D)yQhp0$)K7d<*Z>`QJw)k&Xtv%^Om%A#pd%ba7NLg?M%!Gtd@P zyaPS)J5+I9cD#qmOfdVV0Y~5!oQ%FWyr0R$0~o~k))E>c@nuvI{pA?m-)uog98Q04 zR3>UL01sgXo<<*RGC(V0)u`effs?TcDFf>=Y67Vgl0Ki0b`u)CY3PMvn2Z&efXh%1 zehZu7hfZAQy#76^sQgOJ>4`&SE*D2&J}N^iQCqnd+ug~-BBs-hni3YYHuIKaC`>CaHHcs)W!Ct<4x52eTG<8C`Mx(<_#hLs@`#Q zOvFu?fdNA;i+Z!Vp)QO?sFWUX{1!uqUBir__&9Mo2I0TaANOG}euho)dsL=xp|-%o zW@7_s1fn|HpsGI`V{tg@flr`5xD>tcB~)f=P!HaQ%FKRLsy{|;?J-nFzjpesp%!ur zHLe}ZM(KeGsI5pveXtO`w)2BB7{>C1MNA#3byA zdhTQR5Y9)geA~KCLo-PpWmeu5lPQk-QAM|Ov{}(c)C9Mp1~`Cv{UcO{&LE4jZXk2A zdX6#2dJ|?6AHh^?IM&ow7N+R@kEX#1vKHZ^cow6uZ<#r6lTjDc-%(pqi*7uP6?g|V z;Mj6=RqsLS*lIk^WM~YwA>M*|?h$+jZ{SFq#;oyX<;O9e_%|nZ-*1Yr5Y@i~qw!7b zgr_kVTQCc4Nnc!z!;qJ(UywSrhCM*qaXV_O;~(U*!xXd|(#W9U##~gYhN1Ru5w^k& z7=!yz1D;3KMA!tA@}Z~+{0F^pFM8rZ)OkOQs*T&I)8IYPOeA6=`9DlYEFIdr>sXB? zlT6Bvp&oDtHIX*$NSk)v(BkJ^Gr?%#I!Bx;=P$hKSG zVK#QRAK~{OjXCJXI_!hLV*-{?k;OO#HL?Gqw%{{VD!rzdujg>omJLQts1n=YV_1f3 zFarO?NNhFL+&6Ydr_mFe@xlmHCMq!wXJIV9grWEz>OtpF8TbP=v5;w|y4zs^ac|VA zSc1uT88vXobaQ3rAfL0XQW~o23D_R1vA%dvDLsrqcoMbOS5O(ai8+`!!~7U6#~#FM zo%jdrNZgvzFTpXWt=o*s=(m`m^WS!+*_%=5&kN6E7Ouk`|A)#{^T*A%WCkh&y-*99gn>H$PtXX#7qB_LirV{kQ0M#yY>I8F%%0_7 z8gX~j@tujGI0sX41%}}Vn26t^w$gXDsf|qRK->v!J$NP!&GcDxV-0E|AENf|3~GWt zb4*5JFrByqYJi6@7+0W<-B#2DccKQqh^j5Wxu!;#3d>9VLM9jmdFa`IcQvMURME`jvGx4a`yUpVT?e!EolCTC9 zA4Sd3`)?*r!=c0#s0Y4{+QT#03UA;r^qtQa4_2TixE-~So#=yKp)z|BHKDsU4GrA< zNn=;kURGihEyai@2hoDZwGpMRxhkfxPYR|KuF%#&F+L8gN6qh^we@A6@ z1Nz}<h|32cv3Y8FI&1+c6$nKW8S?3loUvpo(!5s`^i%u3YbG zbFXBfRyqW=RWncvdjUH!zO|Kxw%`h?YFjMi%~zSA3137#_eR)DdysDXvfe<`@2bHDJn&CP%~ZS_@>i;9QFPisFer3 zV2UdgwYTYx51^|2pQr_FM;*&k=!HQ`jbTg4zaAJ(hgMjKCHR2zhHcoI_)XM`zQjU2 zkJ%W%%*3P7hxlb|h_9hm{064uK2#=t#%`GV4^zZd{~-Tu=y;b7ZNVkffF8?@aoCQy zCn_^DQ7K=BD!v1#30*-gAa#YA$NYs%0Nx12(|J`Ctis|iQmD_*kYZ@z+mh}ycio}9V*k` zp(gsX`gQ()qoI_0yks7nifP0nFaj5%R`@DvBA+AMZk>0m`j<(4;Cf>rD#efCC|rcC z@G@%Uo-do{C8MnirIf}Pv@rwEVKz3~U@oL$R4N}p9j|$)*Plie*Ira+KF8L0+lj+A zngtc0CQyl<_$+GNB^$}Vj?*4Gw8Bfy8~rz#5W1l0SAP#GM9dd@6VQ7^Qe#s)m;B9*udmu}%mdN9~l{;ftFyp1m&4BgJ3 z-uU3?|8N=MSE#BkeZ!=7ET$4yAW5*6qqa7$*8D(OjVj7ta5UOoc9@G~EjFTKKdMR( zqxR?&#$tn=rg#!iDejM+I2)Ve-%uCJ3Mbx-s`|H36Z`;GD@RdVaS@y8{QpTq0|vZl zCK7>x#9h%BOVJ0*P^aP{oPldldlMeQ*)l7z}gCU(RQj?-}v@ix>18tyd< z49CulZ>7@EN+x4ZT#Rg+bsDGP!ne%DbPu%^UEek-tUyh84!W@x6Yw}HV}GKypwT;K zivrP`I35cz6>aVLbQ=2LT+}J3L9P579DrW?Ol=IqVB&IA24-S^+>V{lwciZT1zQjo zV;+t{O?)+KYxkitadbcVkEC&hj(BW*z|1@yHS>HNf!$G6z25N)R1vz~HUB1aG1S?(rV~Ho%Rj6}5QZT-C|g zkaz@k$FW$7HP{1xN4>xB1Cx=Fr~$`gXRJiM{%@OxQt>V-HD6*OUPGlc<3qE@k78fq z&8U>$##}5uWUgWxvxs-1Qho)Mp}4~)9)KCdi!l!OV=>x4(CA7d^&>OWN3k{WEYyS6 zU|T$miRkgMIp@i!m2}39I2U6u<`Z+giZG106g_Ywq-O=y3iQU+Y z{!DDk_*M~(B76k(;GL)s9>At}95e9(#$)IS(_etf+(1;Z4nt`xnc9om z!cR~szKj8Q7j@j4oH6||s0?SFA^+`Z6w{%Z&O;5j5mh|J5u1i){tRk`t1uV0qEh}nYA?Ocncs2&=tEqI zn#fGl7FA<7uE1=pMNRNBPQu$*g5_VE8*&RK5!(l8YZ%5V41z8ZCGuc4mX@&}GG=Hn$;ATVv6zqRQK>zLd+|qn2sd9bfAbCckvbxth1%;o*buF&CbOQ{ ziZB4XGQO2WBMK`~D_w+1_=etq=dc?_T{9~lhpK`1(G!oL20Doy@GPphLav*wN=3b1 zgj@kuZyblMe3y^>wRE`gBh<`)bZqd8`8I5Yq4bxb2CTxS_#}?Nf8e9| z6Y8QV`_+7VuEep#Cs13MearkFn2FKECvTDeG8(_pk&eS}o1b6{Q4>3fn)x-o6O)VHIA$JS_XooT4?T({;e{80vEuY#K`4ZPW+6?wDiK4cigV#0=bs zX?O}%8;yQ9{aHAW_(7b7d$0p$-Zjs87-NWE#!!486Yy(PP1%k9FvZaeHN%0}3hzgy zdLH(`=dd>(!vX02(^UIZRD25iW81$>aaCbI;;{z6rRE|%yPNvzYUk8oA@y5oL|9M^!G5I%S652A6w!SY>w3!hA&~b z&i@`7+PhPzmHP4Ttw0=#s?tf=5oe*!aV@%WH)diTDr0^PUG-bm7SoA`pfdO@=Hd&e zJwJ>(=3h$2=Mb9#<4}9o0ZEND&FNo=or%|BTRe+efwz~d{#SAgY9j4WwNi$`xD2)T zuR8soptkrP>hsOKU6!p>x1*t=>Wk%Ag>T~-Y>%rOx#};PW2ns3;at3mU2sxkSN+fP zEm*%Y)N?H#vn4U8j1;35_&BCut&hvDKd6PF>mOOBZ%jrCh!$1Bh7tH>f2!j zaUbl9wWzJ};D?_E_C{S)ZBd!XLREiH)OXAMj*I+k^MM^s$4P9=8~#EK+{oWme}NR> zY~uB(2Sx;#V#-8attA+V{ZO?q84Ix*^}Nr~jdfUnzvD>Ex0|}G!8BH(_Ubw+Ma`O- zs_lh3M)#x6`3_W3c?Y`cFQ}%d`y(Ee(p*%LJ%C!kOjOlx$4>Y@YReh~nfKZE(NNV7 zLZxmUj>Y|`ns7IFSzWO=YKs;-@gB@0zKbf(++bJz*Y0De?~?VXV|fUbnX9OkH{t*I zq0`U@nV@YwO=C12@8Eb04{_CBB=c}M@fVndNiALVKdH)4TQC79;uENhT|#9bCe&2- z0CW>qViYb$t^76A7G0}<-R3(v%%nOI6L{f1R25gEs&*-+;(MqS|B4zgt(EDYgt{kI zqi)DoP!qg`^(zi{)qjWdL1m;GmD$%ZlJTuCX=sLbFcd>0%uSeyy7LF1C(cKu@>$Hs z&8Um%du)kOk>>sFQN=eARh+M*H|}&^e;c*c*U|1pqiK|R!zgS^d_StlmZ0wRm8gL( zp^C7z+hu+WqTW}Hx)+wAGE;+P_zjN3f@tGL)PlTYOtH6*;ru7kF_I29EW|W) z6y3yb_&aK^I<+w?E=N6h2Wp@TsMr1D%te%eDymhez2AWv@FP@aj-gJ^MfAs@c$2{x zn??>DIjD2|Fsh2@qEfxp>A#0M1px`J`rrG7sN(96-Ek?ZXzNhVxreHW0RG{pn==8m z@~)_i4REx_)6g%S8K{*lLVY>xL>1i;)W9cE4{VZXRvwE=Z3(J~`=K)MIVzJsq9*bS z>hv^7GPRV6%G^`fPv`#?8cNk~sH$|eGXu58IO2R%jf_XFa0w2=9e5u$PIitL>N}$v zHGvDLm0m+l^d9=6SBj~zAgur2|BGp83#w2v`;X%ZY)*U!*P(x^@io-@d#4$n#3155 zs0nzrY(#ObIBY(;Is5!AQZk645^Q1?Slrm6n^ zs4aT}m7&e3fsUdw>5*kt9*f$-Bvj3mp^EuswDrMbG&HlnQ0G4@+x&zYgSx3^qiSR` zYOCJCSo{!mBVNVEn2=+tJp(n-A{>Te(T%%N&#%M&*dUklug0KUld4VVLwpKVZ0Av@ z;VvqriS3O&P??&5s_sRoTG@zh{1}yitEl7X-@zR7SjR%Ne2Ob3SJa+QiSVz@?-Wr~ zYtMf;x;AR#r=A{Zxy!D<8rv}~IX%stmew&nEh&xve0rBpo1Q#qYWd`8mF3ePncC6a z>yd{iK3?t~RQ^!Kv\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 06:33+0000\n" +"Last-Translator: Rafael Fontenelle \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -78,76 +78,76 @@ msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocá msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "feito" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "não disponível para mensagens internas" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "carregando ambiente com pickle" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "falha: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Nenhum compilador selecionado, usando padrão: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "bem-sucedida" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "finalizada com problemas" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilação %s, %s aviso. (com avisos tratados como erros)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilação %s, %s avisos (com avisos tratados como erros)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "compilação %s, %s aviso." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "compilação %s, %s avisos." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "compilação %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "classe de nodo %r já está registrada, seus visitantes serão sobrescritos" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "diretiva %r já está registrada, ela será sobrescrita" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,64 +168,64 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "não foi possível sobrescrever a configuração do dicionário %r ignorando (use %r para definir elementos individuais)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número inválido %r para valor de configuração %r, ignorando" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "não é possível sobrescrever a configuração %r com tipo sem suporte, ignorando" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuração desconhecido %r na sobrescrita, ignorando" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Valor de configuração inexistente: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Valor da configuração %r já presente" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Há um erro de sintaxe em seu arquivo de configuração: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "O arquivo de configuração (ou um dos módulos que ele importa) chamou sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "Há um erro de programável em seu arquivo de configuração:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "O valor da configuração “source_suffix” espera uma string, lista de strings ou dicionário. Mas “%r” é fornecido." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Seção %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Listagem %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "O valor da configuração “{name}” deve ser um entre {candidates}, mas “{current}” é fornecido." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; esperava {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "O valor da configuração “{name}” possui tipo “{current.__name__}”; o padrão é “{default.__name__}”." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r não encontrado, ignorado." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -525,104 +525,104 @@ msgstr "uma imagem adequada para o compilador %s não encontrada: %s" msgid "building [mo]: " msgstr "compilando [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "escrevendo saída… " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "todos os %d arquivos po" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "alvos para %d arquivos po que estão especificados" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "alvos para %d arquivos po que estão desatualizados" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "todos os arquivos-fonte" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "o arquivo %r fornecido na linha de comando não está dentro do diretório fonte, ignorando" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "o arquivo %r fornecido na linha de comando não existe, ignorando" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d arquivos-fonte dados na linha de comando" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "alvos para %d arquivos fonte que estão desatualizados" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "compilando [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "procurando por arquivos agora desatualizados… " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d encontrado" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "nenhum encontrado" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "tornando um ambiente pickle" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "verificando consistência" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "nenhum alvo está desatualizado." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "atualizando ambiente: " -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s adicionado(s), %s alterado(s), %s removido(s)" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "lendo fontes… " -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "aguardando por workers…" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "docnames para escrever: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "preparando documentos" @@ -1815,22 +1815,50 @@ msgstr "Não é possível usar “lineo-match” com um conjunto separado de “ msgid "Line spec %r: no lines pulled from include file %r" msgstr "Especificação de linha %r: nenhuma linha obtida do arquivo incluído %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "o padrão de glob do toctree %r não correspondeu a nenhum documento." + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree contém referência ao documento excluído %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "toctree contém referência ao documento inexistente %r" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "entrada duplicada encontrada no toctree: %s" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor da seção: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr ".. conteúdo acks não está na lista" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr ".. conteúdo hlist não está na lista" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1882,7 +1910,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "função" @@ -1960,7 +1988,7 @@ msgid "Throws" msgstr "Lança" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "classe" @@ -1977,7 +2005,7 @@ msgstr "parâmetro de modelo" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -1992,7 +2020,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2006,20 +2034,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "módulo" @@ -2050,7 +2078,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "exceção" @@ -2070,84 +2098,84 @@ msgstr "Variáveis" msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "propriedade" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noindex: para um deles" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "mais de um alvo localizado para referência cruzada %r: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2369,16 +2397,6 @@ msgid "" " will be generated" msgstr "toctree contém referência ao documento %r que não possui título: nenhum link será gerado" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree contém referência ao documento excluído %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "toctree contém referência ao documento inexistente %r" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3151,7 +3169,7 @@ msgid "page" msgstr "página" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Tabela de Conteúdo" @@ -3276,19 +3294,19 @@ msgstr "Criada usando Sphinx msgid "Search %(docstitle)s" msgstr "Buscar em %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Tópico anterior" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "capítulo anterior" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Próximo tópico" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "próximo capítulo" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 7bb2986b2f3f211f70d608e8a638f1e3e74fa9dc..30e2c69926aa1684547b93c31a60e4cb3462538f 100644 GIT binary patch delta 24 fcmbQ^Fvnp-yfBlI;p9YN6&6EXLzB&&!jpLbU$F-u delta 24 fcmbQ^Fvnp-yfBl2`Q$`l6&3?sLxato!jpLbU&;p` diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 45b41b9a14b..b6079c74ef5 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor da secção: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "função" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "Gera" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "classe" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -1988,7 +2016,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2002,20 +2030,20 @@ msgstr "Parâmetros" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "módulo" @@ -2046,7 +2074,7 @@ msgstr "operador" msgid "object" msgstr "objecto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "excepção" @@ -2066,84 +2094,84 @@ msgstr "Variáveis" msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Pesquisar %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Tópico anterior" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "capítulo anterior" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Próximo tópico" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "próximo capítulo" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 9462ffd6745e2eca8cc7647cfc3133151461196f..1d2b3d9fa2dc189fe80cbcb1a66c6737ba167c74 100644 GIT binary patch delta 24 fcmX@)cF1jmgD8`c;bbRK6&6EXLzB%}qBnQ}WBvzc delta 24 fcmX@)cF1jmgD8`M`D7\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabelul %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Cod %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autorul secțiunii:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autorul modulului:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autorul codului:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "variabilă" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funcție" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "Generează" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "clasă" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -1988,7 +2016,7 @@ msgstr "%s() (clasă)" msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2002,20 +2030,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2046,7 +2074,7 @@ msgstr "operator" msgid "object" msgstr "obiect" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "excepție" @@ -2066,84 +2094,84 @@ msgstr "Variabile" msgid "Raises" msgstr "Generează" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "(învechit)" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Caută %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Subiectul precedent" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "capitolul precedent" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Subiectul următor" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "capitolul următor" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 7c7af307f6e26d6bd63bc43586f07b7ae7edd693..ce1d36ab8164fe5315c664cc8d4a1b558618cb6f 100644 GIT binary patch delta 26 hcmX@s#CWWUaf78ilab+MYk3tGLtR6Y&B^kQ6#;XF2oV4P delta 26 hcmX@s#CWWUaf78ilY#kUYk3tG16@Od&B^kQ6#;Xe2oL}O diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index a561546cd2d..d9e09edc417 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" @@ -78,76 +78,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "готово" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "с ошибками" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,64 +168,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "в конфигурационной папке нет файла conf.py file (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Отсутствует ключ конфигурации %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Ключ конфигурации %r уже существует" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Файл конфигурации (или один из импортированных модулей) вызвал sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -233,57 +233,57 @@ msgid "" "%s" msgstr "В вашем файле конфигурации программная ошибка:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Раздел %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Рис. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Таблица %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Список %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -525,104 +525,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1815,22 +1815,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Автор раздела: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Автор кода:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Автор: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1882,7 +1910,7 @@ msgid "variable" msgstr "переменная" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "функция" @@ -1960,7 +1988,7 @@ msgid "Throws" msgstr "Бросает исключение" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "класс" @@ -1977,7 +2005,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" @@ -1992,7 +2020,7 @@ msgstr "%s() (класс)" msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -2006,20 +2034,20 @@ msgstr "Аргументы" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "модуль" @@ -2050,7 +2078,7 @@ msgstr "оператор" msgid "object" msgstr "объект" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "исключение" @@ -2070,84 +2098,84 @@ msgstr "Переменные" msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "(использование не рекомендуется)" @@ -2369,16 +2397,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3151,7 +3169,7 @@ msgid "page" msgstr "страница" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Оглавление" @@ -3276,19 +3294,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Поиск в документе «%(docstitle)s»" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Предыдущий раздел" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "предыдущая глава" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Следующий раздел" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "следующая глава" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index fd2a99f3af49ed2bf09f0593a6e3d481ec0b4bca..64fc164fa3131405196f4a60fa5e74fdf4d871a5 100644 GIT binary patch delta 24 fcmeB|>6h8CpN+}LaPmPm6&6EXLzB%f+0@tpVjl-Z delta 24 fcmeB|>6h8CpN+}DeDXmy6&3?sLxasP+0@tpVmJpx diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 6286699e1b6..e92fb4288eb 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "කේත ලේඛක:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "ලේඛක:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "විචල්‍යය" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "ක්‍රියාව" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1987,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2045,7 +2073,7 @@ msgstr "" msgid "object" msgstr "වස්තුව" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2065,84 +2093,84 @@ msgstr "විචල්‍ය" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "%(docstitle)s සොයන්න" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "පෙර මාතෘකාව" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "පෙර පරිච්ඡේදය" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "ඊළඟ මාතෘකාව" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "ඊළඟ පරිච්ඡේදය" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 62008107027677db292dd42c67c46870a0348337..d917f1c99d685bc93f48dccd608ba81ee6b9fafa 100644 GIT binary patch delta 26 icmX>yi{;2HmJPqAFc}$6{xd~|#ZcGKWV6atg$e+j9}0Q^ delta 26 icmX>yi{;2HmJPqAFd3Ln{xd~|#X#54V6)0pg$e+jI0|_H diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 1f4c4e376d8..78536e0f39e 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -75,76 +75,76 @@ msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho def msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "hotovo" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "nedostupné pre zabudované správy" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "načítanie uloženého prostredia " -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "zostavenie %s, %s upozornenie/a." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "trieda uzla %r už je registrovaná, jej metódy (visitors) budú prepísané" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktíva %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -152,12 +152,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -165,64 +165,64 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nemožno prepísať slovník nastavenia %r, ignorované (použite %r na nastavenie jednotlivých prvkov)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "neplatný počet %r pre konfiguračnú hodnotu %r, ignorované" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nemožno prepísať konfiguračné nastavenie %r s nepodporovaným typom, ignorované" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Neznáma konfiguračná hodnota: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Konfiguračná hodnota %r už existuje" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Vo svojom konfiguračnom súbore máte chybu: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Konfiguračný súbor (alebo jeden z modulov, ktoré importuje) volal sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -230,57 +230,57 @@ msgid "" "%s" msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Konfiguračná hodnota „source_suffix” očakáva reťazec, zoznam reťazcov alebo slovník, ale zadali ste „%r”." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Sekcia %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabuľka %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Konfiguračná hodnota `{name}` má byť jedno z {candidates}, ale je zadané `{current}`." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}'; očakávané {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Konfiguračná hodnota `{name}' má typ `{current.__name__}', predvolene `{default.__name__}'." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nenájdená, ignorované." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -522,104 +522,104 @@ msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s" msgid "building [mo]: " msgstr "zostavenie [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "zápis výstupu…" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "všetky z %d súborov po" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "ciele pre %d po súborov, ktoré boli zadané" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "ciele pre %d po súborov, ktoré sú zastarané" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "všetky zdrojové súbory" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "súbor %r zadaný v príkazovom riadku nie je v zdrojovom adresári, ignorujem" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "súbor %r zadaný v príkazovom riadku neexistuje, ignorujem" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "%d zdrojové súbory zadané v príkazovom riadku" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "ciele pre %d zdrojových súborov, ktoré sú zastarané" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "zostavovanie [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "hľadanie zastaraných súborov…" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d nájdené" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "nenájdené" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "ukladanie prostredia" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "kontrolovanie konzistencie" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "žiadne ciele nie sú zastarané." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "aktualizácia prostredia:" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s pridané, %s zmenené, %s odstránené" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "čítanie zdrojov…" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "čakanie na procesy…" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "príprava dokumentov" @@ -1812,22 +1812,50 @@ msgstr "Nemožno použiť „lineno-match” s rozdelenou množinou „lines”" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Riadok %r: žiadne riadky z vloženého súboru %r" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "strom obsahu obsahuje odkaz na vylúčený dokument %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "strom obsahu obsahuje odkaz na neexistujúci dokument %r" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor sekcie:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor modulu:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1879,7 +1907,7 @@ msgid "variable" msgstr "premenná" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkcia" @@ -1957,7 +1985,7 @@ msgid "Throws" msgstr "Vyvoláva" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "trieda" @@ -1974,7 +2002,7 @@ msgstr "parameter šablóny" msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" @@ -1989,7 +2017,7 @@ msgstr "%s() (trieda)" msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" @@ -2003,20 +2031,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribút" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2047,7 +2075,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "výnimka" @@ -2067,84 +2095,84 @@ msgstr "Premenné" msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "%s (vlastnosť %s)" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "vlastnosť" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "duplicitný popis objektu %s, ďalší výskyt v %s, použite :noindex: pre jeden z nich" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "nájdený viac ako jeden cieľ krížového odkazu %r: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (zastarané)" @@ -2366,16 +2394,6 @@ msgid "" " will be generated" msgstr "strom obsahu obsahuje odkaz na dokument %r, ktorý nemá názov, odkaz nebude generovaný" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "strom obsahu obsahuje odkaz na vylúčený dokument %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "strom obsahu obsahuje odkaz na neexistujúci dokument %r" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3148,7 +3166,7 @@ msgid "page" msgstr "strana" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Obsah" @@ -3273,19 +3291,19 @@ msgstr "Vytvorené pomocou Sphinx %( msgid "Search %(docstitle)s" msgstr "Hľadať v %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Predošlá téma" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "predošlá kapitola" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Ďalšia téma" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "ďalšia kapitola" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 1a03b9a302df740719b3dc39ed8dc0dea4ba0215..fff10b56f9b2f5cbcde3e2323a5d2e4f7082b559 100644 GIT binary patch delta 24 fcmeyM^+9WcIWLou;bco*6&6EXLzB&ky!;#hV~+-k delta 24 fcmeyM^+9WcIWLoe`D9C86&3?sLxatUy!;#hW2gp+ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index d7909e0d70f..e6306ed3322 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Avtor sekcije: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Avtor modula: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Avtor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funkcija" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "razred" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1986,7 +2014,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2044,7 +2072,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "izjema" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (zastarelo)" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Išči %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Prejšnja tema" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "prejšnje poglavje" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Naslednja tema" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "naslednje poglavje" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 50993c9f8a7..b7293d0aa05 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-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index ca33f2a52bc0b6419be90ca49da653e8201cb83b..311c12ec20fbd6464004dfa25a07fdf0498560f2 100644 GIT binary patch delta 26 icmdn>f@RkWmJRzBGZ`69KCoDY#ZcGKWb=!~K@$L{e+$F_ delta 26 icmdn>f@RkWmJRzBGZ~mqKCoDY#X#54VDpQ`K@$L{m\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funks msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "u bë" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "s’është i passhëm për mesazhe të brendshëm" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "dështoi: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "S’u përzgjodh montues, po përdoret parazgjedhja: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "doli me sukses" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "u përfundua me probleme" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "montimi %s, % sinjalizim (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "montimi %s, %s sinjalizime (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "montimi %s, %s sinjalizime." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "montimi %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r e nyjeve është e regjistruar tashmë, vizitorët e saj do të anashkalohen" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "s’mund të anashkalohet rregullim formësimi fjalorthi %r, po shpërfillet (për të ujdisur elemente individuale, përdorni %r)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "numër %r i pavlefshëm për vlerë formësimi %r, po shpërfillet" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "s’mund të anashkalohet rregullim formësimi %r me një lloj të pambuluar, po shpërfillet" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "vlerë e panjohur formësimi %r te anashkalimi, po shpërfillet" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "S’ka vlerë të tillë formësimi: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ka një gabim sintakse te kartela juaj e formësimit: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Kartela e formësimit (ose një nga modulet që ajo importon) thirri sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "Ka një gabim të programueshëm te kartela juaj e formësimit:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Vlera e formësimit `source_suffix' pret një varg, një listë vargjesh, ose një fjalor. Por është dhënë `%r'." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Ndarja %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Vlera e formësimit `{name}` duhet të jetë një nga {candidates}, por është dhënë `{current}`." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}'; pritej {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}', si parazgjedhje merr `{default.__name__}'." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "s’u gjet primary_domain %r, po shpërfillet." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "s’u gjet figurë e përshtatshme për montuesin %s: %s" msgid "building [mo]: " msgstr "po montohet [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "po shkruhet përfundim… " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "krejt kartelat po %d" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "objektiva për kartela po %d që janë specifikuar" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "objektiva për kartela po %d që janë të papërditësuara" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "krejt kartelat burim" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "kartela %r e dhënë te rresht urdhrash s’gjendet te drejtori burim, po shpërfillet" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "kartela %r e dhënë te rresht urdhrash s’ekziston, po shpërfillet" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "kartela burim %d dhënë te rresht urdhrash" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "objektiva për kartela burim %d që janë të papërditësuara" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "po montohet [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "po shihet për kartela të sapovjetruara… " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "U gjet %d" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "s’u gjet gjë" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "po kontrollohet njëtrajtshmëria" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "s’ka objektiva të vjetruar." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "po përditësohet mjedisi: " -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s të shtuar, %s të ndryshuar, %s të hequr" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "po lexohen burime… " -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "po pritet për workers…" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "emra dokumentesh për shkrim: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "po përgatiten dokumente" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree përmban referencë ndaj dokumenti %r të përjashtuar" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "toctree përmban referencë ndaj dokumenti %r që s’ekziston" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Autor ndarjeje: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Autor moduli: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Autor kodi: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Autor: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "ndryshore" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funksion" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klasë" @@ -1972,7 +2000,7 @@ msgstr "parametër gjedheje" msgid "%s() (built-in function)" msgstr "%s() (funksion i brendshëm)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (metodë %s)" @@ -1987,7 +2015,7 @@ msgstr "%s() (klasë)" msgid "%s (global variable or constant)" msgstr "%s ( ndryshore globale ose konstante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2001,20 +2029,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metodë" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "të dhëna" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2045,7 +2073,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "përjashtim" @@ -2065,84 +2093,84 @@ msgstr "Ndryshore" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (te moduli %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (te moduli %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (ndryshore e brendshme)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (klasë e brendshme)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klasë te %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metodë klase %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "%s (veti %s)" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metodë statike %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Tregues Modulesh Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Nxjerrë nga përdorimi" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "metodë klase" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "metodë statike" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "veti" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "përshkrim i përsëdytur objekti për %s, instancë tjetër te %s, përdorni :noindex: për një prej tyre" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "për ndërreferencën %r u gjet më shumë se një objektiv: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "toctree përmban referencë ndaj dokumenti %r që s’ka titull: s’do të prodhohet ndonjë lidhje" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree përmban referencë ndaj dokumenti %r të përjashtuar" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "toctree përmban referencë ndaj dokumenti %r që s’ekziston" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "faqe" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Tryeza e Lëndës" @@ -3271,19 +3289,19 @@ msgstr "Krijuar duke përdorur Sphinx\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" @@ -74,76 +74,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "готово" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "Неуспешно: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "са грешкама" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +151,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,64 +164,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -229,57 +229,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Одељак %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Сл. %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Табела %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Списак %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -521,104 +521,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "све изворне датотеке" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "ажурирање окружења: " -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "припремање докумената" @@ -1811,22 +1811,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Аутор одељка: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Аутор модула: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Аутор кода: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Аутор: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1878,7 +1906,7 @@ msgid "variable" msgstr "променљива" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "функција" @@ -1956,7 +1984,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "класа" @@ -1973,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (уграђена функција)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метода)" @@ -1988,7 +2016,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "%s (глобална променљива или константа)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -2002,20 +2030,20 @@ msgstr "Аргументи" msgid "%s (module)" msgstr "%s (модул)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "метода" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "модул" @@ -2046,7 +2074,7 @@ msgstr "оператор" msgid "object" msgstr "објекат" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "изузетак" @@ -2066,84 +2094,84 @@ msgstr "Променљиве" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (у модулу %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (у модулу %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (уграђена променљива)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (уграђена класа)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (класа у %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метода класе %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статичка метода %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Застарело" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "метода класе" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "статичка метода" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2365,16 +2393,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3147,7 +3165,7 @@ msgid "page" msgstr "страна" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Садржај" @@ -3272,19 +3290,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Претходни одељак" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "претходна глава" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Следећи одељак" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "наредна глава" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 393e54923b5a880f7434d7c2e1a26c53b9ce5ec1..0ab0ac2fb72a23af09b358fe5125b9129ddbcf2f 100644 GIT binary patch delta 21 dcmcb}a*<_12a}QE#4Z&ULtR6Yjhp5(0svA72QdHu delta 21 dcmcb}a*<_12a|#M#4Z&U16@Odjhp5(0svAT2QUBt diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 2c550cd1cd0..0b3f71612d2 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 19bebd871f465cb9c356e19acb112efd14848765..7568028052ed56c4e977dc840e44286da8922746 100644 GIT binary patch delta 21 dcmX@Za)xC>2a}QE#4Z&ULtR6YjhkjM0sv7q2O2a|#M#4Z&U16@OdjhkjM0sv7=2O$6e diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index e4f8f08cae5..3aa08358185 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 96fff71fff4ddea78134d8044ce7902b92b208dc..0efa1d95bb62edcff622227d08305d2e89219999 100644 GIT binary patch delta 24 gcmdmFy2*6IPXQ()!^yt|R9Fmk4NW#H3-)sY0CN5Z^#A|> delta 24 gcmdmFy2*6IPXQ(a^U1#jR9Fmj4GlIc3-)sY0CN`y^Z)<= diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 76d04975b14..5b6e7faf25a 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Sektionsförfattare" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Modulförfattare" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Källkodsförfattare" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Upphovsman:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "funktion" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "Kastar" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "klass" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -1986,7 +2014,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2000,20 +2028,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modul" @@ -2044,7 +2072,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "undantag" @@ -2064,84 +2092,84 @@ msgstr "Variabler" msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Sök %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Föregående titel" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "Föregående kapitel" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Nästa titel" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "Nästa kapitel" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 65d82904db8fe71698586670d2c45ded0c88d13e..6239074dbd1b6fe8ae44a73695d0933912b6d971 100644 GIT binary patch delta 21 dcmey)@||VEHYOv(i91wS40R1nHa?in2moD72mb&7 delta 21 dcmey)@||VEHYNk}i91wS40H_*Ha?in2moDT2mSy6 diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index ec39ccb92b7..f85de50a0af 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d கண்டு ப்பிடித்த விட்டது" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1987,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2045,7 +2073,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2065,84 +2093,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index b74560d0e1f880aac490f6fd25ffced625fdc8fc..d1d688b673b09f37c30b8cfe8700c982bc859b85 100644 GIT binary patch delta 21 ccmeyw{E2x&2a}QE#4Z&ULtR6Yjhh@80ai>05&!@I delta 21 ccmeyw{E2x&2a|#M#4Z&U16@Odjhh@80ajuM5dZ)H diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 13534d99327..16e5ef26667 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index d26277e2f0235b59ef3bdc55af287aa082eb5f79..9cb2bbcf7e2e074476369450d550633df5b0cf22 100644 GIT binary patch delta 26 icmbPsih0^8<_$cxOh$&2`D#^I40R1nHk;KxNCyCY@d+CM delta 26 icmbPsih0^8<_$cxOa|tY`D#^I40H_*Hk;KxNCyCZ3JDqj diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index cd806bb83cd..16fd12a4455 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" @@ -76,76 +76,76 @@ msgstr "Şu anda conf.py dosyasında tanımlanan 'kurulum' çağrılabilir bir P msgid "loading translations [%s]... " msgstr "çeviriler yükleniyor [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "bitti" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "yerleşik iletiler için kullanılamaz" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "derin temizlenen ortam yükleniyor" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "başarısız olan: %s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "Seçilen oluşturucu yok, varsayılan kullanılıyor: html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "başarılı oldu" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "sorunlarla tamamlandı" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hata olarak kabul edilen uyarılarla)." -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hatalar olarak kabul edilen uyarılarla)." -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "yapım %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "düğüm sınıfı %r zaten kayıtlı, ziyaretçileri geçersiz kılınacaktır" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +153,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,64 +166,64 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config dizini bir conf.py dosyası içermiyor (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "sözlük yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor (tek tek öğeleri ayarlamak için %r kullanın)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "geçersiz sayı %r; yapılandırma değeri %r için; yoksayılıyor" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "desteklenmeyen tür ile yapılandırma ayarı %r geçersiz kılınamaz, yoksayılıyor" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "geçersiz kılmada bilinmeyen yapılandırma değeri %r, yoksayılıyor" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "Böyle bir yapılandırma değeri yok: %s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "Yapılandırma değeri %r zaten mevcut" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Yapılandırma dosyanızda bir sözdizimi hatası var: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Yapılandırma dosyası (veya içe aktarılan modüllerden biri) sys.exit() olarak adlandırılır" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -231,57 +231,57 @@ msgid "" "%s" msgstr "Yapılandırma dosyanızda programlanabilir bir hata var:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "'source_suffix' yapılandırma değeri bir dizgi, dizgiler listesi ya da sözlük bekler. Ama '%r' verilir." -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "Bölüm %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "Şekil %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "Tablo %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "Listeleme %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` yapılandırma değeri, {candidates} geğerlrinden biri olmak zorundadır, ancak `{current}` değeridir." -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip; beklenen {permitted}." -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "`{name}' yapılandırma değeri `{current.__name__}' türüne sahip, vassayılanları `{default.__name__}'." -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r bulunamadı, yoksayıldı." -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -523,104 +523,104 @@ msgstr "%s oluşturucu için uygun bir resim bulunamadı: %s" msgid "building [mo]: " msgstr "[mo] oluşturuluyor: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "çıktı yazılıyor..." -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "%d po dosyasının tümü" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "belirtilen %d po dosyası için hedefler" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "güncel olmayan %d po dosyası için hedefler" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "tüm kaynak dosyaları" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "komut satırında verilen %r dosyası kaynak dizinin altında değil, yoksayılıyor" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "komut satırında verilen %r dosyası mevcut değil, yoksayılıyor" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "komut satırında verilen %d kaynak dosyası" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "güncel olmayan %d kaynak dosyası için hedefler" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "[%s] oluşturuluyor:" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "şimdi güncel olmayan dosyalar aranıyor..." -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "%d tane bulundu" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "hiç bulunamadı" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "ortam derin temizleniyor" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "tutarlılık denetleniyor" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "hiçbir hedef güncel değil." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "güncellenen ortam:" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s eklendi, %s değiştirildi, %s kaldırıldı" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "kaynaklar okunuyor..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "çalışanlar için bekleniyor..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "yazmak için belge adları: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "belgeler hazırlanıyor" @@ -1813,22 +1813,50 @@ msgstr "Ayrık bir \"satır\" kümesiyle \"lineno-match\" kullanılamıyor" msgid "Line spec %r: no lines pulled from include file %r" msgstr "Satır özelliği %r: dahil edilen %r dosyasından çekilen hiç satır yok" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree, hariç tutulan %r belgesine başvuru içeriyor" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "toctree, varolmayan %r belgesine başvuru içeriyor" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Bölümü hazırlayan: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Modülü hazırlayan: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Kodu hazırlayan: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Hazırlayan: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1880,7 +1908,7 @@ msgid "variable" msgstr "değişkeni" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "işlevi" @@ -1958,7 +1986,7 @@ msgid "Throws" msgstr "Şunu verir: " #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "sınıfı" @@ -1975,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (yerleşik işlev)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s yöntemi)" @@ -1990,7 +2018,7 @@ msgstr "%s() (sınıf)" msgid "%s (global variable or constant)" msgstr "%s (genel değişken veya sabit)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s özniteliği)" @@ -2004,20 +2032,20 @@ msgstr "Bağımsız Değişkenler" msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "yöntemi" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "özniteliği" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "modülü" @@ -2048,7 +2076,7 @@ msgstr "işleç" msgid "object" msgstr "nesne" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "özel durum" @@ -2068,84 +2096,84 @@ msgstr "Değişkenler" msgid "Raises" msgstr "Harekete geçirir" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (yerleşik değişken)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (yerleşik sınıf)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içindeki sınıf)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf yöntemi)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s sabit yöntemi)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "modülleri" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Kullanım dışı" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "sınıf yöntemi" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "sabit yöntemi" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s kopya nesne açıklaması, %s içindeki diğer örnek, bunlardan biri için :noindex: kullanın" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "çapraz referans %r için birden fazla hedef bulundu: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (kullanım dışı)" @@ -2367,16 +2395,6 @@ msgid "" " will be generated" msgstr "toctree, başlığı olmayan %r belgesine başvuru içeriyor: hiç bağlantı oluşturulmayacaktır" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree, hariç tutulan %r belgesine başvuru içeriyor" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "toctree, varolmayan %r belgesine başvuru içeriyor" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3149,7 +3167,7 @@ msgid "page" msgstr "sayfa" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "İçindekiler" @@ -3274,19 +3292,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "%(docstitle)s ara" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Önceki konu" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "önceki bölüm" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Sonraki konu" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "sonraki bölüm" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 1fc4b4dd09f44a6c29a97bf7a1e7c77b01694f7d..eb96cb9dd40e6b002116aed70da5d88e5f61e79e 100644 GIT binary patch delta 24 fcmeA-?Kj=eDVh#6&3?sLxar{yyd(AYLN$R diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 9259a9616c7..0959a7bc6aa 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+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" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Автор секції: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Автор: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "функція" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "клас" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -1987,7 +2015,7 @@ msgstr "%s() (клас)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" @@ -2001,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "модуль" @@ -2045,7 +2073,7 @@ msgstr "оператор" msgid "object" msgstr "об'єкт" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "виняткова ситуація" @@ -2065,84 +2093,84 @@ msgstr "" msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (застарілий)" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Пошук %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Попередній розділ" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "Попередній розділ" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Наступна тема" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "наступний розділ" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 823cbad19634c0279e547d2ff19418e75085ec64..1c663ccf8a559207f6f8d9ae3f36c18325328edf 100644 GIT binary patch delta 21 ccmeys{DFBw2a}QE#4Z&ULtR6YjhpNk0af@13;+NC delta 21 ccmeys{DFBw2a|#M#4Z&U16@OdjhpNk0agwN3jhEB diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 76ebd193d44..072523245c2 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index ec9dd26036fb15e55c74c5ef68cdb108d4ad1eb4..898bc374edc493af40c5a44696d90ed4233ae858 100644 GIT binary patch delta 24 gcmX@7cTR7^LS7~#!^w+zRagvl4NW$m=56K#0B!UL0RR91 delta 24 gcmX@7cTR7^LS7~V^T~^ORagvk4GlJ*=56K#0B#Kk00000 diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 9558c6d8d83..f34540d8a9c 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" @@ -73,76 +73,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,64 +163,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,104 +520,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1810,22 +1810,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "Tác giả mục:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "Tác giả mô-đun:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "Tác giả mã lệnh:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "Tác giả:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1877,7 +1905,7 @@ msgid "variable" msgstr "biến" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "hàm" @@ -1955,7 +1983,7 @@ msgid "Throws" msgstr "Ném" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "lớp" @@ -1972,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" @@ -1987,7 +2015,7 @@ msgstr "%s() (lớp)" msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" @@ -2001,20 +2029,20 @@ msgstr "Đối số" msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "thuộc tính" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "mô-đun" @@ -2045,7 +2073,7 @@ msgstr "toán tử" msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "ngoại lệ" @@ -2065,84 +2093,84 @@ msgstr "Các biến" msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -2364,16 +2392,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3146,7 +3164,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3271,19 +3289,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "Tìm %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "Chủ đề trước" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "chương trước " -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "Chủ đề tiếp" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "chương tiếp" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 0629892b602fe7b95c7fd53c60edff532eef00ed..dc6884ed394870562795265ad40245f23a092957 100644 GIT binary patch delta 21 ccmeys{DFBw2a}QE#4Z&ULtR6YjhpNk0af@13;+NC delta 21 ccmeys{DFBw2a|#M#4Z&U16@OdjhpNk0agwN3jhEB diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index e0e1628daf6..003d48ba96e 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index cf81352eebbe5d790ed620c478ab05d7a7e80a92..6ca2c1d5d2230803bf82ccccb5ff0cba67c79a89 100644 GIT binary patch delta 26 icmezPp84Z@<_)TonT!l4t4~&8G1N6Q+3Y`gQ3?Q@0t#mU delta 26 icmezPp84Z@<_)TonGDP)t4~&8G0-(M*z7-fQ3?Q@8wzFs diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 98e359e3604..531ccd855ff 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -87,76 +87,76 @@ msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对 msgid "loading translations [%s]... " msgstr "正在加载翻译 [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "完成" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "没有内置信息的翻译" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "加载 pickled环境" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "失败:%s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "未选择构建程序,默认使用:html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "完成但存在问题" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "构建 %s, %s 警告。" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "构建 %s,%s 警告。" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "构建 %s." -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "节点类 %r 已注册,其访问者将被覆盖" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已注册,将被覆盖" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "角色 %r 已注册,将被覆盖" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -164,12 +164,12 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "扩展 %s 不是并行读取安全的" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -177,64 +177,64 @@ msgid "" "explicit" msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "扩展 %s 不是并行写入安全的" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "执行顺序 %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "配置目录中缺少 conf.py 文件 (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "不能覆盖字典配置项 %r,已忽略 (请用 %r 设置单个字典元素)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "无效的数值 %r 用于配置项 %r,已忽略" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "配置项 %r 覆盖值类型不支持,已忽略" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆盖中包含未知配置项 %r ,已忽略" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "不存在的配置项:%s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "配置项 %r 已存在" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "配置文件中存在语法错误: %s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "配置文件(或配置文件导入的模块)调用了 sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -242,57 +242,57 @@ msgid "" "%s" msgstr "配置文件中有程序上的错误:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "配置值\"source_后缀\"需要字符串、字符串列表或字典。但给出\"%r\"。" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "节 %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "图 %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "配置项 `{name}` 必须设置为 {candidates} 之一,但现在是 `{current}` 。" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "配置值\"[name]\"的类型为\"[当前._name];但\"当前\"为\"当前\"。\"当前\"为\"当前\"。\"当前\"为\"当前\"。=================================预期 [允许]。" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "配置项 `{name}' 的类型是 `{current.__name__}',默认为 `{default.__name__}'。" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "未找到 primary_domain %r,已忽略。" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -534,104 +534,104 @@ msgstr "没有找到适合 %s 构建器的图像:%s" msgid "building [mo]: " msgstr "构建 [mo]: " -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "写入输出... " -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "所有的 %d po 文件" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "指定了 %d 个 po 文件的目标文件" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "%d 个 po 文件的目标文件已过期" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "所有源文件" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "源文件目录下没有命令行给出的 %r 文件,将被忽略" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "命令行给出的 %r 文件不存在,将被忽略" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "命令行给出了 %d 个源文件" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d 个源文件的目标文件已过期" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "构建 [%s]: " -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "查找当前已过期的文件... " -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "找到 %d 个" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "没有找到" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "pickling环境" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "检查一致性" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "没有过期的目标文件。" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "更新环境: " -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "已添加 %s,%s 已更改,%s 已移除" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "阅读源... " -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "等待工作线程……" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "写入文档:%s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "准备文件" @@ -1824,22 +1824,50 @@ msgstr "不能在互斥的 \"lines\" 集合上使用 \"lineno-match\" 选项" msgid "Line spec %r: no lines pulled from include file %r" msgstr "行规范 %r:未能从包含文件 %r 中拉取行" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree已包含对排除文档的引用 %r" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "目录树引用的文档 %r 不存在" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "节作者: " -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "模块作者: " -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "代码作者: " -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "作者: " +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1891,7 +1919,7 @@ msgid "variable" msgstr "变量" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "函数" @@ -1969,7 +1997,7 @@ msgid "Throws" msgstr "抛出" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "类" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" @@ -2001,7 +2029,7 @@ msgstr "%s() (类)" msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" @@ -2015,20 +2043,20 @@ msgstr "参数" msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "属性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "模块" @@ -2059,7 +2087,7 @@ msgstr "运算符" msgid "object" msgstr "对象" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "例外" @@ -2079,84 +2107,84 @@ msgstr "变量" msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "重复的对象描述%s ,另一实例出现在使用 noindex 中:对它们其中的一个 %s" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr " (已移除)" @@ -2378,16 +2406,6 @@ msgid "" " will be generated" msgstr "目录树引用的文档 %r 缺少标题:不会生成链接" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "toctree已包含对排除文档的引用 %r" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "目录树引用的文档 %r 不存在" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3160,7 +3178,7 @@ msgid "page" msgstr "页" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "目录" @@ -3285,19 +3303,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "搜索 %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "上一个主题" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "上一章" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "下一个主题" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "下一章" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index b3e5cea932cda58eda73e0bcb845c4f16b863d34..b7ea58341f44b3d78980106a703793604d78f498 100644 GIT binary patch delta 21 ccmeyz{EvA;2a}QE#4Z&ULtR6YjhlQJ0a!!_HUIzs delta 21 ccmeyz{EvA;2a|#M#4Z&U16@OdjhlQJ0a#iGH2?qr diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 527b83671fc..b9e85e7f2ea 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 2505409731f4de07a33e7a87134d8a79926ed393..fe67222957ad1f04b7f41692d04c0aa84d71edc0 100644 GIT binary patch delta 21 ccmeBW>1CPF!DM7Ou}g);P}k68jWdHyG delta 21 ccmeBW>1CPF!DL`Qu}g);K-bV<pF diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index af8971fb5f4..a329153e890 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/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-07 00:10+0000\n" -"PO-Revision-Date: 2021-10-10 00:10+0000\n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" @@ -72,76 +72,76 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,64 +162,64 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -519,104 +519,104 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "" @@ -1809,22 +1809,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1876,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "" @@ -1954,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "" @@ -1971,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1986,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2000,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "" @@ -2044,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "" @@ -2064,84 +2092,84 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "" @@ -2363,16 +2391,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3145,7 +3163,7 @@ msgid "page" msgstr "" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "" @@ -3270,19 +3288,19 @@ msgstr "" msgid "Search %(docstitle)s" msgstr "" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 8806ba5b73f67dafb648d9263d45459d28bd996e..2b4ed13520a568b60bea41a75700331b4a2da687 100644 GIT binary patch delta 4086 zcmXZedvI0N702=2ND@haNK8UrBsV;gm;`b!L@=T;O$hS*0}7Qv2u*k;1dH+tH0Vi* z1)@CEpoKu>l`3GTfG7iLp$}=tXpKw@bm(B6p;|kNMU65lIMeUXz5e>_waz*FvGzXa z-m~3Nf9#Gr_F6*l&JUc6s&%dj&o6K;!8tc|k#jLP7mIKKZo+49GNvweZiw=jgd4FR z?#AJG2(z#Uqw!Nr#9kbTF-yFuOI+akk|-b%k0o}Y+?;_LU?FN^>o6T#F&R5i&vn`L zzn~_32{qttb3f_rfi^p4BT^Bglp9?EU48ms2!JRk`yKorZz{{9X@7!JZ6>7!V zOP!0wBAkOIsD8GiCh#)mVHc+2Rh)n~F&8U>27hBcDzP48@Su4FRiWcJ5`T*-;m4?s zZ=p&)Y#Eco$#^d=M)k8FRk=er7*ARL5~?D>do;>ue2(fM{D_?ab1wEHzYJB%b*PTp zEZ>d~5WkE=@gp<-r@p^ptRO!H$KW=ciGN1=30(Sezrq~U0EL)>RX7Rf;xv2-HSm{q z{ielb_De!E)sp->tR_o6YU!3#dwTpicX1sE*!3 zt>ir%i2YYNHxIKh8y`natOHe%)2OZKMm_&2>P)%S)IWrAG?rr_YOi;r9z0~8vizH< z6=Vn!Hu~!!v(%hnHkePE9jLuOi6ij+M(VGb_FwBK5JJTx%yQHNKSF&6)}v;=A2s3E zQ7inD*=?RT|AD&iU#OCQV)?I7U&vd5B{J6eFWnH-17pqcIF@)iYUQn{j(&v`@u)#!ghQJ-Q#=%YMZL~tsD;#EmfrvMH1xo3^MH96wen*Y zpTSMU=TNWH)SvqaJ&J>g_v7vOdyK<3F&h7l{qeG0{|MuWKf@ZvceiL1WAz5V(ru`L z-@s%%k6HL1)ZvS6@rN`GHSr?UmW{^wct6%*2dZ*0Pf}GJhni?Js&X%4P)MVfhDwhL(K!?Tv}L4A@hqB@G*%)!L_aSXPgR^Ek`cpXRM=vMz@v;_71 zkyh$oMB@qx4bb-~zo%)ac(OSMHL<0bfz6nQd+-iChr0hFs^bq)3mEjY|53|AtM(61CzFF$cfE6inLUCs2s`a{Un1(Q?%Dn^Dhi$Dw!@`{7koKi5$c z9=O#{v=nugf=M*eXv{-()QCm+1m@!_I1De~2>iz4yluY2sW^xHD%8O5q9)vns#M%| zf3|Y55Ah1rmN#OY-v1pmG}FDPQvMoMsxznwT}SQd4b-U}@r?hXZ9r|wH>mp(p7lRI zDX0mI#CWX22u{axY{3b54iokM$3N#g$U;qII40sK3}cn$*Pu$+f(7`B(?6Gl6~q}9SDTA)68U8q!IL|we;JMcl28YEyZp>c%reyBoQSDdi({|}wenYS z9KMgqn9=T67{R-Ur(p;iQ489MeQ_^pyubXu_i^t7^z5Xm6^akz%4V654pMSqoG0XAi0oCCa%*NlK4owe+ z(CzmV$w9q6`KZb~jCy_*Mq?Z5@a{srzHgad;P=1(=?DCUQq&i(1~c#}RApX5?b%;Z zAC#-8j{b+LNXkLK(!r<+6yOl7#0p%Ds^noz!xO02^&K2iLgOY49geI{ztX!gL_7<% zS8Grc+K5`&ffJLmlPaS|McU@q=H4DD35CP=M#61dYX_xGS^h}*_=I R)sI}&@O|n;S8bn){{!_xRwMub delta 4083 zcmXZddvKK18OQO{u!KvHl-xr|SV%%HBq7nTv;;7$qd+5R33W+=yH8W=y`{x$(+l60XA$ z*p9h)2(z#c2jj<>fCD%R2QBp`FLhBjj6@!ZI4rXtrkl5;2B<|%tQkk+2292-)O$Vl z`(IHLK93sEMVw2AL`=kDi)UI~6Nx%^9Y3rfk&3N24tHV&_FxWP#(qp&=3D`Ofm-pH z2b>#%1z3$`sD8GfCU6k*um{ud0?x)OI00{r{?tEsKPs^rW3kgbf~wFlEWwvhCHxT8 z@l{mG$35s=2F}5$xCGVDK2+rnVJ058{CQMGqVLd{LE}?Y2gMKB888>(2=dENrEErZ zyv_2v@kZi# zs0jpD`9qk8s#qA6Uxb}lj|mvt;1`yTinCGAg|Hl_E6@0DmHn{Z++yxPRiXoR+JA@Y z=ylXe-oa5gywSOPaSV>dM^O{&Kvm=fYHLoR-v1bNrmkT$NMlG7UjXK#_PQPQ;vw_6 zb^LO8YlWS4Xq%s#+NbX6-Q zwqhFb(-xn=dBkrcSAi>7%NK#W@ov0^x8VF%=N9Pu@1ilA#5brLZRXGT#BdqvDt-dX z@hEBq@1Z89Pv?6^Zaf>gaCKj{7e+}`NL|l#|u?qG30@Puw$1&K1)9^{0kAK6-n7fhs z>wy~TssUS2E8dQ=cm&nqF;s^yTfPr<@cY<{dj1@$isR4jW6Q}ynyQG z5^BODxB7{OP-iJRn?^c~YE(y!ScGdZAD_h>Jd4HnmBl%~^c_}VHTjjOf!{(+cmP$Y zA;0oxD;opED^OeBh{N^$Z>OP|?nRaIH>gsbL`~=tYELhtPHo{ff1^cFTk;j^xe?p_ zpHCuc0uwO~!&rv5VI{WVZ0yAZeg8wB^c`fNCNdrqa1xec*zygi61HI>K5O~&sFnX4 zD>1Nx|8|^(b8sErihUNR|Juj37_0C9c^cQ_3DjO)G~;&qJuOC+@*WIgi{@2fC{IEtF+F3TTPLNoaTYJgMrz~`urhV1n#9f^u7P#uR+ z1Jdw+o$zwYG_nnMc#1Ei4+=OHCx2QwY zhe5oCnow4k|9Wy!m05s#eY#{UpP-FS;I12>{7a{#qx zr%@Nm1yo1>Lroy@fM4lo)CBTyJXT^Dm!K+n7}N0u)aUvpjxVQig@z7C#zDW*>oG_? z54Befs0pn@t!#gH)!3w)VoIm%SX?(@XlYrnbjsB7@*P|2Qd911tZ%Mg9-Q0I6r2`m SXo}RXSQ2Sk-u+5lAp9KxfK+Dy diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 038ac13c638..ac382c58e10 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,9 +15,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-07 00:10+0000\n" -"PO-Revision-Date: 2021-11-01 07:44+0000\n" -"Last-Translator: Steven Hsu \n" +"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,76 +80,76 @@ msgstr "目前在 conf.py 裡定義的 'setup' 並非一個 Python 的可呼叫 msgid "loading translations [%s]... " msgstr "正在載入翻譯 [%s]..." -#: sphinx/application.py:296 sphinx/util/__init__.py:539 +#: sphinx/application.py:297 sphinx/util/__init__.py:539 msgid "done" msgstr "完成" -#: sphinx/application.py:298 +#: sphinx/application.py:299 msgid "not available for built-in messages" msgstr "不是有效的內建訊息" -#: sphinx/application.py:307 +#: sphinx/application.py:308 msgid "loading pickled environment" msgstr "正在載入已 pickle 的環境" -#: sphinx/application.py:312 +#: sphinx/application.py:313 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:320 +#: sphinx/application.py:321 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:348 +#: sphinx/application.py:349 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:349 +#: sphinx/application.py:350 msgid "finished with problems" msgstr "完成但有問題" -#: sphinx/application.py:353 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:355 +#: sphinx/application.py:356 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:358 +#: sphinx/application.py:359 #, python-format msgid "build %s, %s warning." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:360 +#: sphinx/application.py:361 #, python-format msgid "build %s, %s warnings." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:364 +#: sphinx/application.py:365 #, python-format msgid "build %s." msgstr "建立 %s。" -#: sphinx/application.py:594 +#: sphinx/application.py:595 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "node class %r 已經被註冊,它的訪客將會被覆寫" -#: sphinx/application.py:672 +#: sphinx/application.py:673 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:693 sphinx/application.py:714 +#: sphinx/application.py:694 sphinx/application.py:715 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "role %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:1245 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行讀取是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1249 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 擴充套件對於平行讀取是不安全的" -#: sphinx/application.py:1252 +#: sphinx/application.py:1253 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,64 +170,64 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行寫入是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1256 +#: sphinx/application.py:1257 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 擴充套件對於平行寫入是不安全的" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1265 sphinx/application.py:1269 #, python-format msgid "doing serial %s" msgstr "執行串列 %s" -#: sphinx/config.py:170 +#: sphinx/config.py:171 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "config 資料夾沒有包含 conf.py 檔案 (%s)" -#: sphinx/config.py:197 +#: sphinx/config.py:198 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "無法覆寫資料夾組態設定 %r,忽略中(使用 %r 來設定個別元素)" -#: sphinx/config.py:206 +#: sphinx/config.py:207 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "無效的數字 %r 於組態值 %r,忽略中" -#: sphinx/config.py:211 +#: sphinx/config.py:212 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "無法以未支援的型別覆寫組態設定 %r,忽略中" -#: sphinx/config.py:240 +#: sphinx/config.py:241 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆寫未知的組態值 %r,忽略中" -#: sphinx/config.py:257 +#: sphinx/config.py:258 #, python-format msgid "No such config value: %s" msgstr "無此類組態值:%s" -#: sphinx/config.py:281 +#: sphinx/config.py:282 #, python-format msgid "Config value %r already present" msgstr "組態值 %r 已經存在" -#: sphinx/config.py:330 +#: sphinx/config.py:331 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "在您的組態檔中有一個語法錯誤:%s\n" -#: sphinx/config.py:333 +#: sphinx/config.py:334 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "組態檔(或它 import 的其中一個模組)呼叫了 sys.exit()" -#: sphinx/config.py:340 +#: sphinx/config.py:341 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,57 +235,57 @@ msgid "" "%s" msgstr "在您的組態檔中有一個程式化錯誤:\n\n%s" -#: sphinx/config.py:366 +#: sphinx/config.py:367 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "組態值 `source_suffix' 預期是一個字串、一組字串,或字典。但是 `%r' 被給予。" -#: sphinx/config.py:385 +#: sphinx/config.py:386 #, python-format msgid "Section %s" msgstr "章節 %s" -#: sphinx/config.py:386 +#: sphinx/config.py:387 #, python-format msgid "Fig. %s" msgstr "圖 %s" -#: sphinx/config.py:387 +#: sphinx/config.py:388 #, python-format msgid "Table %s" msgstr "表格 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:389 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:425 +#: sphinx/config.py:426 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "組態值 `{name}` 必須是 {candidates} 的其中之一,但 `{current}` 被給予。" -#: sphinx/config.py:443 +#: sphinx/config.py:444 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預期 {permitted} 。" -#: sphinx/config.py:456 +#: sphinx/config.py:457 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預設為 `{default.__name__}' 。" -#: sphinx/config.py:466 +#: sphinx/config.py:467 #, python-format msgid "primary_domain %r not found, ignored." msgstr "找不到 primary_domain %r,已略過。" -#: sphinx/config.py:478 +#: sphinx/config.py:479 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -527,104 +527,104 @@ msgstr "未找到對於 %s builder 適用的圖片:%s" msgid "building [mo]: " msgstr "建立 [mo]:" -#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 -#: sphinx/builders/__init__.py:561 +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:536 +#: sphinx/builders/__init__.py:562 msgid "writing output... " msgstr "編寫輸出..." -#: sphinx/builders/__init__.py:225 +#: sphinx/builders/__init__.py:226 #, python-format msgid "all of %d po files" msgstr "所有的 %d po 檔" -#: sphinx/builders/__init__.py:243 +#: sphinx/builders/__init__.py:244 #, python-format msgid "targets for %d po files that are specified" msgstr "對於指定的 po 檔 %d 的目標" -#: sphinx/builders/__init__.py:250 +#: sphinx/builders/__init__.py:251 #, python-format msgid "targets for %d po files that are out of date" msgstr "對於已過期 po 檔 %d 的目標" -#: sphinx/builders/__init__.py:257 +#: sphinx/builders/__init__.py:258 msgid "all source files" msgstr "所有原始檔案" -#: sphinx/builders/__init__.py:269 +#: sphinx/builders/__init__.py:270 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "在命令列給的檔案 %r 不在來源資料夾下,忽略中" -#: sphinx/builders/__init__.py:273 +#: sphinx/builders/__init__.py:274 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "在命令列給的檔案 %r 不存在,忽略中" -#: sphinx/builders/__init__.py:284 +#: sphinx/builders/__init__.py:285 #, python-format msgid "%d source files given on command line" msgstr "在命令列給了 %d 個原始檔案" -#: sphinx/builders/__init__.py:294 +#: sphinx/builders/__init__.py:295 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d 個過時原始檔案的目標" -#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#: sphinx/builders/__init__.py:304 sphinx/builders/gettext.py:240 #, python-format msgid "building [%s]: " msgstr "正在建立 [%s]:" -#: sphinx/builders/__init__.py:310 +#: sphinx/builders/__init__.py:311 msgid "looking for now-outdated files... " msgstr "正在尋找目前已過期的檔案..." -#: sphinx/builders/__init__.py:315 +#: sphinx/builders/__init__.py:316 #, python-format msgid "%d found" msgstr "已找到 %d" -#: sphinx/builders/__init__.py:317 +#: sphinx/builders/__init__.py:318 msgid "none found" msgstr "找不到任何結果" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:323 msgid "pickling environment" msgstr "正在 pickle 環境" -#: sphinx/builders/__init__.py:328 +#: sphinx/builders/__init__.py:329 msgid "checking consistency" msgstr "正在檢查一致性" -#: sphinx/builders/__init__.py:332 +#: sphinx/builders/__init__.py:333 msgid "no targets are out of date." msgstr "沒有過時的目標。" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:372 msgid "updating environment: " msgstr "正在更新環境:" -#: sphinx/builders/__init__.py:392 +#: sphinx/builders/__init__.py:393 #, python-format msgid "%s added, %s changed, %s removed" msgstr "%s 已新增, %s 已變更, %s 已移除" -#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +#: sphinx/builders/__init__.py:431 sphinx/builders/__init__.py:458 msgid "reading sources... " msgstr "正在讀取來源..." -#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +#: sphinx/builders/__init__.py:463 sphinx/builders/__init__.py:572 msgid "waiting for workers..." msgstr "正在等待工作者..." -#: sphinx/builders/__init__.py:513 +#: sphinx/builders/__init__.py:514 #, python-format msgid "docnames to write: %s" msgstr "待寫入的 docname: %s" -#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +#: sphinx/builders/__init__.py:523 sphinx/builders/singlehtml.py:153 msgid "preparing documents" msgstr "正在準備文件" @@ -1817,22 +1817,50 @@ msgstr "" msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:110 +#, python-format +msgid "toctree glob pattern %r didn't match any documents" +msgstr "" + +#: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/directives/other.py:134 sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/directives/other.py:144 +#, python-format +msgid "duplicated entry found in toctree: %s" +msgstr "" + +#: sphinx/directives/other.py:176 msgid "Section author: " msgstr "章節作者:" -#: sphinx/directives/other.py:177 +#: sphinx/directives/other.py:178 msgid "Module author: " msgstr "模組作者:" -#: sphinx/directives/other.py:179 +#: sphinx/directives/other.py:180 msgid "Code author: " msgstr "程式作者:" -#: sphinx/directives/other.py:181 +#: sphinx/directives/other.py:182 msgid "Author: " msgstr "作者:" +#: sphinx/directives/other.py:254 +msgid ".. acks content is not a list" +msgstr "" + +#: sphinx/directives/other.py:279 +msgid ".. hlist content is not a list" +msgstr "" + #: sphinx/directives/patches.py:118 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" @@ -1884,7 +1912,7 @@ msgid "variable" msgstr "變數" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1168 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 msgid "function" msgstr "函式" @@ -1962,7 +1990,7 @@ msgid "Throws" msgstr "拋出" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1170 +#: sphinx/domains/python.py:1180 msgid "class" msgstr "類別" @@ -1979,7 +2007,7 @@ msgstr "模板參數" msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:807 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" @@ -1994,7 +2022,7 @@ msgstr "%s() (類別)" msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:892 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" @@ -2008,20 +2036,20 @@ msgstr "引數" msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1172 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1169 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 msgid "data" msgstr "資料" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1175 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 msgid "attribute" msgstr "屬性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1177 +#: sphinx/domains/python.py:1187 msgid "module" msgstr "模組" @@ -2052,7 +2080,7 @@ msgstr "運算子" msgid "object" msgstr "物件" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1171 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 msgid "exception" msgstr "例外" @@ -2072,84 +2100,84 @@ msgstr "變數" msgid "Raises" msgstr "引發" -#: sphinx/domains/python.py:652 sphinx/domains/python.py:796 +#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:712 sphinx/domains/python.py:888 -#: sphinx/domains/python.py:939 +#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 +#: sphinx/domains/python.py:949 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:714 +#: sphinx/domains/python.py:724 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:739 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:740 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:801 +#: sphinx/domains/python.py:811 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別方法)" -#: sphinx/domains/python.py:803 sphinx/domains/python.py:943 +#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 #, python-format msgid "%s (%s property)" msgstr "%s (%s 的特性)" -#: sphinx/domains/python.py:805 +#: sphinx/domains/python.py:815 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態方法)" -#: sphinx/domains/python.py:1097 +#: sphinx/domains/python.py:1107 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1108 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:1147 +#: sphinx/domains/python.py:1157 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:1173 +#: sphinx/domains/python.py:1183 msgid "class method" msgstr "類別方法" -#: sphinx/domains/python.py:1174 +#: sphinx/domains/python.py:1184 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python.py:1176 +#: sphinx/domains/python.py:1186 msgid "property" msgstr "特性" -#: sphinx/domains/python.py:1234 +#: sphinx/domains/python.py:1244 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s 的重複物件敘述,其他的實例在 %s ,使用 :noindex: 給它們其中之一" -#: sphinx/domains/python.py:1354 +#: sphinx/domains/python.py:1364 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python.py:1408 +#: sphinx/domains/python.py:1418 msgid " (deprecated)" msgstr "(已棄用)" @@ -2371,16 +2399,6 @@ msgid "" " will be generated" msgstr "" -#: sphinx/environment/adapters/toctree.py:176 -#, python-format -msgid "toctree contains reference to excluded document %r" -msgstr "" - -#: sphinx/environment/adapters/toctree.py:178 -#, python-format -msgid "toctree contains reference to nonexisting document %r" -msgstr "" - #: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" @@ -3153,7 +3171,7 @@ msgid "page" msgstr "頁" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +#: sphinx/themes/basic/localtoc.html:12 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "目錄" @@ -3278,19 +3296,19 @@ msgstr "使用 Sphinx %(sphinx_versi msgid "Search %(docstitle)s" msgstr "搜尋 %(docstitle)s" -#: sphinx/themes/basic/relations.html:11 +#: sphinx/themes/basic/relations.html:12 msgid "Previous topic" msgstr "上個主題" -#: sphinx/themes/basic/relations.html:13 +#: sphinx/themes/basic/relations.html:14 msgid "previous chapter" msgstr "上一章" -#: sphinx/themes/basic/relations.html:16 +#: sphinx/themes/basic/relations.html:19 msgid "Next topic" msgstr "下個主題" -#: sphinx/themes/basic/relations.html:18 +#: sphinx/themes/basic/relations.html:21 msgid "next chapter" msgstr "下一章" From fb92547b911cdbe2c766e513cc179a017dcc6705 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 21 Nov 2021 11:25:48 +0900 Subject: [PATCH 046/192] Fix #9866: autodoc: doccoment for the imported class was ignored Autodoc tried to scan doccomment on the module where the class defined. But it failed to get it if the class is imported from other module. This analyzes the target module to obtain the doccomment. --- CHANGES | 1 + sphinx/ext/autodoc/__init__.py | 12 ++++++++++-- tests/roots/test-ext-autodoc/target/classes.py | 3 +++ tests/test_ext_autodoc.py | 5 ++++- tests/test_ext_autodoc_autoclass.py | 12 ++++++++++++ 5 files changed, 30 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 497aa719cc9..762fab5b813 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,7 @@ Features added Bugs fixed ---------- +* #9866: autodoc: doccoment for the imported class was ignored * #9857: Generated RFC links use outdated base url Testing diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 2cdf224cb25..62f1fb1b313 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1743,14 +1743,22 @@ def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: def get_variable_comment(self) -> Optional[List[str]]: try: key = ('', '.'.join(self.objpath)) - analyzer = ModuleAnalyzer.for_module(self.get_real_modname()) + if self.doc_as_attr: + analyzer = ModuleAnalyzer.for_module(self.modname) + else: + analyzer = ModuleAnalyzer.for_module(self.get_real_modname()) analyzer.analyze() - return list(self.analyzer.attr_docs.get(key, [])) + return list(analyzer.attr_docs.get(key, [])) except PycodeError: return None def add_content(self, more_content: Optional[StringList], no_docstring: bool = False ) -> None: + if self.doc_as_attr and self.modname != self.get_real_modname(): + # override analyzer to obtain doccomment around its definition. + self.analyzer = ModuleAnalyzer.for_module(self.modname) + self.analyzer.analyze() + if self.doc_as_attr and not self.get_variable_comment(): try: more_content = StringList([_('alias of %s') % restify(self.object)], source='') diff --git a/tests/roots/test-ext-autodoc/target/classes.py b/tests/roots/test-ext-autodoc/target/classes.py index d18128584af..5ba0294fbd6 100644 --- a/tests/roots/test-ext-autodoc/target/classes.py +++ b/tests/roots/test-ext-autodoc/target/classes.py @@ -37,3 +37,6 @@ class Corge(Quux): #: docstring OtherAlias = Bar + +#: docstring +IntAlias = int diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index 8f14392b218..c853fbb03b7 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -1870,12 +1870,15 @@ def test_autodoc_GenericAlias(app): ' .. py:attribute:: Class.T', ' :module: target.genericalias', '', + ' A list of int', + '', ' alias of :py:class:`~typing.List`\\ [:py:class:`int`]', '', '.. py:attribute:: T', ' :module: target.genericalias', '', - ' alias of :py:class:`~typing.List`\\ [:py:class:`int`]', + ' A list of int', + '', ] else: assert list(actual) == [ diff --git a/tests/test_ext_autodoc_autoclass.py b/tests/test_ext_autodoc_autoclass.py index 9c730f425c8..6f4e2106046 100644 --- a/tests/test_ext_autodoc_autoclass.py +++ b/tests/test_ext_autodoc_autoclass.py @@ -407,6 +407,18 @@ def test_class_alias_having_doccomment(app): ] +def test_class_alias_for_imported_object_having_doccomment(app): + actual = do_autodoc(app, 'class', 'target.classes.IntAlias') + assert list(actual) == [ + '', + '.. py:attribute:: IntAlias', + ' :module: target.classes', + '', + ' docstring', + '', + ] + + @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_coroutine(app): options = {"members": None} From cd181381018a728981ae7300d378edae778e34c5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 22 Nov 2021 01:57:27 +0900 Subject: [PATCH 047/192] Fix #9878: mathjax: MathJax config is placed after loading MathJax --- CHANGES | 1 + sphinx/ext/mathjax.py | 10 +++++----- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 497aa719cc9..e0cee6fed85 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,7 @@ Features added Bugs fixed ---------- +* #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url Testing diff --git a/sphinx/ext/mathjax.py b/sphinx/ext/mathjax.py index eb06908d30e..09ec8d1dbe9 100644 --- a/sphinx/ext/mathjax.py +++ b/sphinx/ext/mathjax.py @@ -81,11 +81,6 @@ def install_mathjax(app: Sphinx, pagename: str, templatename: str, context: Dict domain = cast(MathDomain, app.env.get_domain('math')) if app.registry.html_assets_policy == 'always' or domain.has_equations(pagename): # Enable mathjax only if equations exists - options = {'defer': 'defer'} - if app.config.mathjax_options: - options.update(app.config.mathjax_options) - app.add_js_file(app.config.mathjax_path, **options) # type: ignore - if app.config.mathjax2_config: if app.config.mathjax_path == MATHJAX_URL: logger.warning( @@ -97,6 +92,11 @@ def install_mathjax(app: Sphinx, pagename: str, templatename: str, context: Dict body = 'window.MathJax = %s' % json.dumps(app.config.mathjax3_config) app.add_js_file(None, body=body) + options = {'defer': 'defer'} + if app.config.mathjax_options: + options.update(app.config.mathjax_options) + app.add_js_file(app.config.mathjax_path, **options) # type: ignore + def setup(app: Sphinx) -> Dict[str, Any]: app.add_html_math_renderer('mathjax', From 73b7cd51ea29729a41c59d623bf08b32179470f5 Mon Sep 17 00:00:00 2001 From: Josh Mitchell Date: Mon, 22 Nov 2021 13:57:56 +1100 Subject: [PATCH 048/192] Fix lints and reorder args of members_of --- sphinx/ext/autosummary/generate.py | 13 +++++++------ tests/test_ext_autosummary.py | 1 + 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index dd712d80281..87cd0d64eb8 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -193,7 +193,7 @@ def is_skipped(self, name: str, value: Any, objtype: str) -> bool: def scan(self, imported_members: bool) -> List[str]: members = [] - for name in members_of(self.app.config, self.object): + for name in members_of(self.object, self.app.config): try: value = safe_getattr(self.object, name) except AttributeError: @@ -213,19 +213,21 @@ def scan(self, imported_members: bool) -> List[str]: except AttributeError: imported = False + respect_module_all = not self.app.config.autosummary_ignore_module_all if imported_members: # list all members up members.append(name) elif imported is False: # list not-imported members members.append(name) - elif '__all__' in dir(self.object) and not self.app.config.autosummary_ignore_module_all: + elif '__all__' in dir(self.object) and respect_module_all: # list members that have __all__ set members.append(name) return members -def members_of(conf: Config, obj: Any) -> Sequence[str]: + +def members_of(obj: Any, conf: Config) -> Sequence[str]: """Get the members of ``obj``, possibly ignoring the ``__all__`` module attribute Follows the ``conf.autosummary_ignore_module_all`` setting.""" @@ -236,7 +238,6 @@ def members_of(conf: Config, obj: Any) -> Sequence[str]: return getall(obj) or dir(obj) - def generate_autosummary_content(name: str, obj: Any, parent: Any, template: AutosummaryRenderer, template_name: str, imported_members: bool, app: Any, @@ -260,7 +261,7 @@ def get_class_members(obj: Any) -> Dict[str, Any]: def get_module_members(obj: Any) -> Dict[str, Any]: members = {} - for name in members_of(app.config, obj): + for name in members_of(obj, app.config): try: members[name] = safe_getattr(obj, name) except AttributeError: @@ -665,7 +666,7 @@ def main(argv: List[str] = sys.argv[1:]) -> None: if args.templates: app.config.templates_path.append(path.abspath(args.templates)) - app.config.autosummary_ignore_module_all = not args.respect_module_all + app.config.autosummary_ignore_module_all = not args.respect_module_all # type: ignore generate_autosummary_docs(args.source_file, args.output_dir, '.' + args.suffix, diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index 0c35b9e3eea..2fe72dbe3b3 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -260,6 +260,7 @@ def test_autosummary_generate_content_for_module___all__(app): assert context['name'] == '' assert context['objtype'] == 'module' + @pytest.mark.sphinx(testroot='ext-autosummary') def test_autosummary_generate_content_for_module_skipped(app): import autosummary_dummy_module From d39c6861d9542064cfa0a10878b1ce7317994602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 23 Nov 2021 10:17:09 +0100 Subject: [PATCH 049/192] Add note about `.nojekyll` file --- doc/tutorial/deploying.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index 85fc6643ab5..9f956a1f216 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -214,6 +214,15 @@ This contains a GitHub Actions workflow with a single job of four steps: 4. If the change happens on the default branch, take the contents of ``docs/build/html`` and push it to the ``gh-pages`` branch. +.. note:: + + The ``actions-gh-pages`` takes care of adding a ``.nojekyll`` file to the + output `so that GitHub Pages doesn't process it with its default + static site generator`__. Alternatively, you can enable the + :py:mod:`sphinx.ext.githubpages` extension on your project. + +.. __: https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages#static-site-generators + Next, you need to specify the dependencies for the ``make html`` step to be successful. For that, create a file ``docs/requirements.txt`` and add the following contents: From 15c506b86b2260cfbbe55f94fd2efd84c8968386 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 28 Nov 2021 00:11:57 +0000 Subject: [PATCH 050/192] 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 5e3047747b7..e60ab36e596 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 cf01e27c572..a51e0e2da38 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 6859f38499e..d0852b23082 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 fb0ce4fac0c..6745251332e 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 b94f113d116..d4e2c0a4064 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 58c546fe371..f9f8fb81a68 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 f32d9e4d63c..b9d28e35a79 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 1ca2c7a1eeb..93862c5f60d 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 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 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 11ef7c6192b..df6546ce671 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 f932b96b825..3933e812ebe 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 56d260287aa..7b98c28dbed 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 bfec6e41a91..937bd27a309 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 07ec391b81e..a9d5c32d50b 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 d039fd54425..53f47091844 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 00c2fcfcdc1..781c1b19505 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 454ebe3c4eb..2f061f6c9a8 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 11e4cd6a332..c3828fbc56e 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 7f32d7a1fde..0766d641501 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 bc6c1d89479..7a9f4ae3cf2 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 6aa34bffc31..10accd87b08 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 b6625ffc20e..798f646dd70 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 461e0734593..380d463e5f1 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 b6079c74ef5..37bf164a1e6 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 78536e0f39e..cb84b2e169a 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 e6306ed3322..ffbb3f43b9c 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 b7293d0aa05..8ed449e8d04 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 0b3f71612d2..f88ac4196df 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 5b6e7faf25a..2a6a1fa4572 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 0959a7bc6aa..31c6c3a1a86 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 051/192] 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 8ec1405adb0..8de99138951 100644 --- a/tests/test_versioning.py +++ b/tests/test_versioning.py @@ -17,10 +17,11 @@ 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 052/192] 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 5a9f929a709..bf0f1154839 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 acaf70596e779af890a7bc4a4b724387dd8661fe Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 28 Nov 2021 14:46:34 +0900 Subject: [PATCH 053/192] Fix #9899: py domain: Allows cross-reference specifier to :type: option --- CHANGES | 2 ++ sphinx/domains/python.py | 18 +++++++++++++++--- tests/test_domain_py.py | 22 ++++++++++++++++++++++ 3 files changed, 39 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 87cc9ab8233..cd8f83ac4db 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,8 @@ Features added ``__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. +* #9899: py domain: Allows to specify cross-reference specifier (``.`` and + ``~``) as ``:type:`` option Bugs fixed ---------- diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index b932a9ea5c3..bcf312d7e87 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -80,9 +80,9 @@ class ModuleEntry(NamedTuple): deprecated: bool -def type_to_xref(text: str, env: BuildEnvironment = None) -> addnodes.pending_xref: +def type_to_xref(target: str, env: BuildEnvironment = None) -> addnodes.pending_xref: """Convert a type string to a cross reference node.""" - if text == 'None': + if target == 'None': reftype = 'obj' else: reftype = 'class' @@ -93,6 +93,17 @@ def type_to_xref(text: str, env: BuildEnvironment = None) -> addnodes.pending_xr else: kwargs = {} + refspecific = False + if target.startswith('.'): + target = target[1:] + text = target + refspecific = True + elif target.startswith('~'): + target = target[1:] + text = target.split('.')[-1] + else: + text = target + if env.config.python_use_unqualified_type_names: # Note: It would be better to use qualname to describe the object to support support # nested classes. But python domain can't access the real python object because this @@ -104,7 +115,8 @@ def type_to_xref(text: str, env: BuildEnvironment = None) -> addnodes.pending_xr contnodes = [nodes.Text(text)] return pending_xref('', *contnodes, - refdomain='py', reftype=reftype, reftarget=text, **kwargs) + refdomain='py', reftype=reftype, reftarget=target, + refspecific=refspecific, **kwargs) def _parse_annotation(annotation: str, env: BuildEnvironment = None) -> List[Node]: diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index e34218dfa4b..353640cda31 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -1170,6 +1170,28 @@ def test_info_field_list_var(app): refdomain="py", reftype="class", reftarget="int", **{"py:class": "Class"}) +def test_type_field(app): + text = (".. py:data:: var1\n" + " :type: .int\n" + ".. py:data:: var2\n" + " :type: ~builtins.int\n") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_name, "var1"], + [desc_annotation, ([desc_sig_punctuation, ':'], + desc_sig_space, + [pending_xref, "int"])])], + [desc_content, ()])], + addnodes.index, + [desc, ([desc_signature, ([desc_name, "var2"], + [desc_annotation, ([desc_sig_punctuation, ':'], + desc_sig_space, + [pending_xref, "int"])])], + [desc_content, ()])])) + assert_node(doctree[1][0][1][2], pending_xref, reftarget='int', refspecific=True) + assert_node(doctree[3][0][1][2], pending_xref, reftarget='builtins.int', refspecific=False) + + @pytest.mark.sphinx(freshenv=True) def test_module_index(app): text = (".. py:module:: docutils\n" From f88ac53e517d4c2d72faaf96000fe4079844acfd Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 26 Nov 2021 01:35:40 +0900 Subject: [PATCH 054/192] Fix #9883: autodoc: doccomment for the alias to mocked object was ignored --- CHANGES | 3 ++- sphinx/ext/autodoc/__init__.py | 16 +++++++++------- sphinx/ext/autodoc/mock.py | 3 ++- .../roots/test-ext-autodoc/target/need_mocks.py | 7 +++++++ tests/test_ext_autodoc_configs.py | 14 +++++++++++++- tests/test_ext_autodoc_mock.py | 1 + 6 files changed, 34 insertions(+), 10 deletions(-) diff --git a/CHANGES b/CHANGES index 87cc9ab8233..13abd4cebb6 100644 --- a/CHANGES +++ b/CHANGES @@ -23,7 +23,8 @@ Features added Bugs fixed ---------- -* #9866: autodoc: doccoment for the imported class was ignored +* #9866: autodoc: doccomment for the imported class was ignored +* #9883: autodoc: doccomment for the alias to mocked object was ignored * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 157e57e3ad5..a4d5884e89e 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -751,7 +751,7 @@ def is_filtered_inherited_member(name: str, obj: Any) -> bool: isprivate = membername.startswith('_') keep = False - if ismock(member): + if ismock(member) and (namespace, membername) not in attr_docs: # mocked module or object pass elif self.options.exclude_members and membername in self.options.exclude_members: @@ -2009,7 +2009,8 @@ def add_directive_header(self, sig: str) -> None: self.add_line(' :type: ' + objrepr, sourcename) try: - if self.options.no_value or self.should_suppress_value_header(): + if (self.options.no_value or self.should_suppress_value_header() or + ismock(self.object)): pass else: objrepr = object_description(self.object) @@ -2528,11 +2529,11 @@ def is_function_or_method(obj: Any) -> bool: @classmethod def can_document_member(cls, member: Any, membername: str, isattr: bool, parent: Any ) -> bool: - if inspect.isattributedescriptor(member): + if isinstance(parent, ModuleDocumenter): + return False + elif inspect.isattributedescriptor(member): return True - elif (not isinstance(parent, ModuleDocumenter) and - not inspect.isroutine(member) and - not isinstance(member, type)): + elif not inspect.isroutine(member) and not isinstance(member, type): return True else: return False @@ -2625,7 +2626,8 @@ def add_directive_header(self, sig: str) -> None: self.add_line(' :type: ' + objrepr, sourcename) try: - if self.options.no_value or self.should_suppress_value_header(): + if (self.options.no_value or self.should_suppress_value_header() or + ismock(self.object)): pass else: objrepr = object_description(self.object) diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py index 62f36da7956..ec8c0108738 100644 --- a/sphinx/ext/autodoc/mock.py +++ b/sphinx/ext/autodoc/mock.py @@ -170,7 +170,8 @@ def ismock(subject: Any) -> bool: try: # check the object is mocked object __mro__ = safe_getattr(type(subject), '__mro__', []) - if len(__mro__) > 2 and __mro__[1] is _MockObject: + if len(__mro__) > 2 and __mro__[-2] is _MockObject: + # A mocked object has a MRO that ends with (..., _MockObject, object). return True except AttributeError: pass diff --git a/tests/roots/test-ext-autodoc/target/need_mocks.py b/tests/roots/test-ext-autodoc/target/need_mocks.py index a2995418410..6f75dc3802e 100644 --- a/tests/roots/test-ext-autodoc/target/need_mocks.py +++ b/tests/roots/test-ext-autodoc/target/need_mocks.py @@ -22,6 +22,10 @@ def func(arg: missing_module.Class): class TestAutodoc(object): """TestAutodoc docstring.""" + + #: docstring + Alias = missing_module2.Class + @missing_name def decoratedMethod(self): """TestAutodoc::decoratedMethod docstring""" @@ -34,3 +38,6 @@ class Inherited(missing_module.Class): sphinx.missing_module4.missing_function(len(missing_name2)) + +#: docstring +Alias = missing_module2.Class diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index e04cd83b681..643899286a4 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -536,7 +536,7 @@ def test_mocked_module_imports(app, warning): sys.modules.pop('target', None) # unload target module to clear the module cache # no autodoc_mock_imports - options = {"members": 'TestAutodoc,decoratedFunction,func'} + options = {"members": 'TestAutodoc,decoratedFunction,func,Alias'} actual = do_autodoc(app, 'module', 'target.need_mocks', options) assert list(actual) == [] assert "autodoc: failed to import module 'need_mocks'" in warning.getvalue() @@ -557,12 +557,24 @@ def test_mocked_module_imports(app, warning): '.. py:module:: target.need_mocks', '', '', + '.. py:data:: Alias', + ' :module: target.need_mocks', + '', + ' docstring', + '', + '', '.. py:class:: TestAutodoc()', ' :module: target.need_mocks', '', ' TestAutodoc docstring.', '', '', + ' .. py:attribute:: TestAutodoc.Alias', + ' :module: target.need_mocks', + '', + ' docstring', + '', + '', ' .. py:method:: TestAutodoc.decoratedMethod()', ' :module: target.need_mocks', '', diff --git a/tests/test_ext_autodoc_mock.py b/tests/test_ext_autodoc_mock.py index 497bd8a6b1a..f3a9e2dc187 100644 --- a/tests/test_ext_autodoc_mock.py +++ b/tests/test_ext_autodoc_mock.py @@ -146,6 +146,7 @@ class Inherited(mod1.Class): assert ismock(mod1) is True assert ismock(mod1.Class) is True + assert ismock(mod1.submod.Class) is True assert ismock(Inherited) is False assert ismock(mod2) is False From f6a3d037f4bf533dfae48998be98a86bd8cb93a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sun, 28 Nov 2021 19:58:30 +0100 Subject: [PATCH 055/192] Remove note to simplify message --- doc/tutorial/deploying.rst | 9 --------- 1 file changed, 9 deletions(-) diff --git a/doc/tutorial/deploying.rst b/doc/tutorial/deploying.rst index 9f956a1f216..85fc6643ab5 100644 --- a/doc/tutorial/deploying.rst +++ b/doc/tutorial/deploying.rst @@ -214,15 +214,6 @@ This contains a GitHub Actions workflow with a single job of four steps: 4. If the change happens on the default branch, take the contents of ``docs/build/html`` and push it to the ``gh-pages`` branch. -.. note:: - - The ``actions-gh-pages`` takes care of adding a ``.nojekyll`` file to the - output `so that GitHub Pages doesn't process it with its default - static site generator`__. Alternatively, you can enable the - :py:mod:`sphinx.ext.githubpages` extension on your project. - -.. __: https://docs.github.com/en/pages/getting-started-with-github-pages/about-github-pages#static-site-generators - Next, you need to specify the dependencies for the ``make html`` step to be successful. For that, create a file ``docs/requirements.txt`` and add the following contents: From 3fa146078bafbf82a38d4f95ea1ae4eee4f86827 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 29 Nov 2021 09:38:18 +0900 Subject: [PATCH 056/192] Sort CHANGES entries --- CHANGES | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index b8fe1d95217..9547c4bad1f 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 057/192] 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 59c5d9309bd..5709a12f5f4 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 @@ def check_uri(self, refnode: nodes.reference) -> None: 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: From 8dc095e7c149dad42cd3d8badeff5896ee566cad Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 29 Nov 2021 10:02:14 +0900 Subject: [PATCH 058/192] Fix autodoc: Remove debug print A message is shown on building document using NewTypes with Python 3.10. --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 9547c4bad1f..2b93addbcb9 100644 --- a/CHANGES +++ b/CHANGES @@ -26,6 +26,8 @@ Bugs fixed ---------- * #9866: autodoc: doccoment for the imported class was ignored +* autodoc: debug message is shown on building document using NewTypes with + Python 3.10 * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url From 472abb08769db70eeffa3672a570123d80749e7c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 29 Nov 2021 10:04:32 +0900 Subject: [PATCH 059/192] Update CHANGES --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 2b93addbcb9..ecded667dfe 100644 --- a/CHANGES +++ b/CHANGES @@ -26,8 +26,8 @@ Bugs fixed ---------- * #9866: autodoc: doccoment for the imported class was ignored -* autodoc: debug message is shown on building document using NewTypes with - Python 3.10 +* #9908: autodoc: debug message is shown on building document using NewTypes + with Python 3.10 * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url From 3812a42942af56c0c30acc4c77dd140e106a5c8a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 29 Nov 2021 09:39:11 +0900 Subject: [PATCH 060/192] extlinks: Adjust priority (refs: #9800) --- sphinx/ext/extlinks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 5709a12f5f4..71591febbeb 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -52,7 +52,7 @@ class ExternalLinksChecker(SphinxPostTransform): We treat each ``reference`` node without ``internal`` attribute as an external link. """ - default_priority = 100 + default_priority = 500 def run(self, **kwargs: Any) -> None: for refnode in self.document.traverse(nodes.reference): From 5eaed2bed753c8f58e702419d997053ddec05d9c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 30 Nov 2021 01:54:19 +0900 Subject: [PATCH 061/192] py domain: Allow "~" prefix as a prefix of typehints in signature Now python domain supports the "~" prefix at the beginning of the typehints of the function signatures: .. py:function:: func(x: ~typing.Dict) It's rescognized as the same as python reference roles do (ex. :py:class:`~typing.Dict`). --- sphinx/domains/python.py | 24 +++++++++++++++++++----- tests/test_domain_py.py | 12 ++++++++++++ 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index bcf312d7e87..5402ce37a8a 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -80,7 +80,8 @@ class ModuleEntry(NamedTuple): deprecated: bool -def type_to_xref(target: str, env: BuildEnvironment = None) -> addnodes.pending_xref: +def type_to_xref(target: str, env: BuildEnvironment = None, suppress_prefix: bool = False + ) -> addnodes.pending_xref: """Convert a type string to a cross reference node.""" if target == 'None': reftype = 'obj' @@ -101,6 +102,8 @@ def type_to_xref(target: str, env: BuildEnvironment = None) -> addnodes.pending_ elif target.startswith('~'): target = target[1:] text = target.split('.')[-1] + elif suppress_prefix: + text = target.split('.')[-1] else: text = target @@ -150,6 +153,8 @@ def unparse(node: ast.AST) -> List[Node]: return unparse(node.value) elif isinstance(node, ast.Index): return unparse(node.value) + elif isinstance(node, ast.Invert): + return [addnodes.desc_sig_punctuation('', '~')] elif isinstance(node, ast.List): result = [addnodes.desc_sig_punctuation('', '[')] if node.elts: @@ -180,6 +185,8 @@ def unparse(node: ast.AST) -> List[Node]: if isinstance(subnode, nodes.Text): result[i] = nodes.literal('', '', subnode) return result + elif isinstance(node, ast.UnaryOp): + return unparse(node.op) + unparse(node.operand) elif isinstance(node, ast.Tuple): if node.elts: result = [] @@ -209,12 +216,19 @@ def unparse(node: ast.AST) -> List[Node]: try: tree = ast_parse(annotation) - result = unparse(tree) - for i, node in enumerate(result): + result: List[Node] = [] + for node in unparse(tree): if isinstance(node, nodes.literal): - result[i] = node[0] + result.append(node[0]) elif isinstance(node, nodes.Text) and node.strip(): - result[i] = type_to_xref(str(node), env) + if (result and isinstance(result[-1], addnodes.desc_sig_punctuation) and + result[-1].astext() == '~'): + result.pop() + result.append(type_to_xref(str(node), env, suppress_prefix=True)) + else: + result.append(type_to_xref(str(node), env)) + else: + result.append(node) return result except SyntaxError: return [type_to_xref(annotation, env)] diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 353640cda31..dbd594f8384 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -350,6 +350,18 @@ def test_parse_annotation(app): assert_node(doctree[0], pending_xref, refdomain="py", reftype="obj", reftarget="None") +def test_parse_annotation_suppress(app): + doctree = _parse_annotation("~typing.Dict[str, str]", app.env) + assert_node(doctree, ([pending_xref, "Dict"], + [desc_sig_punctuation, "["], + [pending_xref, "str"], + [desc_sig_punctuation, ","], + desc_sig_space, + [pending_xref, "str"], + [desc_sig_punctuation, "]"])) + assert_node(doctree[0], pending_xref, refdomain="py", reftype="class", reftarget="typing.Dict") + + @pytest.mark.skipif(sys.version_info < (3, 8), reason='python 3.8+ is required.') def test_parse_annotation_Literal(app): doctree = _parse_annotation("Literal[True, False]", app.env) From 5161341b3e89a1ce15abdf4b0ca63711aa1e6152 Mon Sep 17 00:00:00 2001 From: "Kian-Meng, Ang" Date: Tue, 30 Nov 2021 05:48:44 +0800 Subject: [PATCH 062/192] Fix typos --- CHANGES | 4 ++-- EXAMPLES | 2 +- tests/test_extension.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 0a465a5f212..c7ca12608bc 100644 --- a/CHANGES +++ b/CHANGES @@ -73,7 +73,7 @@ Bugs fixed * #9838: autodoc: AttributeError is raised on building document for functions decorated by functools.lru_cache * #9879: autodoc: AttributeError is raised on building document for an object - having invalid __doc__ atribute + having invalid __doc__ attribute * #9844: autodoc: Failed to process a function wrapped with functools.partial if :confval:`autodoc_preserve_defaults` enabled * #9872: html: Class namespace collision between autodoc signatures and @@ -158,7 +158,7 @@ Bugs fixed * #9752: autodoc: Failed to detect type annotation for slots attribute * #9756: autodoc: Crashed if classmethod does not have __func__ attribute * #9757: autodoc: :confval:`autodoc_inherit_docstrings` does not effect to - overriden classmethods + overridden classmethods * #9781: autodoc: :confval:`autodoc_preserve_defaults` does not support hexadecimal numeric * #9630: autosummary: Failed to build summary table if :confval:`primary_domain` diff --git a/EXAMPLES b/EXAMPLES index 2942739b546..3864697e295 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -430,7 +430,7 @@ Books produced using Sphinx * `"Theoretical Physics Reference" `__ * `"The Varnish Book" `__ -Theses produced using Sphinx +These produced using Sphinx ---------------------------- * `"A Web-Based System for Comparative Analysis of OpenStreetMap Data by the Use diff --git a/tests/test_extension.py b/tests/test_extension.py index db9f4e48761..cc16be964e8 100644 --- a/tests/test_extension.py +++ b/tests/test_extension.py @@ -2,7 +2,7 @@ test_extension ~~~~~~~~~~~~~~ - Test sphinx.extesion module. + Test sphinx.extension module. :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. From ed79004e42cf99c12ce64fee5697f6397d098704 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Tue, 30 Nov 2021 18:33:49 +0100 Subject: [PATCH 063/192] C++, fix typo in internal function --- sphinx/domains/cpp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index b332ae422ef..a7f98074141 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -6541,7 +6541,7 @@ def parser() -> ASTExpression: # ========================================================================== - def _parse_template_paramter(self) -> ASTTemplateParam: + def _parse_template_parameter(self) -> ASTTemplateParam: self.skip_ws() if self.skip_word('template'): # declare a tenplate template parameter @@ -6613,7 +6613,7 @@ def _parse_template_parameter_list(self) -> ASTTemplateParams: pos = self.pos err = None try: - param = self._parse_template_paramter() + param = self._parse_template_parameter() templateParams.append(param) except DefinitionError as eParam: self.pos = pos From bc849e2170db3fa09dd498e4737a056c0fbfceaa Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Thu, 2 Dec 2021 16:50:09 +0100 Subject: [PATCH 064/192] doc: Fix autodoc extension example `directivetype` is set to mimic `ClassDocumenter`. Reflect that. `isinstance` would work on the enum members, but that is not what we want here. `issubclass` raises a TypeError when called on objects that are not classes. --- doc/development/tutorials/examples/autodoc_intenum.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/doc/development/tutorials/examples/autodoc_intenum.py b/doc/development/tutorials/examples/autodoc_intenum.py index 7fb85d0662e..574ac36213a 100644 --- a/doc/development/tutorials/examples/autodoc_intenum.py +++ b/doc/development/tutorials/examples/autodoc_intenum.py @@ -9,7 +9,7 @@ class IntEnumDocumenter(ClassDocumenter): objtype = 'intenum' - directivetype = 'class' + directivetype = ClassDocumenter.objtype priority = 10 + ClassDocumenter.priority option_spec = dict(ClassDocumenter.option_spec) option_spec['hex'] = bool_option @@ -18,7 +18,10 @@ class IntEnumDocumenter(ClassDocumenter): def can_document_member(cls, member: Any, membername: str, isattr: bool, parent: Any) -> bool: - return isinstance(member, IntEnum) + try: + return issubclass(member, IntEnum) + except TypeError: + return False def add_directive_header(self, sig: str) -> None: super().add_directive_header(sig) From aabf772722b2c070d365e6a8e4263b9a30635e6f Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 2 Dec 2021 17:46:56 +0100 Subject: [PATCH 065/192] Prevent literal line wrapping --- CHANGES | 1 + sphinx/themes/basic/static/basic.css_t | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 0a465a5f212..25fdd960ca0 100644 --- a/CHANGES +++ b/CHANGES @@ -33,6 +33,7 @@ Bugs fixed with Python 3.10 * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url +* #9909: HTML, prevent line-wrapping in literal text. Testing -------- diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index 43e04bd3411..2dff556b452 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -757,6 +757,7 @@ span.pre { -ms-hyphens: none; -webkit-hyphens: none; hyphens: none; + white-space: nowrap; } div[class*="highlight-"] { From 80f79aef919d54fec1fcf6edcda7f5de26e70873 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 2 Dec 2021 01:42:57 +0900 Subject: [PATCH 066/192] Add `smartref` parameter to sphinx.util.typing:stringify() To make the generated function signatures simple, this adds a new parameter `smartref` to sphinx.util.typing:stringify() to suppress the leading module name from typehints. --- sphinx/util/typing.py | 118 +++++++++++-------- tests/test_util_typing.py | 237 ++++++++++++++++++++++++++++---------- 2 files changed, 245 insertions(+), 110 deletions(-) diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index e1972d86d78..259384ec70f 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -299,10 +299,19 @@ def _restify_py36(cls: Optional[Type]) -> str: return ':py:obj:`%s.%s`' % (cls.__module__, qualname) -def stringify(annotation: Any) -> str: - """Stringify type annotation object.""" +def stringify(annotation: Any, smartref: bool = False) -> str: + """Stringify type annotation object. + + :param smartref: If true, add "~" prefix to the result to remove the leading + module and class names from the reference text + """ from sphinx.util import inspect # lazy loading + if smartref: + prefix = '~' + else: + prefix = '' + if isinstance(annotation, str): if annotation.startswith("'") and annotation.endswith("'"): # might be a double Forward-ref'ed type. Go unquoting. @@ -313,11 +322,11 @@ def stringify(annotation: Any) -> str: if annotation.__module__ == 'typing': return annotation.__name__ else: - return '.'.join([annotation.__module__, annotation.__name__]) + return prefix + '.'.join([annotation.__module__, annotation.__name__]) elif inspect.isNewType(annotation): if sys.version_info > (3, 10): # newtypes have correct module info since Python 3.10+ - return '%s.%s' % (annotation.__module__, annotation.__name__) + return prefix + '%s.%s' % (annotation.__module__, annotation.__name__) else: return annotation.__name__ elif not annotation: @@ -325,7 +334,7 @@ def stringify(annotation: Any) -> str: elif annotation is NoneType: return 'None' elif annotation in INVALID_BUILTIN_CLASSES: - return INVALID_BUILTIN_CLASSES[annotation] + return prefix + INVALID_BUILTIN_CLASSES[annotation] elif str(annotation).startswith('typing.Annotated'): # for py310+ pass elif (getattr(annotation, '__module__', None) == 'builtins' and @@ -338,28 +347,36 @@ def stringify(annotation: Any) -> str: return '...' if sys.version_info >= (3, 7): # py37+ - return _stringify_py37(annotation) + return _stringify_py37(annotation, smartref) else: - return _stringify_py36(annotation) + return _stringify_py36(annotation, smartref) -def _stringify_py37(annotation: Any) -> str: +def _stringify_py37(annotation: Any, smartref: bool = False) -> str: """stringify() for py37+.""" module = getattr(annotation, '__module__', None) - if module == 'typing': + modprefix = '' + if module == 'typing' and getattr(annotation, '__forward_arg__', None): + qualname = annotation.__forward_arg__ + elif module == 'typing': if getattr(annotation, '_name', None): qualname = annotation._name elif getattr(annotation, '__qualname__', None): qualname = annotation.__qualname__ - elif getattr(annotation, '__forward_arg__', None): - qualname = annotation.__forward_arg__ else: qualname = stringify(annotation.__origin__) # ex. Union + + if smartref: + modprefix = '~%s.' % module elif hasattr(annotation, '__qualname__'): - qualname = '%s.%s' % (module, annotation.__qualname__) + if smartref: + modprefix = '~%s.' % module + else: + modprefix = '%s.' % module + qualname = annotation.__qualname__ elif hasattr(annotation, '__origin__'): # instantiated generic provided by a user - qualname = stringify(annotation.__origin__) + qualname = stringify(annotation.__origin__, smartref) elif UnionType and isinstance(annotation, UnionType): # types.Union (for py3.10+) qualname = 'types.Union' else: @@ -374,54 +391,63 @@ def _stringify_py37(annotation: Any) -> str: elif qualname in ('Optional', 'Union'): if len(annotation.__args__) > 1 and annotation.__args__[-1] is NoneType: if len(annotation.__args__) > 2: - args = ', '.join(stringify(a) for a in annotation.__args__[:-1]) - return 'Optional[Union[%s]]' % args + args = ', '.join(stringify(a, smartref) for a in annotation.__args__[:-1]) + return '%sOptional[%sUnion[%s]]' % (modprefix, modprefix, args) else: - return 'Optional[%s]' % stringify(annotation.__args__[0]) + return '%sOptional[%s]' % (modprefix, + stringify(annotation.__args__[0], smartref)) else: - args = ', '.join(stringify(a) for a in annotation.__args__) - return 'Union[%s]' % args + args = ', '.join(stringify(a, smartref) for a in annotation.__args__) + return '%sUnion[%s]' % (modprefix, args) elif qualname == 'types.Union': if len(annotation.__args__) > 1 and None in annotation.__args__: args = ' | '.join(stringify(a) for a in annotation.__args__ if a) - return 'Optional[%s]' % args + return '%sOptional[%s]' % (modprefix, args) else: return ' | '.join(stringify(a) for a in annotation.__args__) elif qualname == 'Callable': - args = ', '.join(stringify(a) for a in annotation.__args__[:-1]) - returns = stringify(annotation.__args__[-1]) - return '%s[[%s], %s]' % (qualname, args, returns) + args = ', '.join(stringify(a, smartref) for a in annotation.__args__[:-1]) + returns = stringify(annotation.__args__[-1], smartref) + return '%s%s[[%s], %s]' % (modprefix, qualname, args, returns) elif qualname == 'Literal': args = ', '.join(repr(a) for a in annotation.__args__) - return '%s[%s]' % (qualname, args) + return '%s%s[%s]' % (modprefix, qualname, args) elif str(annotation).startswith('typing.Annotated'): # for py39+ - return stringify(annotation.__args__[0]) + return stringify(annotation.__args__[0], smartref) elif all(is_system_TypeVar(a) for a in annotation.__args__): # Suppress arguments if all system defined TypeVars (ex. Dict[KT, VT]) - return qualname + return modprefix + qualname else: - args = ', '.join(stringify(a) for a in annotation.__args__) - return '%s[%s]' % (qualname, args) + args = ', '.join(stringify(a, smartref) for a in annotation.__args__) + return '%s%s[%s]' % (modprefix, qualname, args) - return qualname + return modprefix + qualname -def _stringify_py36(annotation: Any) -> str: +def _stringify_py36(annotation: Any, smartref: bool = False) -> str: """stringify() for py36.""" module = getattr(annotation, '__module__', None) - if module == 'typing': + modprefix = '' + if module == 'typing' and getattr(annotation, '__forward_arg__', None): + qualname = annotation.__forward_arg__ + elif module == 'typing': if getattr(annotation, '_name', None): qualname = annotation._name elif getattr(annotation, '__qualname__', None): qualname = annotation.__qualname__ - elif getattr(annotation, '__forward_arg__', None): - qualname = annotation.__forward_arg__ elif getattr(annotation, '__origin__', None): qualname = stringify(annotation.__origin__) # ex. Union else: qualname = repr(annotation).replace('typing.', '') + + if smartref: + modprefix = '~%s.' % module elif hasattr(annotation, '__qualname__'): - qualname = '%s.%s' % (module, annotation.__qualname__) + if smartref: + modprefix = '~%s.' % module + else: + modprefix = '%s.' % module + qualname = annotation.__qualname__ else: qualname = repr(annotation) @@ -429,10 +455,10 @@ def _stringify_py36(annotation: Any) -> str: not hasattr(annotation, '__tuple_params__')): # for Python 3.6 params = annotation.__args__ if params: - param_str = ', '.join(stringify(p) for p in params) - return '%s[%s]' % (qualname, param_str) + param_str = ', '.join(stringify(p, smartref) for p in params) + return '%s%s[%s]' % (modprefix, qualname, param_str) else: - return qualname + return modprefix + qualname elif isinstance(annotation, typing.GenericMeta): params = None if annotation.__args__ is None or len(annotation.__args__) <= 2: # type: ignore # NOQA @@ -440,28 +466,28 @@ def _stringify_py36(annotation: Any) -> str: elif annotation.__origin__ == Generator: # type: ignore params = annotation.__args__ # type: ignore else: # typing.Callable - args = ', '.join(stringify(arg) for arg + args = ', '.join(stringify(arg, smartref) for arg in annotation.__args__[:-1]) # type: ignore result = stringify(annotation.__args__[-1]) # type: ignore - return '%s[[%s], %s]' % (qualname, args, result) + return '%s%s[[%s], %s]' % (modprefix, qualname, args, result) if params is not None: - param_str = ', '.join(stringify(p) for p in params) - return '%s[%s]' % (qualname, param_str) + param_str = ', '.join(stringify(p, smartref) for p in params) + return '%s%s[%s]' % (modprefix, qualname, param_str) elif (hasattr(annotation, '__origin__') and annotation.__origin__ is typing.Union): params = annotation.__args__ if params is not None: if len(params) > 1 and params[-1] is NoneType: if len(params) > 2: - param_str = ", ".join(stringify(p) for p in params[:-1]) - return 'Optional[Union[%s]]' % param_str + param_str = ", ".join(stringify(p, smartref) for p in params[:-1]) + return '%sOptional[%sUnion[%s]]' % (modprefix, modprefix, param_str) else: - return 'Optional[%s]' % stringify(params[0]) + return '%sOptional[%s]' % (modprefix, stringify(params[0])) else: - param_str = ', '.join(stringify(p) for p in params) - return 'Union[%s]' % param_str + param_str = ', '.join(stringify(p, smartref) for p in params) + return '%sUnion[%s]' % (modprefix, param_str) - return qualname + return modprefix + qualname deprecated_alias('sphinx.util.typing', diff --git a/tests/test_util_typing.py b/tests/test_util_typing.py index c34c4bebc8d..0b2324e294b 100644 --- a/tests/test_util_typing.py +++ b/tests/test_util_typing.py @@ -178,78 +178,156 @@ def test_restify_mock(): def test_stringify(): - assert stringify(int) == "int" - assert stringify(str) == "str" - assert stringify(None) == "None" - assert stringify(Integral) == "numbers.Integral" - assert stringify(Struct) == "struct.Struct" - assert stringify(TracebackType) == "types.TracebackType" - assert stringify(Any) == "Any" + assert stringify(int, False) == "int" + assert stringify(int, True) == "int" + + assert stringify(str, False) == "str" + assert stringify(str, True) == "str" + + assert stringify(None, False) == "None" + assert stringify(None, True) == "None" + + assert stringify(Integral, False) == "numbers.Integral" + assert stringify(Integral, True) == "~numbers.Integral" + + assert stringify(Struct, False) == "struct.Struct" + assert stringify(Struct, True) == "~struct.Struct" + + assert stringify(TracebackType, False) == "types.TracebackType" + assert stringify(TracebackType, True) == "~types.TracebackType" + + assert stringify(Any, False) == "Any" + assert stringify(Any, True) == "~typing.Any" def test_stringify_type_hints_containers(): - assert stringify(List) == "List" - assert stringify(Dict) == "Dict" - assert stringify(List[int]) == "List[int]" - assert stringify(List[str]) == "List[str]" - assert stringify(Dict[str, float]) == "Dict[str, float]" - assert stringify(Tuple[str, str, str]) == "Tuple[str, str, str]" - assert stringify(Tuple[str, ...]) == "Tuple[str, ...]" - assert stringify(Tuple[()]) == "Tuple[()]" - assert stringify(List[Dict[str, Tuple]]) == "List[Dict[str, Tuple]]" - assert stringify(MyList[Tuple[int, int]]) == "tests.test_util_typing.MyList[Tuple[int, int]]" - assert stringify(Generator[None, None, None]) == "Generator[None, None, None]" + assert stringify(List, False) == "List" + assert stringify(List, True) == "~typing.List" + + assert stringify(Dict, False) == "Dict" + assert stringify(Dict, True) == "~typing.Dict" + + assert stringify(List[int], False) == "List[int]" + assert stringify(List[int], True) == "~typing.List[int]" + + assert stringify(List[str], False) == "List[str]" + assert stringify(List[str], True) == "~typing.List[str]" + + assert stringify(Dict[str, float], False) == "Dict[str, float]" + assert stringify(Dict[str, float], True) == "~typing.Dict[str, float]" + + assert stringify(Tuple[str, str, str], False) == "Tuple[str, str, str]" + assert stringify(Tuple[str, str, str], True) == "~typing.Tuple[str, str, str]" + + assert stringify(Tuple[str, ...], False) == "Tuple[str, ...]" + assert stringify(Tuple[str, ...], True) == "~typing.Tuple[str, ...]" + + assert stringify(Tuple[()], False) == "Tuple[()]" + assert stringify(Tuple[()], True) == "~typing.Tuple[()]" + + assert stringify(List[Dict[str, Tuple]], False) == "List[Dict[str, Tuple]]" + assert stringify(List[Dict[str, Tuple]], True) == "~typing.List[~typing.Dict[str, ~typing.Tuple]]" + + assert stringify(MyList[Tuple[int, int]], False) == "tests.test_util_typing.MyList[Tuple[int, int]]" + assert stringify(MyList[Tuple[int, int]], True) == "~tests.test_util_typing.MyList[~typing.Tuple[int, int]]" + + assert stringify(Generator[None, None, None], False) == "Generator[None, None, None]" + assert stringify(Generator[None, None, None], True) == "~typing.Generator[None, None, None]" @pytest.mark.skipif(sys.version_info < (3, 9), reason='python 3.9+ is required.') def test_stringify_type_hints_pep_585(): - assert stringify(list[int]) == "list[int]" - assert stringify(list[str]) == "list[str]" - assert stringify(dict[str, float]) == "dict[str, float]" - assert stringify(tuple[str, str, str]) == "tuple[str, str, str]" - assert stringify(tuple[str, ...]) == "tuple[str, ...]" - assert stringify(tuple[()]) == "tuple[()]" - assert stringify(list[dict[str, tuple]]) == "list[dict[str, tuple]]" - assert stringify(type[int]) == "type[int]" + assert stringify(list[int], False) == "list[int]" + assert stringify(list[int], True) == "list[int]" + + assert stringify(list[str], False) == "list[str]" + assert stringify(list[str], True) == "list[str]" + + assert stringify(dict[str, float], False) == "dict[str, float]" + assert stringify(dict[str, float], True) == "dict[str, float]" + + assert stringify(tuple[str, str, str], False) == "tuple[str, str, str]" + assert stringify(tuple[str, str, str], True) == "tuple[str, str, str]" + + assert stringify(tuple[str, ...], False) == "tuple[str, ...]" + assert stringify(tuple[str, ...], True) == "tuple[str, ...]" + + assert stringify(tuple[()], False) == "tuple[()]" + assert stringify(tuple[()], True) == "tuple[()]" + + assert stringify(list[dict[str, tuple]], False) == "list[dict[str, tuple]]" + assert stringify(list[dict[str, tuple]], True) == "list[dict[str, tuple]]" + + assert stringify(type[int], False) == "type[int]" + assert stringify(type[int], True) == "type[int]" @pytest.mark.skipif(sys.version_info < (3, 9), reason='python 3.9+ is required.') def test_stringify_Annotated(): from typing import Annotated # type: ignore - assert stringify(Annotated[str, "foo", "bar"]) == "str" # NOQA + assert stringify(Annotated[str, "foo", "bar"], False) == "str" # NOQA + assert stringify(Annotated[str, "foo", "bar"], True) == "str" # NOQA def test_stringify_type_hints_string(): - assert stringify("int") == "int" - assert stringify("str") == "str" - assert stringify(List["int"]) == "List[int]" - assert stringify("Tuple[str]") == "Tuple[str]" - assert stringify("unknown") == "unknown" + assert stringify("int", False) == "int" + assert stringify("int", True) == "int" + + assert stringify("str", False) == "str" + assert stringify("str", True) == "str" + + assert stringify(List["int"], False) == "List[int]" + assert stringify(List["int"], True) == "~typing.List[int]" + + assert stringify("Tuple[str]", False) == "Tuple[str]" + assert stringify("Tuple[str]", True) == "Tuple[str]" + + assert stringify("unknown", False) == "unknown" + assert stringify("unknown", True) == "unknown" def test_stringify_type_hints_Callable(): - assert stringify(Callable) == "Callable" + assert stringify(Callable, False) == "Callable" + assert stringify(Callable, True) == "~typing.Callable" if sys.version_info >= (3, 7): - assert stringify(Callable[[str], int]) == "Callable[[str], int]" - assert stringify(Callable[..., int]) == "Callable[[...], int]" + assert stringify(Callable[[str], int], False) == "Callable[[str], int]" + assert stringify(Callable[[str], int], True) == "~typing.Callable[[str], int]" + + assert stringify(Callable[..., int], False) == "Callable[[...], int]" + assert stringify(Callable[..., int], True) == "~typing.Callable[[...], int]" else: - assert stringify(Callable[[str], int]) == "Callable[str, int]" - assert stringify(Callable[..., int]) == "Callable[..., int]" + assert stringify(Callable[[str], int], False) == "Callable[str, int]" + assert stringify(Callable[[str], int], True) == "~typing.Callable[str, int]" + + assert stringify(Callable[..., int], False) == "Callable[..., int]" + assert stringify(Callable[..., int], True) == "~typing.Callable[..., int]" def test_stringify_type_hints_Union(): - assert stringify(Optional[int]) == "Optional[int]" - assert stringify(Union[str, None]) == "Optional[str]" - assert stringify(Union[int, str]) == "Union[int, str]" + assert stringify(Optional[int], False) == "Optional[int]" + assert stringify(Optional[int], True) == "~typing.Optional[int]" + + assert stringify(Union[str, None], False) == "Optional[str]" + assert stringify(Union[str, None], True) == "~typing.Optional[str]" + + assert stringify(Union[int, str], False) == "Union[int, str]" + assert stringify(Union[int, str], True) == "~typing.Union[int, str]" if sys.version_info >= (3, 7): - assert stringify(Union[int, Integral]) == "Union[int, numbers.Integral]" - assert (stringify(Union[MyClass1, MyClass2]) == + assert stringify(Union[int, Integral], False) == "Union[int, numbers.Integral]" + assert stringify(Union[int, Integral], True) == "~typing.Union[int, ~numbers.Integral]" + + assert (stringify(Union[MyClass1, MyClass2], False) == "Union[tests.test_util_typing.MyClass1, tests.test_util_typing.]") + assert (stringify(Union[MyClass1, MyClass2], True) == + "~typing.Union[~tests.test_util_typing.MyClass1, ~tests.test_util_typing.]") else: - assert stringify(Union[int, Integral]) == "numbers.Integral" - assert stringify(Union[MyClass1, MyClass2]) == "tests.test_util_typing.MyClass1" + assert stringify(Union[int, Integral], False) == "numbers.Integral" + assert stringify(Union[int, Integral], True) == "~numbers.Integral" + + assert stringify(Union[MyClass1, MyClass2], False) == "tests.test_util_typing.MyClass1" + assert stringify(Union[MyClass1, MyClass2], True) == "~tests.test_util_typing.MyClass1" def test_stringify_type_hints_typevars(): @@ -258,52 +336,83 @@ def test_stringify_type_hints_typevars(): T_contra = TypeVar('T_contra', contravariant=True) if sys.version_info < (3, 7): - assert stringify(T) == "T" - assert stringify(T_co) == "T_co" - assert stringify(T_contra) == "T_contra" - assert stringify(List[T]) == "List[T]" + assert stringify(T, False) == "T" + assert stringify(T, True) == "T" + + assert stringify(T_co, False) == "T_co" + assert stringify(T_co, True) == "T_co" + + assert stringify(T_contra, False) == "T_contra" + assert stringify(T_contra, True) == "T_contra" + + assert stringify(List[T], False) == "List[T]" + assert stringify(List[T], True) == "~typing.List[T]" else: - assert stringify(T) == "tests.test_util_typing.T" - assert stringify(T_co) == "tests.test_util_typing.T_co" - assert stringify(T_contra) == "tests.test_util_typing.T_contra" - assert stringify(List[T]) == "List[tests.test_util_typing.T]" + assert stringify(T, False) == "tests.test_util_typing.T" + assert stringify(T, True) == "~tests.test_util_typing.T" + + assert stringify(T_co, False) == "tests.test_util_typing.T_co" + assert stringify(T_co, True) == "~tests.test_util_typing.T_co" + + assert stringify(T_contra, False) == "tests.test_util_typing.T_contra" + assert stringify(T_contra, True) == "~tests.test_util_typing.T_contra" + + assert stringify(List[T], False) == "List[tests.test_util_typing.T]" + assert stringify(List[T], True) == "~typing.List[~tests.test_util_typing.T]" if sys.version_info >= (3, 10): - assert stringify(MyInt) == "tests.test_util_typing.MyInt" + assert stringify(MyInt, False) == "tests.test_util_typing.MyInt" + assert stringify(MyInt, True) == "~tests.test_util_typing.MyInt" else: - assert stringify(MyInt) == "MyInt" + assert stringify(MyInt, False) == "MyInt" + assert stringify(MyInt, True) == "MyInt" def test_stringify_type_hints_custom_class(): - assert stringify(MyClass1) == "tests.test_util_typing.MyClass1" - assert stringify(MyClass2) == "tests.test_util_typing." + assert stringify(MyClass1, False) == "tests.test_util_typing.MyClass1" + assert stringify(MyClass1, True) == "~tests.test_util_typing.MyClass1" + + assert stringify(MyClass2, False) == "tests.test_util_typing." + assert stringify(MyClass2, True) == "~tests.test_util_typing." def test_stringify_type_hints_alias(): MyStr = str MyTuple = Tuple[str, str] - assert stringify(MyStr) == "str" - assert stringify(MyTuple) == "Tuple[str, str]" # type: ignore + + assert stringify(MyStr, False) == "str" + assert stringify(MyStr, True) == "str" + + assert stringify(MyTuple, False) == "Tuple[str, str]" # type: ignore + assert stringify(MyTuple, True) == "~typing.Tuple[str, str]" # type: ignore @pytest.mark.skipif(sys.version_info < (3, 8), reason='python 3.8+ is required.') def test_stringify_type_Literal(): from typing import Literal # type: ignore - assert stringify(Literal[1, "2", "\r"]) == "Literal[1, '2', '\\r']" + assert stringify(Literal[1, "2", "\r"], False) == "Literal[1, '2', '\\r']" + assert stringify(Literal[1, "2", "\r"], True) == "~typing.Literal[1, '2', '\\r']" @pytest.mark.skipif(sys.version_info < (3, 10), reason='python 3.10+ is required.') def test_stringify_type_union_operator(): - assert stringify(int | None) == "int | None" # type: ignore - assert stringify(int | str) == "int | str" # type: ignore - assert stringify(int | str | None) == "int | str | None" # type: ignore + assert stringify(int | None, False) == "int | None" # type: ignore + assert stringify(int | None, True) == "int | None" # type: ignore + + assert stringify(int | str, False) == "int | str" # type: ignore + assert stringify(int | str, True) == "int | str" # type: ignore + + assert stringify(int | str | None, False) == "int | str | None" # type: ignore + assert stringify(int | str | None, True) == "int | str | None" # type: ignore def test_stringify_broken_type_hints(): - assert stringify(BrokenType) == 'tests.test_util_typing.BrokenType' + assert stringify(BrokenType, False) == 'tests.test_util_typing.BrokenType' + assert stringify(BrokenType, True) == '~tests.test_util_typing.BrokenType' def test_stringify_mock(): with mock(['unknown']): import unknown - assert stringify(unknown.secret.Class) == 'unknown.secret.Class' + assert stringify(unknown.secret.Class, False) == 'unknown.secret.Class' + assert stringify(unknown.secret.Class, True) == 'unknown.secret.Class' From 5aa6cbbca85ddc3fe5dd93d45a7cf5073db2f334 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 2 Dec 2021 21:13:48 +0900 Subject: [PATCH 067/192] Add `unqualified_typehints` parameter to stringify_signature() To make the generated function signatures simple, this adds a new parameter `unqualified_typehints` to sphinx.util.inspect: stringify_signature() to suppress the leading module name of typehints. --- sphinx/util/inspect.py | 9 ++++++--- tests/test_util_inspect.py | 4 ++++ 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 24ea49ae04e..3a282ad7cf3 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -744,10 +744,13 @@ def evaluate(annotation: Any, globalns: Dict, localns: Dict) -> Any: def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, - show_return_annotation: bool = True) -> str: + show_return_annotation: bool = True, + unqualified_typehints: bool = False) -> str: """Stringify a Signature object. :param show_annotation: Show annotation in result + :param unqualified_typehints: Show annotations as unqualified + (ex. io.StringIO -> StringIO) """ args = [] last_kind = None @@ -771,7 +774,7 @@ def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, if show_annotation and param.annotation is not param.empty: arg.write(': ') - arg.write(stringify_annotation(param.annotation)) + arg.write(stringify_annotation(param.annotation, unqualified_typehints)) if param.default is not param.empty: if show_annotation and param.annotation is not param.empty: arg.write(' = ') @@ -791,7 +794,7 @@ def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, show_return_annotation is False): return '(%s)' % ', '.join(args) else: - annotation = stringify_annotation(sig.return_annotation) + annotation = stringify_annotation(sig.return_annotation, unqualified_typehints) return '(%s) -> %s' % (', '.join(args), annotation) diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index 1bf077b4faf..f331acb233e 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -259,6 +259,10 @@ def test_signature_annotations(): sig = inspect.signature(f7) assert stringify_signature(sig, show_return_annotation=False) == '(x: Optional[int] = None, y: dict = {})' + # unqualified_typehints is True + sig = inspect.signature(f7) + assert stringify_signature(sig, unqualified_typehints=True) == '(x: ~typing.Optional[int] = None, y: dict = {}) -> None' + @pytest.mark.skipif(sys.version_info < (3, 8), reason='python 3.8+ is required.') @pytest.mark.sphinx(testroot='ext-autodoc') From c71ff1cd21ce796f871adef54e8a53c0eaa9e53a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Dec 2021 01:28:10 +0900 Subject: [PATCH 068/192] Close #9075: autodoc: Add a config variable autodoc_unqualified_typehints If autodoc_unqualified_typehints feature enabled, autodoc suppresses the leading module names of typehints of function signatures (ex. `io.StringIO` -> `StringIO`) --- CHANGES | 3 + doc/usage/extensions/autodoc.rst | 7 +++ sphinx/ext/autodoc/__init__.py | 16 ++++++ tests/test_ext_autodoc_configs.py | 93 +++++++++++++++++++++++++++++++ 4 files changed, 119 insertions(+) diff --git a/CHANGES b/CHANGES index 9ce12b924aa..727ff22fe3e 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,9 @@ Deprecated Features added -------------- +* #9075: autodoc: Add a config variable :confval:`autodoc_unqualified_typehints` + to suppress the leading module names of typehints of function signatures (ex. + ``io.StringIO`` -> ``StringIO``) * #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 diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index 5ac3cd17179..dab09c92c5f 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -662,6 +662,13 @@ There are also config values that you can set: .. __: https://mypy.readthedocs.io/en/latest/kinds_of_types.html#type-aliases .. versionadded:: 3.3 +.. confval:: autodoc_unqualified_typehints + + If True, the leading module names of typehints of function signatures (ex. + ``io.StringIO`` -> ``StringIO``). Defaults to False. + + .. versionadded:: 4.4 + .. confval:: autodoc_preserve_defaults If True, the default argument values of functions will be not evaluated on diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index a4d5884e89e..5ada06a6a50 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1295,6 +1295,8 @@ def can_document_member(cls, member: Any, membername: str, isattr: bool, parent: def format_args(self, **kwargs: Any) -> str: if self.config.autodoc_typehints in ('none', 'description'): kwargs.setdefault('show_annotation', False) + if self.config.autodoc_unqualified_typehints: + kwargs.setdefault('unqualified_typehints', True) try: self.env.app.emit('autodoc-before-process-signature', self.object, False) @@ -1323,6 +1325,9 @@ def add_directive_header(self, sig: str) -> None: self.add_line(' :async:', sourcename) def format_signature(self, **kwargs: Any) -> str: + if self.config.autodoc_unqualified_typehints: + kwargs.setdefault('unqualified_typehints', True) + sigs = [] if (self.analyzer and '.'.join(self.objpath) in self.analyzer.overloads and @@ -1561,6 +1566,8 @@ def get_user_defined_function_or_method(obj: Any, attr: str) -> Any: def format_args(self, **kwargs: Any) -> str: if self.config.autodoc_typehints in ('none', 'description'): kwargs.setdefault('show_annotation', False) + if self.config.autodoc_unqualified_typehints: + kwargs.setdefault('unqualified_typehints', True) try: self._signature_class, self._signature_method_name, sig = self._get_signature() @@ -1582,6 +1589,9 @@ def format_signature(self, **kwargs: Any) -> str: # do not show signatures return '' + if self.config.autodoc_unqualified_typehints: + kwargs.setdefault('unqualified_typehints', True) + sig = super().format_signature() sigs = [] @@ -2110,6 +2120,8 @@ def import_object(self, raiseerror: bool = False) -> bool: def format_args(self, **kwargs: Any) -> str: if self.config.autodoc_typehints in ('none', 'description'): kwargs.setdefault('show_annotation', False) + if self.config.autodoc_unqualified_typehints: + kwargs.setdefault('unqualified_typehints', True) try: if self.object == object.__init__ and self.parent != object: @@ -2160,6 +2172,9 @@ def document_members(self, all_members: bool = False) -> None: pass def format_signature(self, **kwargs: Any) -> str: + if self.config.autodoc_unqualified_typehints: + kwargs.setdefault('unqualified_typehints', True) + sigs = [] if (self.analyzer and '.'.join(self.objpath) in self.analyzer.overloads and @@ -2833,6 +2848,7 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('autodoc_typehints_description_target', 'all', True, ENUM('all', 'documented')) app.add_config_value('autodoc_type_aliases', {}, True) + app.add_config_value('autodoc_unqualified_typehints', False, 'env') app.add_config_value('autodoc_warningiserror', True, True) app.add_config_value('autodoc_inherit_docstrings', True, True) app.add_event('autodoc-before-process-signature') diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index 643899286a4..f3bcd6a97a1 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1142,6 +1142,99 @@ def test_autodoc_typehints_description_and_type_aliases(app): ' myint\n' == context) +@pytest.mark.sphinx('html', testroot='ext-autodoc', + confoverrides={'autodoc_unqualified_typehints': True}) +def test_autodoc_unqualified_typehints(app): + if sys.version_info < (3, 7): + Any = 'Any' + else: + Any = '~typing.Any' + + options = {"members": None, + "undoc-members": None} + actual = do_autodoc(app, 'module', 'target.typehints', options) + assert list(actual) == [ + '', + '.. py:module:: target.typehints', + '', + '', + '.. py:data:: CONST1', + ' :module: target.typehints', + ' :type: int', + '', + '', + '.. py:class:: Math(s: str, o: ~typing.Optional[%s] = None)' % Any, + ' :module: target.typehints', + '', + '', + ' .. py:attribute:: Math.CONST1', + ' :module: target.typehints', + ' :type: int', + '', + '', + ' .. py:attribute:: Math.CONST2', + ' :module: target.typehints', + ' :type: int', + ' :value: 1', + '', + '', + ' .. py:method:: Math.decr(a: int, b: int = 1) -> int', + ' :module: target.typehints', + '', + '', + ' .. py:method:: Math.horse(a: str, b: int) -> None', + ' :module: target.typehints', + '', + '', + ' .. py:method:: Math.incr(a: int, b: int = 1) -> int', + ' :module: target.typehints', + '', + '', + ' .. py:method:: Math.nothing() -> None', + ' :module: target.typehints', + '', + '', + ' .. py:property:: Math.prop', + ' :module: target.typehints', + ' :type: int', + '', + '', + '.. py:class:: NewAnnotation(i: int)', + ' :module: target.typehints', + '', + '', + '.. py:class:: NewComment(i: int)', + ' :module: target.typehints', + '', + '', + '.. py:class:: SignatureFromMetaclass(a: int)', + ' :module: target.typehints', + '', + '', + '.. py:function:: complex_func(arg1: str, arg2: List[int], arg3: Tuple[int, ' + 'Union[str, Unknown]] = None, *args: str, **kwargs: str) -> None', + ' :module: target.typehints', + '', + '', + '.. py:function:: decr(a: int, b: int = 1) -> int', + ' :module: target.typehints', + '', + '', + '.. py:function:: incr(a: int, b: int = 1) -> int', + ' :module: target.typehints', + '', + '', + '.. py:function:: missing_attr(c, a: str, b: Optional[str] = None) -> str', + ' :module: target.typehints', + '', + '', + '.. py:function:: tuple_args(x: ~typing.Tuple[int, ~typing.Union[int, str]]) ' + '-> ~typing.Tuple[int, int]', + ' :module: target.typehints', + '', + ] + + @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodoc_default_options(app): # no settings From 49a31b71aa9e00074fdacfc7aaad43f6c5493fba Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 5 Dec 2021 00:12:09 +0000 Subject: [PATCH 069/192] Update message catalogs --- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 80 +++++----- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70589 -> 70589 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101832 -> 101832 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 82 +++++----- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/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 | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 79780 -> 79780 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83432 -> 83622 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 4 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19643 -> 19643 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 82 +++++----- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80639 -> 80820 bytes sphinx/locale/pt_BR/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 | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 79 +++++----- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78906 -> 79005 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 77 +++++----- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 82 +++++----- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63473 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 73 +++++---- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 73 +++++---- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 42177 -> 42177 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 143 ++++++++++-------- 107 files changed, 1477 insertions(+), 1232 deletions(-) diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 9abdf46899a9b24b7951b92185f7fc83d5030395..d7a13957b5776bda560e7c7fa2dd1bbf0f1797ca 100644 GIT binary patch delta 33 kcmbPjKihu8PF{8k1p@;sL&M1jcojH|pq$MwcsC0I0IuH(00000 delta 33 lcmbPjKihu8PF{9H1p@;sLxaf&cojGdO(2}jFL*Z#0syVr3Gx5{ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 530c3139a92..40840e0cdda 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/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: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\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 "অন্যান্য পরিবর্তন" #: 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/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 4658a29ca35a3682a02564a37691d1ac33f624a0..ff3e106d7d8b9646b50117c64b019f2767518ee4 100644 GIT binary patch delta 21 dcmaDU^ipWUTviSv3k3rMD?`K0OIeRF0{~Na2KxX2 delta 21 dcmaDU^ipWUTviT469oeUD?@|LOIeRF0{~Ms2K4{{ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index d0852b23082..f7d122331e6 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 594d6a37db3973ca4793b9959eda80e39913727b..c93b174cdd59159a2e7075b3988b3b7b65f5288a 100644 GIT binary patch delta 17 YcmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -1879,7 +1879,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" @@ -1888,12 +1888,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "Vrací" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "Typ návratové hodnoty" @@ -1906,7 +1906,7 @@ msgid "variable" msgstr "proměnná" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "funkce" @@ -1984,7 +1984,7 @@ msgid "Throws" msgstr "Vyvolá" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "třída" @@ -2001,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -2016,7 +2016,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2030,20 +2030,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "modul" @@ -2074,7 +2074,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "výjimka" @@ -2086,92 +2086,92 @@ msgstr "příkaz" msgid "built-in function" msgstr "vestavěná funkce" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "Proměnné" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2613,6 +2613,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2886,7 +2892,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2912,17 +2918,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 223a1734ed53a33d864e62e13494622d5b625baa..2aeaf6ee5b5f6e414e580d52d518ca78dc8b75b0 100644 GIT binary patch delta 33 jcmbPZG{4F3U60FaglK>z>% diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 3e2da837643..6bc7a1362c1 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/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: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\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 "Newidiadau arall" #: 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 i'r pennawd hwn" #: 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 i'r diffiniad hwn" @@ -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 i'r tabl hwn" -#: 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 i'r cod hwn" -#: 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 i'r ddelwedd hon" -#: 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 i'r toctree hwn" -#: 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/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 1ebe687114f34efd03af5a759572c0581d7f7165..b721b4e003bf208758b76c564b08b33a15698347 100644 GIT binary patch delta 33 kcmZ1)xioUaGAVWo1p@;sL&M2yr4%@fpq$NDr7j2p0JfM4Qvd(} delta 33 lcmZ1)xioUaGAVXL1p@;sLxag{r4%>}O(2}jSEVip0sys>3Pk__ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index daa69177e76..a4fbd7a4167 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/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: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\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 "" @@ -3373,14 +3380,14 @@ msgid "Other changes" msgstr "Andere Änderungen" #: 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 zu dieser Überschrift" #: 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 zu dieser 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 "Link zu dieser Tabelle" -#: 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 zu diesem Quellcode" -#: 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 zu diesem Bild" -#: 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 "Permanenter Link zu diesem Inhaltsverzeichnis" -#: 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 36f545f21c93d4ff79069dfda66150658e5dbc94..88f15e5aecbee51b7eb05c48431d3e591dc257e7 100644 GIT binary patch delta 18 ZcmZo@V{K?--QdwQS)qw\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 3b829a88b8e556f320b45a8f4f6a3c0caa8f46ef..343cd01201c9f26fbc5acd19d5c4a780122eee34 100644 GIT binary patch delta 13 Vcmcb?e1mzyhKU_~8}~^u0st$&1*iZ3 delta 19 acmcb?e1mzy1`b0L1p@;sLxYVw6c_\n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 3a3bf7d87f4bbd83999ca326de30d8c05e004baa..bd7a812769cf3b6a62583d93bc9947c37de21f6c 100644 GIT binary patch delta 30 gcmeBT>0+7C$!?)wU|?lvIB|jkhY^&$aYqm%0DXQ48~^|S delta 30 hcmeBT>0+7C$!@4%U|?lvFmZwchoK3Cy>UknBLIAl2o3-M diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 4a56f82c4b5..e20c398b0d2 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/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: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\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/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 484f083c9dfcf98809ca3a9bbd50c7922aaac846..01d35c050893c53317b00037258cbba055403972 100644 GIT binary patch delta 30 gcmZo=X=Rzv$!?)wU|?lvIB|jkhY^&$afdG>0DMvi4FCWD delta 30 hcmZo=X=Rzv$!@4%U|?lvFmZwchoK3Cy>W*xBLI722mb&7 diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 220ed90e835..afef9cf85a3 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/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: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\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/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 61b9aa939d0ef2521b0b95b888e0e1b4f05cc1da..827103b33f3184d3044f0797c81b9159ad8e07a3 100644 GIT binary patch delta 21 ccmX@WcYtq06bpxug@S>Bm7(G0B$j(j07qR0G5`Po delta 21 ccmX@WcYtq06bpx;iGqQFm7&4rB$j(j07n`IEC2ui diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 93862c5f60d..0f9b8e98456 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index c3fada2f9163eb34e4449675262572a771c8483e..c630965345ae83cd9fbe3563c7c325136ba8c0e7 100644 GIT binary patch delta 35 mcmdnHoMrEFmJM-}*)0?d46F\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "número de trabajo debe ser un número positivo" #: 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 "" @@ -2891,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 "" @@ -2906,28 +2906,28 @@ msgstr "" 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 "" -#: 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." @@ -2990,30 +2990,30 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary genera archivos .rst internamente. Pero su source_suffix no contiene archivo .rst. Saltado." -#: 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: no se pudo determinar %r que se documentará, se produjo la siguiente excepción:\n%s" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] generar autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escribiendo a %s" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "[autosummary] fallo al importar %r: %s" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3028,29 +3028,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGenere ReStructuredText usando directivas de resumen automático \"autosummary\".\n\nsphinx-autogen es una interfaz para sphinx.ext.autosummary.generate. Genera\nlos archivos reStructuredText de las directivas autosummary contenidas en el\nlos archivos de entrada dados.\n\nEl formato de la directiva autosummary está documentado en el módulo Python\n``sphinx.ext.autosummary`` y se puede leer usando el siguiente comando::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "archivos fuente para generar archivos rST para" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "directorio para colocar toda la salida en" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufijo predeterminado para archivos (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "directorio de plantillas personalizadas (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documento importados miembros (predeterminado: %(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 "Argumentos de palabras clave" @@ -3376,14 +3383,14 @@ msgid "Other changes" msgstr "Otros cambios" #: 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 "Enlazar permanentemente con 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 "Enlazar permanentemente con esta definición" @@ -3551,37 +3558,37 @@ msgstr "excepción al evaluar solamente la expresión directiva: %s" msgid "default role %s not found" msgstr "rol por defecto %s no encontrado" -#: 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 no está definido para %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 "Cualquier ID no asignado para el nodo %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 "Enlace permanente a esta tabla" -#: 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 "Enlace permanente a este código fuente" -#: 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 "Enlace permanente a esta imagen" -#: 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 "Enlace permanente a la tabla de contenidos" -#: 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 "No se pudo obtener el tamaño de la imagen. La opción :scale: se ignora." diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 5bbf9987122e5f7fa31d49da527b11e4613fbe20..31d9aa88f6c72673bea960861d3407187b85d27c 100644 GIT binary patch delta 35 lcmX@t$#kxhX+ydXyM=;*ft8`*\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\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 "Põlvnemine: %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 "[autosummary] automaatkokkuvõtte genereerimine failile: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] kirjutamine kataloogi %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 "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "lähtefailid, mille kohta rST-faile genereerida" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "väljundfailide kataloog" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "failide vaikimisi järelliide (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "kohandatud mallide kataloog (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "imporditud liikmete dokumenteerimine (vaikimisi: %(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 "Võtmesõnadega argumendid" @@ -3373,14 +3380,14 @@ msgid "Other changes" msgstr "Ülejäänud muutused" #: 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 "Püsiviit sellele pealkirjale" #: 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 "Püsiviit sellele definitsioonile" @@ -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 "Püsiviit sellele tabelile" -#: 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 "Püsiviit sellele programmikoodile" -#: 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 "Püsiviit sellele pildile" -#: 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 "Püsiviit sellele sisukorrapuule" -#: 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/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 63b6965e4e59eee743d109fa06801859ecbc63ee..2351cefa015993f62ed84cc480abae6164c9452c 100644 GIT binary patch delta 33 jcmexw^50}bhyc5Vf`NgRq2c6c0R;{tC}(rCz#mQkvh)ef delta 33 kcmexw^50}bhyc5xf`NgRp~2*60R;|269{K>v%nut0I}~0zW@LL diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 9f8358359c1..5bc0b37d50e 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/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: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\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 "Beste aldaketak" #: 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 "Goiburu honetarako esteka iraunkorra" #: 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 "Definizio honetarako esteka iraunkorra" @@ -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/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 3251057a88deee554b848a64b2efb9dcb5ee04e7..4fc2516be478f1603bea70b50c15979cfa4bf10f 100644 GIT binary patch delta 34 lcmX>xo9)DGwhcd5uv;h?7+4t^PFktJVFYDw)>ygV2>{~53~&Gd delta 34 mcmX>xo9)DGwhcd5up25E7+4t^Oj@bHVQ2zjZ`N43;0XZX#tdQr diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 6c7d998c928..e1b2e2691ed 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/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: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\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 "ویژگی نایاب در گزینه‌ی :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" @@ -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 "نام جانشین %s" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "نام جانشین نوع متغیر(%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 "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: 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 "خلاصه‌ی خودکار به طور داخلی پرونده‌های rst را ایجاد می‌کند. ولی پسوند منبع شما شامل 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 "خلاصه‌ی خودکار: شکست در تشخیص %r برای مستندسازی، این ایراد به وجود آمد:\n%s" -#: 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 "[خلاصه‌ی خودکار]: فراخوان %r: %s شکست خورد" -#: 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تولید ReStructuredText با استفاده از دستورالعمل‌های خلاصه‌ی خودکار.\n\nخودکارساز اسفینکس رابط کابر پسندی برای sphinx.ext.autosummary.generate (پیمانه‌ی افزونه‌ی خلاصه‌ساز اسفنیکس) است.\nاین افزونه پرونده های متن reStructuredText را از دستورالعمل‌های خلاصه‌ی خودکاری تولید می‌کند که در پرونده‌های درون‌داد مشخّص شده قرار دارد.\n\nقالب دستورالعمل خلاصه‌ی خودکار درپیمانه‌ی افزونه‌ی خلاصه‌ی خودکار اسفنیکس (sphinx.ext.autosummary) مستند سازی شده می توان آن را با دستور زیر خواند::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py: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 "نشانوندهای کلیدی" @@ -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/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index accdd0209abbde9d952d2fc2b24d239cbadebc85..d3624370a3703ac7fc14c816ea9590b2d89c8a24 100644 GIT binary patch delta 33 jcmaDL_CRdISvGbH1p@;sL&M2e*c3R7pq$Nr*iu*kxEKlp delta 33 kcmaDL_CRdISvGb<1p@;sLxagz*c3PnO(2}jf7nu30Jjqf^#A|> diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index c8d2cfa674e..11d0d62ce14 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/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: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\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 "" #: 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/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 1712547e33298f76ea1a01eae67f1542f81206c2..e7e03926220c6384afde71f31e53b4f607e4bf81 100644 GIT binary patch delta 21 ccmZo*X<(Vq#$u#vU^=l&ZDI%C#(hqV07(f40RR91 delta 25 hcmZo*X<(VqHgTQ6#A#9-h9(LI23Cd!8+Ujx0sw6H2k8I+ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 3933e812ebe..887ffe3fe51 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -1877,7 +1877,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1886,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1904,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "" @@ -1982,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "" @@ -1999,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "" @@ -2072,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "" @@ -2084,92 +2084,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2611,6 +2611,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2884,7 +2890,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2910,17 +2916,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 84dc8f213ce85d588a5f7147c824f7f44190f40a..5476d75a958642e60e6e02a701c5248ed9bbdad9 100644 GIT binary patch delta 33 kcmZ3YzC?Y)Q7(211p@;sL&M2uxD+^ypq$NLxHfPA0IdQE@c;k- delta 33 lcmZ3YzC?Y)Q7(2v1p@;sLxag@xD+@HO(2}jU${1K0067~3F80& diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index a0b42e379ab..91f2a6985f1 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/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: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\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 "שינויים אחרים" #: 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/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index aa5d59ec47cdca9f7ccf6dff75a4b971ba726cd3..29bd0cbdad39e4a990bf880e17ba60d321f353c0 100644 GIT binary patch delta 13 Vcmey*{GWNkhKU_~8}~Uf0st?y1|0wZ delta 19 acmey*{GWNk1`b0L1p@;sLxYVw+!+B#>;`@S diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 937bd27a309..4d45981e34e 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index b8292f67986df181b18a7d6b565b921ef57199ba..673ee280a7fd3d53623857505914ecb2f3e159c4 100644 GIT binary patch delta 16 Ycmewt{V#gMbE(PurT8{~mEsfz08Z=&yZ`_I delta 21 ccmewt{V#gMb14o(69oeUD?@|L@1^*K0cSf0$^ZZW diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index a9d5c32d50b..dc8f4d9d609 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 28b1a7eebe380aa9cdd8db41e1e15cc7e455e02e..404e363308faafb6fe23ab03a02095d2c6c38364 100644 GIT binary patch delta 23 fcmeCV%iMF9dBdqT4kHT%0|P5V!_Al4cBKOVbgBuH delta 23 fcmeCV%iMF9dBdqT4nq?K0|P5VgUy%PcBKOVbY}^T diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 53f47091844..cb970755c4f 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 1c652b1419bc43ce61627bc12c6cd49641665166..2e1bd88e5111f95e3f7c514cf6703a82414fa277 100644 GIT binary patch delta 33 jcmaDY`C4*A1v|Tif`NgRq2c6ub_EV2C};C>b{AFvt2_w= delta 33 kcmaDY`C4*A1v|T;f`NgRp~2*Ob_EVY69{MXa&{M10ID|#_5c6? diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 24b917b383d..4fb01977851 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/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: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\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 "" #: 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 "Varanlegur hlekkur á þennan titil" #: 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 "Varanlegur hlekkur á þessa skilgreiningu" @@ -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 "Varanlegur hlekkur á þetta hugtak" -#: 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 "Varanlegur hlekkur á þessa töflu" -#: 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 "Varanlegur hlekkur á þennan kóða" -#: 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 "Varanlegur hlekkur á þessa mynd" -#: 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/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index e5af94a97912dd089297efe46dad651ec5510764..506f06210886b99aaa196c4928cf921e435f9e6c 100644 GIT binary patch delta 17 ZcmZ4To@L2\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 03682088032190fb53217a82925858bc2944460a..d3f7c4027aedf3a61a124d0e41c71e373f2a0518 100644 GIT binary patch delta 12267 zcmYM)34Bf0+Q;#INCXLDN+cmUK?sqEL}V~VB4SoEHEU{~hnjcIV~ZMcTSKX-rj}A_ zXsO{U9YWDkwB;IZGte4}qP@TWS^M+8{oLE{de+`&@3o%wtaVPc|6Sz0_Tr6!ad&OH;Gx{Ik7~-S^%Nm9|umo19XIb7@ z4Qpa8d>gxBL%f5DmStO2`FkcEJ+U!v#>#jbi(%0u{*Pra0z*&(O~o+mjo~;Q^}_X7 z7Pnw&JcR!E4eEK<(HHMxS>A6wq!B=ePqMi&6iX7J*W@rgQHOon&w=ehaHJO zL_OyPrefI?6L)qTh8oB$48#>!f%jWGY53tO)X2Zbs(1&q33$-+*9JGiAueHYqP}F(X;;(XcXc?3uIZW)>spldTy|+!{|kvgYhoQx`;8vMOg>EC=nH> zqEbEzRa_Gs7o#%s0V<<+F&CesAN6P5Y3E6W^$>MKNPEkA6>Fo4Xp!SK)DoP=?sx^2 ziTGE{+IPk{;w&tV|3Xb@BPv68aRmBMIFyGq0c}4TM`);c&Y&+|LG|B8t=$8RM0ZE? z;1*b#xRVpVj=DY?RaEbxKkh|k?j-iWGpGzz?PQj+W+&Fa79DYP1d!T3SdMr?XY+tX zsO`80^@8nK6faeE02l|pveJ%`(U@cT;;!zK7fXYl8)UN4O*vD!Q=VW=3^T158G}pe^cpS5$@uBgwL+ zA!D_E#F`k_#~eVtur}|vmeGjh!j~9>x!4|q`m&dC2!`QR)OLH0Iz9a%*VFaygxeySD`YLhY^@KfalsYdeNAN(~zuK-mjUN_d||IYmO7|LKWe8r$2Q4kZ6t>wPo|<6-o|qv*zy7>~D6YZo-g zta&Ud1Fcan9ElBZD=Ou;Py=W**eq2hdK0%tZTBvy+L$$%{A)X`phE-Mj%RQW>OoV6 zSk^+kgb~=6LeT@}VhHX))O zZ5q^rH3}2(0#fK!F)GiEuVWjWhmm**o8#Z8fn|&~OYkZxlglv)x1pBoCKkhIs0568XIKrr$C|3Ig+auxpdK_7m4OAQfo($VnuC~% zS5UhmWSq(L1mwN8wTVVWE}Xz}_$#WaAERaxINm89R7$&GSsZ{`>o-tEXk$G*fc5bn zw!oT{y5ez|g1a#j^DtTazwR3*r6Vwo3;P{^!;-`mCz>-q3ImAyq6Yki6R*HD;vJ}^ zxsQ5I;v|!yA*lOjqcXJtE8tNK<^9%W8k*4)EQ7w2&6i0iDkJq!Yu^eR;yCojPf$yC z0%P$4YWsRkF)uELwTY`>Fm^#`7YWjj$<^E@hs}WUQ^9T%cGk(9yO3o7>$E5 z5VKJk`55cqzfmuEisiA&G_&oJu|089)IgV`25@p3`B#zU(V=2_iJEDp>1JjbSdqAk z<5*M`FU2g}j~lR}mJz=|W#AzyGf%NQ7JbvyK!1!OUWcLh?VH@7waBMKDe|6SZg8U> z*bbv`wiEA04e+)Tmz-&i)HKusSEB}a2(_fYVhBFMZsmT)^J;Xc%PQGjd!tNt9bjrX8x>jW0TA5asvuhY<4 zKE+h@pKAuv0X3suSP!S7w$onJeJ@cDXgtrXX%AE_EJE#q53nufVo^+P|!3WfoS#cTqDtfEw{d)S7!OF#`=nrMe+j!%i5EQ&0n4 zi#6~JM&m=r@TKPdcIZR@1hkvcm`=kFPhw3xkBRsKD`VYdCY4=L8F~{n&^3;Soc_zG z`yZiZ9{7%_txBk+O>i87D)RT=A^)1eK04~-RV;#m%Z;I^2S%V~n2DJ<#JRo~s}LVT z&FE)L$2*vSQ7cT`4~r9TK`-2cn(+P=oX4Vg8B5{~)P29B z&V`_VnVH0)_I)C{aTK=4WvI;EM9;zYuKAoB+tHtl<tZ@;hLcbec^j44eK-IQW03ZL*jjTT8GX6X z1a*+K#uOZfZu}UV;5k&Wm0oAIX%K2a^-u$9ftvX!Cti(RiH~C=41V8apgXqW{nj!X z#qc^R)pt=NeeCqVK&8CMdh_6Tj3w@km2e4ahPzM$xqy_3b;oh~29x@L4~&_p3{OV8 zCyk{vLa+ce^I{v#1M8p;l&;ttXJH)P!~`tA$;7QNlz2J@;ac><1E~9spqBChDnms! zo9d6=?Ck$n=upZgq6V@Nz40h&0H;vf>JN;-ur21kW~gn|&v6!NW}BV(Fa{7`M-|~C ztb#95?+f2*n+vVCn$&eheP9r38`-FtokJa|_c0lRJ~RhbM^yh3^udFuCHNAn;YF-~ z&mGHcGXsxC4YY+#qauwys2iuEQn(WJppP*Sk30T^yIiCa&*J(WytptwzjyIK;<39q z*KxrfKFjBf?tjp6twR>cYjOlBIQH}OE!0EVMJKiOzoi)j?2V;ySyeTYiUK2!$IqCRjP zbpYK*H~#I!VV{}L#W<#5U9M-~7@UGCzI)gO3mr5ER(Eu3|IehM8#bc0(*Z1pmry5R zuH$pmHuO7Wei0>O81X1n29{zX9>oXv1d}oMuo-yOBj%usM@_U5Ch>l&r5ZR3Bk>5< zz}q+yOMPx?z(!>v8xwFFR>WVhCB8t)z-s;lTM-{)4;**YRC^BU^M9e1+V2?aukF>7 zhPK6gEP^{7_o6az2sPrbF%5r2WhmrJGs9R^%7>r^_C5~8OQ`2HJZ>_aj`76ZPy<+e zocuSWag7e$7<|HPzi?FQlCTbrLDj-0)KVQl72nsW30y&a-utAfB|jWM9DrJq$&R0( z29S&WG4vGq??7Y5DUu`_1dH2Tmez>e7FjG55})Q#UdUPPt%Dry(_pEa2XLoG!-w!uu) zgI8g5%ty_%?$_p@`?E2X_$f9*JLMbGF$tT}aTv8Ef1^^>;9K*PYZNLzh_7P-R>Mx; znT$-qIN~|j7(YWT%~RA8R?RUJ>VlcXy^#Oe))xLALC1u1W=+?iQnnqHfg{)*PhbnI zbl&WSfvD>?_HglMLa3U#@xAE}xnO>JRYu)65Cd=omc=>PO^fudbKwCt;6cSMnj14N zIU_}-cnglg!x)COelXt+tx*piiW6}rYC_Mk5{Cb1c1>d}Mm!5U;alkD{nkwyldPUbU~87c@p?q$4)KL8t+2#`3rm{qQ)3V~*n=j%BZ#{)Fq~ zUnA>EM<`BpF06L^996}?U^A@#Glvuo$29yCwa-(2G54**7~(sqB`E)^nR$J56Zgdp zI0H3-DmTc#Qk8VW{7lY3rLdplc+}c1a9r>7A3&w{YpjT6Zkh+yMm;axu>&eIeX%4C zbm9r9T9{_j&^@xw5*7AuHSNqNU5o#}7Pyca@#sRs; zWvBz^s1xU54dS3YGm$hLMtlK>V3U0P+c4ID2aRrY1Q(d?G!|L$r$>(IXSyw3F5_g8sEc_yx;2o2fy3!dt8Va4@@f0 zV`1XU=!4fV7H?r=EdS7aZFk0M#FMZQuE*y13wFiokIeIJR53nu{0lvQ{_lEhs<|lo zb3;301x z{Hsxe4y8B_Kg0E?ly-k+Qn(d0vm2;`#r>B#Xri$SaT@By1F;;=#1zcN3iv&0B6+9@ zK0r;R@N@D%iN>JkX3cM6GI5C){7VUJj;-+;4#FBQ&Dy_%qlv$A;*`J5*Z3$5qW>J~ zbGfKmNc_jd15xolERMHq8j&>a;~cDDxjbK&>##EMIV_D29lc#HPZ0%TIQ-lrIhca~IB`lLm*+$rf=To*#Q|uaq46e-=)x|~_wq-m4?e+K80Y2kq_hvJCdOd~ zzJtZ^3YNwHpi=w9=`ZT-^8EBFgSx*Zw!&rD3$L5lw(1vgd49dl!&kZRJ+{CYAD8Fg zndtZhHl^RIsCi*?)IeWFt@$d{0C!+8p27Zj3$w6!G4q~X7(x6LBenlSi@Q7rMRQb2 zM`Hpmcj7aSd03VH629iXI7}t(gc|TF)IfekRsCaZg5G{6QyHjpr9H;u6b$73*2gq7 zlhfD)3zaY*NJG7#4Jx%uusW`H{0f!&-%)GsRniQwE`||zN7cq8OvHnzqy7)nZYWX8 zW&ZiU91V?VG^+YHqfV+{oc;ogBM$dB1L=f1TC*?~m!L9t4Ey0t{2J3syF7pTt#K~z;gM%73R z|0p~jM`LBYiz?>g{6_|Xn236Qy8zo|y+LCH9o_K`s;Zj=nv}If#WPVES&W*&d#Kdz zbj(MkwpImGe3_^e4?qoY215B?nMVXo639%}BZjrv727gym%)Yo`Qn9K89aWJY_w_rnk|NlTkGb!gb zYc~jWrtiQyn1d=dSGdb_mPcVaaXKm!3$Ouxj<4chj$JCdJU_EPLG}Aoad|Q^05$X3 z7@+;Xh=x-90qTUhj~Ze9sxHr2J`}a>=Af2l7q-WXs5Os>Fb_^erM^FEx6DS}e*iU+ zpHa{CuV$_{k-Xm;OG7W%f-1J}P-pXH)Y3GlZf4pZ^?=!^+SrHMem|j7>>Ft^mx8*l zH)751 zwP!I3&pYu;97yaHWw!A!)CBiNvHx|l1=cbjj6{7c)<&&y3M$n$cExkp0VAW$i8%!| z^ZlrA(c7q_yJUxwdy*lPW*dcFI82z+}|Y zyn_L_5zFHttbpfG)&CpnKJNsxTLMroh(&!H_C>vDJT}6qsEiy&c7<(Sc5WzM&t=Wx zLTS{@R-#h9(Qy}QNe-aC1D<0wOiMJW9fG=lKf3W4Dzi6GyX6I@VC5u}nO>Ns{lA<> zTP{4qRLo3vdHy+nAr>Znj+)^=s2BLBm>C75mMYva1671WQAM``weR<%GWcISj{i6w zuTMs_|K~I?sX2*0#DyE0Z!cfe3ua(6Zb5CUi|8rNMlR2PIhBt3+TM-o&&4(v)7X4& zDk>A(Q4=_Ys6s0a9_oBJa% zop>1PAliem_yVxF=O3>N4STNd~N)&EO(zi{e}(e z)5qO!+_*7=`;Q-&6|?->pmf z@@MbKU;8h2?x#D|TD>%H>tc8Q`jrLmt}IwL-<`Mfv;5g>3f^5&uyR}8qWO7?HpOIr PThbMLU~frRLgN1bD~T@0 delta 12125 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 diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 2f061f6c9a8..1053615a2d1 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-15 01:41+0000\n" +"PO-Revision-Date: 2021-11-28 10:26+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" @@ -3051,7 +3051,7 @@ msgstr "가져온 멤버 문서화 (기본값: %(default)s)" msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "모듈 __all__ 속성의 구성원만 정확히 문서화합니다. (기본값: %(default)s)" #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 186d90c3e3281043cfa8901080f5ebd5c89c3d2f..25a2dbde9d2c2f32f1fc19cabcdbbc6a326d96aa 100644 GIT binary patch delta 33 jcmexk{>Oa7K>>CP1p@;sL&M1@1Qa-opq$Mg1bDas#qA0v delta 33 kcmexk{>Oa7K>>C{1p@;sLxagD1Qa+7O(2}j9|U-~0mSGE7ytkO diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 714e70c41d4..8b2c62eb78a 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/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: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\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 "Kiti pakeitimai" #: 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 "Nuoroda į šią antraštę" #: 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 "Nuoroda į šį apibrėžimą" @@ -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/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 7b7573dc962e4cadcfecefc34e6789f7ddb13acd..9866a366e51f5548d0fec52aa68a0baa51c942d1 100644 GIT binary patch delta 33 jcmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\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 "Citas izmaiņas" #: 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 "Pastāvīga norāde šo virsrakstu" #: 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 "Pastāvīga norāde uz šo definīciju" @@ -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/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index d728211b0991c48dcf8ee0f66d268a533989479f..f92abe1df4a779cf33590aeabe98d1ab5799c84f 100644 GIT binary patch delta 16 YcmX@hf0lm(Bg^EQ%zT^qS@tml05i`8asU7T delta 21 ccmX@hf0lm(BMXP2iGqQFm7&3APL?Cg074-JeE\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index aaa12fb9eb15fc0442e3eee9c79d5c509dc1b6e2..52cca3438008220edeeb99aa727c5629a91680c8 100644 GIT binary patch delta 33 jcmX?TdeC%(gdn?xf`NgRq2XkCK?M#YC}*>~U==3-mtY7W delta 33 kcmX?TdeC%(gdn@2f`NgRp}}N%K?M#&69{LsyI>V30G3+_5&!@I diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 34c4cc2db70..eb0ed002964 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/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: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\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 "Andre endringer" #: 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 oversikten" #: 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 definisjonen" @@ -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/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index bb4671ac0d3703907ddcf3580dc4e6667c048af0..2204f4f54c145a817b8d8bf11b65dc13d0288c6e 100644 GIT binary patch delta 16 YcmbQ~Hq&jxJAui^1o$@p5s(!E06@wH(f|Me delta 21 ccmbQ~Hq&jxI{^+u69oeUD?@|L-vpF}08~^4;{X5v diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 0766d641501..ad8c14220fc 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 9b85753974c6e9903d70469d88c1ee61e66a4d10..85bf5a8c9ad805f0275beaf10129950d16e79b75 100644 GIT binary patch delta 27 jcmdlzlX3S<#tp7IEJnHprjtE&)F*rB@NTZvu~Ps5gV_j? delta 30 mcmdlzlX3S<#tp7IlXGQVCT6 diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 10accd87b08..510a12f4ab8 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-23 05:56+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+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" @@ -1884,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" @@ -1893,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "Return type" @@ -1911,7 +1911,7 @@ msgid "variable" msgstr "variabele" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "functie" @@ -1989,7 +1989,7 @@ msgid "Throws" msgstr "Werpt" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "klasse" @@ -2006,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" @@ -2021,7 +2021,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" @@ -2035,20 +2035,20 @@ msgstr "Argumenten" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "attribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "module" @@ -2079,7 +2079,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "exceptie" @@ -2091,92 +2091,92 @@ msgstr "statement" msgid "built-in function" msgstr "ingebouwde functie" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "Variabelen" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr " (verouderd)" @@ -2618,6 +2618,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz directive mag niet zowel inhoud als een bestandsnaam argument hebben" @@ -2891,7 +2897,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2917,17 +2923,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index cd799f1b2cdd2cc5c4cef441d1c95400e65ee48f..a6967fdfa67d79a966ea26e47fcb24dfa88b3a87 100644 GIT binary patch delta 23 fcmaF)lJVtB#toiM97Yxj1_oA!hMNPOW*7kgc9IBy delta 23 fcmaF)lJVtB#toiM9EK(e1_oA!2Acz&W*7kgc25X; diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 798f646dd70..3058b7879f2 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index f1be2cc481e34977107928fdb5a0ad16f9bd741b..0454f8a3ce047ead57795ae2257fe9fb6bd12435 100644 GIT binary patch delta 12262 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 C>*~V* diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 2cbc4004599..59e00a65e8e 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,8 +13,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 06:33+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 15:44+0000\n" "Last-Translator: Rafael Fontenelle \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "número de tarefas deve ser um número positivo" #: 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 "Para mais informações, visite ." @@ -2890,7 +2890,7 @@ msgid "" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %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 "Falha ao obter uma assinatura de função para %s: %s" @@ -2905,28 +2905,28 @@ msgstr "Falha ao obter uma assinatura de construtor para %s: %s" msgid "Bases: %s" msgstr "Base: %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 "apelido de %s" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "apelido 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 "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: 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 "autosummary gera arquivos .rst internamente. Mas seu source_suffix não contém .rst. Ignorado." -#: 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: falhou em determinar %r a ser documentado, a seguinte exceção foi levantada:\n%s" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] gerando autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escrevendo em %s" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "[autosummary] falha ao importar %r: %s" -#: 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 "\nGera ReStructuredText usando diretivas de resumo automático.\n\nsphinx-autogen é um frontend para sphinx.ext.autosummary.generate.\nEle gera os arquivos reStructuredText a partir de diretivas autosummary\ncontidas nos arquivos de entrada fornecidos.\n\nO formato da diretiva autosummary está documentado no módulo Python\n``sphinx.ext.autosummary`` e pode ser lido usando:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "arquivos-fonte para gerar arquivos rST" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "diretório para colocar toda a saída" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufixo padrão para arquivos (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "diretório de modelos personalizado (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documenta membros importados (padrão: %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "documenta exatamente os membros no módulo atributo __all__. (padrão: %(default)s)" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Argumentos de Palavras-chave" @@ -3375,14 +3382,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" @@ -3550,37 +3557,37 @@ msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" msgid "default role %s not found" msgstr "papel padrão %s não encontrado" -#: 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ão está definido para %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 "Quaisquer IDs não atribuídos ao nó %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 "Link permanente para este termo" -#: 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 Permanente para essa tabela" -#: 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 Permanente para esse código" -#: 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 Permanente para essa imagem" -#: 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 permanente para esse \"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 "Não foi possível obter o tamanho da imagem. A opção :scale: foi ignorada." diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index c054ee9610d25fd02179a9ee53991dae3cc5b5f7..ded606236950b99e131040d16e44f50c433d009a 100644 GIT binary patch delta 16 XcmbQ^Fvnp-yYS?AVZO~%h1+=mI7J2o delta 21 ccmbQ^Fvnp-yD*2LiGqQFm7&4re&Jpo08HQpc>n+a diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 37bf164a1e6..f1a7d609798 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 1d2b3d9fa2dc189fe80cbcb1a66c6737ba167c74..3ffb299f7fd2c4a724b1e18ccff8ea5f349251ca 100644 GIT binary patch delta 33 jcmX@)cF1jmqbR$Df`NgRq2Xi?Q3VboC}(ql=p|kNr2`2k delta 33 kcmX@)cF1jmqbR$ff`NgRp}}MiQ3Vb|69{K>f#@Y(0Hgj182|tP diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index bdde24b9de8..e2f630ec19c 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/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: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\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 "Alte schimbări" #: 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 la acest titlu" #: 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 la această definiție" @@ -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 "Link permanent la acest 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 "Link permanent la acest cod" -#: 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 permanent la această imagine" -#: 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 permanent la acest cuprins" -#: 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/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index ce1d36ab8164fe5315c664cc8d4a1b558618cb6f..f9b317c347c25e37071020caf26e31c5a718c001 100644 GIT binary patch delta 35 lcmX@s#CWWUaf6jSyM=;*ft8`*WJh@g4kIXMbEf=VMF6=&3DE!m delta 35 mcmX@s#CWWUaf6jSyP<-Cft8`bWJh@g4nq?NXLF|fT}1%6J_*AB diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index d9e09edc417..59e28ac074e 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,8 +13,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: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\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 " Базовые классы: %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 +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 "Другие изменения" #: 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 "Ссылка на это определение" @@ -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 "Постоянная ссылка на таблицу" -#: 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/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 64fc164fa3131405196f4a60fa5e74fdf4d871a5..02b10db6ba7374b3b4159396ca9fed9277e0ce15 100644 GIT binary patch delta 33 jcmeB|>6h7XfQ{Wk!N9=E&~Wl`HU$nNC};C~HU)M7qDlz` delta 33 kcmeB|>6h7XfQ{Wy!N9=E&|va$HU$nt69{MXdo~4j0HH+)_W%F@ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index e92fb4288eb..40747e68b97 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/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: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\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 "වෙනත් වෙනස්කම්" #: 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/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 121d6508dfeea4ec4e47757549f3e54a8ab36b5b..cb9071d7fb1550e05a875352087afc5fe678b05e 100644 GIT binary patch delta 18 acmX>yi{;2HmJLc%C;ytlx7lE-NCf~>@d#f4 delta 23 fcmX>yi{;2HmJLc%ISfq{3=FIc4K`~{m8t*$W%>uW diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index cb84b2e169a..f19fd8969ff 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 618a4efcadd490beb8494bc3b558d06918d934ce..088a8e99a108b19c6aa4ffb4f89fcb1a1f6dc64e 100644 GIT binary patch delta 16 XcmeyM^+9VxJnv+4UcSw_yv!T`I++D- delta 21 ccmeyM^+9VxJTHf#iGqQFm7&4rbY4yl08%6d5dZ)H diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index ffbb3f43b9c..8ef04b109a7 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 8ed449e8d04..c69502f41d4 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-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1895,7 +1895,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1904,12 +1904,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1922,7 +1922,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "" @@ -2000,7 +2000,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "" @@ -2017,7 +2017,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2032,7 +2032,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2046,20 +2046,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "" @@ -2090,7 +2090,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "" @@ -2102,92 +2102,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: " "for one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2630,6 +2630,11 @@ msgstr "" msgid "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2902,7 +2907,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:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2928,17 +2933,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 311c12ec20fbd6464004dfa25a07fdf0498560f2..536cc1ac1978f1b343e9cecb5d839cb4d3945935 100644 GIT binary patch delta 11735 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 vxPI7(W>XJta*lRZ9Nbh{b#PPhlzUC delta 11662 zcmYM)2YiiZ|HtwB5DAf;h=`1n2#G8SA`&8Euh>;vLR8JzYTi_}|JD!+8u3_+!{?AOSnr``cnNEwm1SO!z#W8n zNS3V!sDahXwk$7fg33foWOc0ej?=L%@n+OO{)cuD1>Yu?#d2D1R7c%VOEMZ);&vR2 zots)#HT)1Y!2M4A2;IaXEUYq<;h2lcWP8*S_Qqyd=)7Kb*?#7N@H$Z}ehnwvGwL2c5W*d3>!_Q)ah#B=D4zo0Vum!o$cStPE5dfz0QLIH&X z=#O<<@FHfR*02Cu;ZxWSH)2P;jbYflrO7}aRHh1%17eLp?Wt1K5`2Uj;8)0YvQ8mM zwroFI*Cy$N>Sz}Kp>69c)SmEcZCNRpiAgvVwdr2Lc-)Jz_@`4J(8k2Ako{#1!&V=AaKIbTXO9 zK)pTy`{6j$-uc$?8fpouOPD3C30`>g2 zSQXDZ^}k~Z@f}RSxGrWB=A%09?ZhKcuTMf-n`kWs9gj~?sXBmt@mo|z61tkTOT}d3 zMi@#ehhPZtv~K48OVF3N6xG2Ntc<5o8NGzwcn7tVuI}VNfcRDjrN}Z{-=Xe<$et#n-5tlH+Arxz{#DpO#Z=sbTEnJK zm}AowHS$3ifRj*5Fc1B4DF)$sC*F>6#QRX~Tthwo81;UiUM2&P=tZ1hQ_vcwITcM& zYu^gha1naq6b!*xsOOiWAHIRyzSb7hMRN_Spx2Y;o(M#xd;n?yPotJ(Du$x{EQKTr zuc8{>izD$ka*J9yz0E*opw96UOkwS}VIc8OY-P>l7HWVGP#pxYf%JL}R3?&;m#kdm zU+Y!=lSu#8Z3+#jh~~`H!yc&3GZ#~F6SB{&A8{-u_cs|@gStp|p)R0{sMJ>&VD6E4 z97@~{)!`Q8U|3ZKa&2R8?5Ojn{wF=BRZ;OhHQJZWj z#^ZU^fGQQ5t2G`oiHD+=WDUNC?_d$O7;ITj+Nz*186RUsoIJ!F!)fRywow@>MXlLM ztcll9Gxwr3b(DxraWE>?Z=gE9hgzbFq(jHKD(V;qqODEQj6yZ+f(LOZs)2e>S=NiV z0Bd8&F!RQ2)BuK|Hs@T_-gyzdaD@}Eb>a=EJ+T$F1fSwU^nRNB=jshlo15!<)cN%o zZW_!)ZK{?SiM>&$Vlryr3or{`!*D!_Rq#6M*xf_+spUDsqDQV#g_$ag4&b|uq|#y4eUND_5Pzx2HRp|;sL0oT7eqSW>f}0!2&#w znou))jQPgXA9bNjcU*`%KC7`RZpJ#e1LN=#*1$@|rlDw5269jX>y6Pk8uRca)G0WM zDVWGnibA_Lg$N2$P;Xp@G58*8Cf{Hs^cZJS>WwdLbbCV>*F<4 zhN32!=NqF^{se~M1dP)8Uqm68ij5eApJR1AfgyMmwf2uO2NNcn&G!`g6Hmc3d;vYM z4At>2tcRyjOXD@gd@+edEoDAdp?_;41yW(nLXEHt-S|Cf0RLch^m)e2I1Uqun_xA3 z3M=Cb)Igp`b+8=+@jPlTTt`jBf2xxaw6*q6P|)rik3(@4zKM^pA(l=vGdqQv@mcJH zS5a%-YPz|qXQMXN`xuT#ociBU?S#!RpEdcYcLSqVTF&}3m%WNG%rLNU% zvnP6?Zo1*9nTj>Q9?OD21qJ&F;;> z&criOYkC;9DNmtNe+5(Vu2UaB*Q7EVeW@?TWSof&a0BMx1&qLm=giObEQ}|%H&M_? zPNJ5g((~r`Kq_kY7N8n@8Dnr4YK9k4OY#UcqwsmAqYPB)C!pGW1AE~y$M_dare|Sy zo&UoWD)B({e6!ZIQ5ncWH83CR;tteq{{1p7usZ!)g%rwQJJdp3i;On>c3(JFa_1Xv#1B&cH*PxNqh?{<9+nQiY4Z`Ak?{U zf|@{2)Uob^ZY;sBxDAytkELeQ#xEuRdSeSJx?n#H#*L_sKF0t&fSTzU^u@=h0r)O6 zGmJoGtUYSry-<6`cIx+HBJl}SyZ>T3dfLm)CTfgI(OA?{EW#jMiPdle2ICh_d=mYM zucDs2kJ>A~E6l~z5S58e*buv62+l)IWHliB()8o*De0o+E-wB{-kx4|cgM`JVGi<#*0YWWWo+iFUo3KjEFsV#BhQq<)TQ54st~M#&>G%g$kZx zFbN;vK#X5wzEI4=4B{QA3+6i3K)UW_swhwK+ z;S2>Gj~f_;d2gC4w*a$NY%qVg+;Nln!EzSE zX=mtWvzce3miPr^Rjv22J9gS)n=cY?Y%#m^D(Zz6@0*KaIcjs3IqpF%(P2~vcQF!! zKQLd*)3Fk9FH~mwqdyj-?gtyy-Xg4uD^#HwuR}Gs69e%S>W!CCd*C0ZKJr6zKh#65 zWj3Z@OPq@1(2dtnOX0KCv|k$oiE~gH?}AzidpHGO3iD9Ab{Q&F?_w?!^WkMGa^tR@V7{L_urnwZj~f z1{g~`5ZmA!RE7?qmgIY^h5yBT^xkP^+8Z_SL70itQ0;C-t^EZI!E2~fVSP$w>EDW= zppmu4Ak5bbSb%kL0qR(8!)AB_wRVA@nYB;Fe#HH;I+meQf6R$bqXu#v)n3hA=38`Y zwEI)Bmcn!R05#LuyUl}(QMK`jlP&dT=cbVZnhFCw2O~m8a_g;b-lf&!CYhv)*Ot&mix@i2BT6w z9X)U<_QF-D4zFVkOx$lW)C%)m{0}pzUu_>S9UaG9Dta@It z9yGKAb&>2oWIpE)p;G=BOEBykvspJf9>r?Z-@;jFS2=7_F(0-0wxgEhAjV+yx8@J0 z@=!}sh5_isne@Xj^u~Bp#_D4_wm_YNiC7sop)&C?>baxHlG)Zp3h`9bIBJeb9x4N! zaUAwSHE;m68INOQJdN$iK)^9G3=1P3PY_Va|If zh7)F?9_;DFqaEjCP3qS>@#k2N_$>B7@9#LOI1uyk3Xa4^C(Vtw4%3OPQ|2?HzEuBR zDX8Ny_%<#;r7G=vb8I?b1aTqy<1F;U#puR0PW^7w(j37!yolPI9;eOHMqn^;JyZr- zqOBV#pF&j}jGj0Kqj3_3;&P{c6KY`FPy_iE_5SnN75~OaZ25y(!a^({9**kp5Nd!Y zQT_e)1Nqk`yGcbV2A?q(Pz#(*+!fp5aa4xF&zf_cfyJ!-U<{)E#E+)K-_T9`C#plg zbLPScLp_&>eK7|I;i_}wUmf42A_wEon~P>BCKIp2#&{I_W919{vc;hoi)S1kVjbe> zi{?gbgIa=OoQTVC3|6^hzGpmxMa0K!3SB5<{AAwnJk}!Kfa~xG4#aUkn=APkrV!u9 zBux0lWT+=9UV|FQL2QXPFbf<0YEID@WaC>?P!qA+|7QL;d>2loBIv*7!9^HIyd2~3 z9n8VQSOdK;n>`YTvBa&gIS#{)_%05`+o+}Jd&S%nMX0qeM%uHj=@iu94vfI>kbPv` zz;Srscaw?itLDl)kBz7gzGl9VbU-yY7In^NU}ao@zF2}9Kq-3R22@73;#!^mz(34+ z{Q$Mrk5Dts{L?fr33UqQq8ndB?fOq0k6~-#-%$5M(qE>dw&+LP1^eJYoP=eVh^g1P zE$QFtLt!*7!nSxHM_`K^=EG<+4ko^UDVTSYG-EM_<7sSxe`7Vw_}hF|bVLp4Wvq&u zFcr&CYkwK-YzqBunVV?^1`!`{{1MgQU#N~eZky8)jrEB8V=Y{S@%RC1ul#^|{$EVO zu>YAGuoXT_ybklQ_8s!CHx9dFE{-J_L%iAXC~9Um(Gwf~W0s@|MiRG2FC2zivSRFr zo3Sh2!vgGZ*TfsK3-LqL9_VzB{CB3X@tzsseN>0N@0+DqjlsmfU~~KjW3llAv-|s@ zHt%$N0+*xK`Wj|q>xbsK*{JuGqB8as*2K#;g#-!}|1~K~#!%w67=Z&(4^GEMxDs39 z5%kBPM`n}7Vg_+KdgCyR!ttmHy@FbrlbDJ3unF4fkIfrKV=fiXpw_I+@mJKI2(Vn` znW%+|Gcg%Epc|*4j@>G3j&Gtm`WXW-+~q32n3Av|ad%`uw)Fx9rDPM<#$#B3cW^g8 zS;194gV2hu^3VT1=tun^oPcAnDgKOU7|qurwbK>V(PYPsm_vLC^;}dX7suUZLr`cy z#eCEQpW#TnkJ^k+dAiC^!F<$Gti^7)6Sc{FyjEG%}L2FTfJ@Iv1fj3bN&aYw`d=0A-e}J0dXQ%=GjLLuqzsGzq4^`h8buo>_ zUbr25pl?+(;6k*UQSl;$Fg%ET@n_Twb9~I2F2NAuRTz$&Q5ien)IY?w#DTtMY5Jfx z-P5Q6Y{X7@6P3Yc{B~c8ef?Z^`Aq(zLc2P|-)xfJs0M7uJ=mPMQh@2W4JrfEFcwQu z4S$7scoFsfm_S$gPq-q~jk*zsU}%u5{J2gFvR&n$>&K|jMUoP1Qk{W1&mB=q^Cp(B zA*v(45Lfxdm56nSyQ4asidy5(P{-{Y)}`PoVCBX&8m? zV`Ds0UeEdSiZW~66m_MRV0~PNx(`mFKJ9{|%?w(iZn_Sr=X;=DAA*s%6g}`m)WEl+ zI=+WR80I#|Zzk5(`G1>&MtT@E!<(q%*e=GL=R&MbJO*{4%tPG^A3N?xeb}5q-Haiz zX2!K}6mf6V@!gA>`B~HegKKgAm6|XLtuP;Bump9-e}sDDe#djDJ#o{~E6zL@iEirC zP@Ah8Y67#cBCbRYa5ZX=e2+Rc_u@GJ+7#~EuJZ4C@u-i}S5e>DwxMRU3$-Z^qc)dk z9as5xyY8q@$pX|apNSc`3U#WEpfXk=-c|m0N77N7cpb9&tSj-hx#xEnX(=QtwK3?wnhEXhFBre2DD@jo^NrRp(i z4}>L~6y>0<)B-HRcTpYtrWiY6Jn=%Th1*bTdKxvebEwQjq?#qkLOuT!>H=Df%8Xq` zA)3Nv)UorbXD%LpR6}{FHJyW6yDgZA$59u}LsaS$)68?NQ5V#B^ufibFF31Fr|E0d z(pE?>&zNobP|%vYQ8!#Rs==2~9lwjs@e~fg(E4VLC!#(LH=v&1j+)VN)ByCC{gl}V zRE9E8o41b>7h{}WSxP~>z6{mS+42|of5A|h3Ey@md1u#cJ7zYmV&gPc3x!EF3v>!qdauO^2sW99dq~ beAwv1;iFQA6p!9k_@9EopIq~FZB6+<76!aq diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 309da7354b9..0b8206abdd1 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,9 +8,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 00:10+0000\n" -"Last-Translator: Komiya Takeshi \n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 09:04+0000\n" +"Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1201,7 +1201,7 @@ msgid "job number should be a positive number" msgstr "numri i aktit duhet të jetë një numër pozitiv" #: 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 "Për më tepër hollësi, vizitoni ." @@ -1828,7 +1828,7 @@ msgstr "toctree përmban referencë ndaj dokumenti %r që s’ekziston" #: sphinx/directives/other.py:144 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "" +msgstr "zë i përsëdytur, gjetur te toctree: %s" #: sphinx/directives/other.py:176 msgid "Section author: " @@ -2885,7 +2885,7 @@ msgid "" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %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’u arrit të merret një nënshkrim funksioni për %s: %s" @@ -2900,28 +2900,28 @@ msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s" msgid "Bases: %s" msgstr "Baza: %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 për %s" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias për 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’u arrit të merre një nënshkrim metode për %s: %s" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: 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 "vetëpërmbledhja prodhon së brendshmi kartela .rst. Por source_suffix juaj s’përmban .rst. U anashkalua." -#: 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 "vetëpërmbledhje: s’u arrit të përcaktohet %r për t’u dokumentuar, u shfaq përjashtimi vijues:\n%s" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[vetëpërmbledhje] prodhim vetëpërmbledhje për: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[vetëpërmbledhje] po shkruhet te %s" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "[vetëpërmbledhje] s’u arrit të importohej %r: %s" -#: 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 "\nProdhoni ReStructuredText duke përdorur direktiva vetëpërmbledhje.\n\nsphinx-autogen është një ndërfaqe pamore për sphinx.ext.autosummary.generate. Prodhon\nkartela reStructuredText nga direktiva vetëpërmbledhjeje që përmbahen te\nkartelat e dhëna.\n\nFormati i direktivës vetëpërmbledhje dokumentohet te\nmoduli Python ``sphinx.ext.autosummary`` dhe mund të lexohet duke përdorur::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "kartela burim për të cilat të krijohen kartela rST" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "drejtori ku të vendosen krejt përfundimet" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "prapashtesë parazgjedhje për kartela (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "drejtori gjedhesh vetjake (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "pjesë të importuara të dokumentit (parazgjedhje: %(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 "Argumente Fjalëkyçi" @@ -3370,14 +3377,14 @@ msgid "Other changes" msgstr "Ndryshime të tjera" #: 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 "Permalidhje te ky titull" #: 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 "Permalidhje për te ky përkufizim" @@ -3545,37 +3552,37 @@ msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" msgid "default role %s not found" msgstr "s’u gjet rol parazgjedhje %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’është i përcaktuar për %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 "Çfarëdo ID-sh jo të përshoqëruara për nyjën %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 "Permalidhje për te ky term" -#: 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 "Permalidhje te kjo 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 "Permalidhje te ky 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 "Permalidhje te kjo figurë" -#: 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 "Permalidhje te kjo 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 "S’u mor dot madhësi figure. Mundësia :scale: u shpërfill." diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 3515192a0d3d428629a9244aab3d8bb94794f7ee..d75425c89a3f4e74b808db00c3ea241f07d4bf8f 100644 GIT binary patch delta 16 YcmX@$dBAhSSE0#gh4?lz3-1*K07JV5;Q#;t delta 21 dcmX@$dBAhSS0N5V69oeUD?@|Le}xVU0svgi2j~C* diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 4730703272c..e18a756f881 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 9e6281bad9d404025424eb1782fed76d50db7184..344c765b4bc3a1041a49e016dbc75ca5d32f48dc 100644 GIT binary patch delta 21 dcmcb}a*<_18;g;yf$799wTT^k8~06S1OQf32lM~{ delta 25 hcmcb}a*<_1+r)JO6Q@aW7@8;;7+4t^Y}_%E5deJ22;2Yw diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index f88ac4196df..1ffb6fcc5e2 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -1877,7 +1877,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1886,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1904,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "" @@ -1982,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "" @@ -1999,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "" @@ -2072,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "" @@ -2084,92 +2084,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2611,6 +2611,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2884,7 +2890,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2910,17 +2916,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 7568028052ed56c4e977dc840e44286da8922746..415653d55bfd64ced4ecdb960cf6e49aa07580c1 100644 GIT binary patch delta 30 gcmX@Za)xC>C%c7$fq|8w;lv3F97a&~#vM}_0gUzt;s5{u delta 30 hcmX@Za)xC>C%d77fq|8w!Nds)9EK(k_QoAk7y*n22-E-o diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 3aa08358185..7e3c9ae3e88 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/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: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\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/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index c058e8200a362edbb5207509a0f568edf4922309..9510d02e941d3fc289ffa7769bc21f3ba824591e 100644 GIT binary patch delta 16 XcmdmFy2*5dqTuA80(_hG1)DhmI6(#4 delta 21 ccmdmFy2*5dq9BK%iGqQFm7&3AO~Fo107i!exBvhE diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 2a6a1fa4572..a36ac796c7c 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 6239074dbd1b6fe8ae44a73695d0933912b6d971..8686167fe160189ba4ca087d9637731142a16343 100644 GIT binary patch delta 30 hcmey)@||VEc6JK|0|P5V!-@M8IE\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\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 "" #: 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/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index d1d688b673b09f37c30b8cfe8700c982bc859b85..6c6d7c09057f12d5a534c93cb3cf3d9f274b5be4 100644 GIT binary patch delta 30 gcmeyw{E2x&C%c7$fq|8w;lv3F97a&~#vN9S0F\n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\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/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 9cb2bbcf7e2e074476369450d550633df5b0cf22..1c12cb7c93717a527ac45068362d030935c1c445 100644 GIT binary patch delta 35 lcmbPsih0^8<_)~H>=p_J23CfKlSOJ3IE\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" @@ -1204,7 +1204,7 @@ msgid "job number should be a positive number" msgstr "iş numarası pozitif bir sayı olmalıdır" #: 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 "" @@ -3373,14 +3380,14 @@ msgid "Other changes" msgstr "Diğer değişiklikler" #: 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 "Bu başlık için kalıcı bağlantı" #: 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 "Bu tanım için kalıcı bağlantı" @@ -3548,37 +3555,37 @@ msgstr "" msgid "default role %s not found" msgstr "varsayılan rol %s bulunamadı" -#: 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 "Bu tablonun kalıcı bağlantısı" -#: 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 "Bu kodun kalıcı bağlantısı" -#: 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 "Bu resmin kalıcı bağlantısı" -#: 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 "Bu içindekiler tablosunun kalıcı bağlantısı" -#: 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 2fef3681cb5d96c375efff709cba23b92dc75e53..56f74833ef299c7f0574867fe211b1469b83d7b8 100644 GIT binary patch delta 16 XcmeA-?Kj;Z#yj~P58q}L-fUg~GOh(v delta 21 ccmeA-?Kj;Z#>-)7qF`WPWoWQjj<=8(06)J4KmY&$ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 31c6c3a1a86..f68da6fe029 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 1c663ccf8a559207f6f8d9ae3f36c18325328edf..f135082b7f62534bf6e6ecee0c3139d96d01c3d9 100644 GIT binary patch delta 30 gcmeys{DFBwC%c7$fq|8w;lv3F97a&~#vK-n0F*8W%m4rY delta 30 hcmeys{DFBwC%d77fq|8w!Nds)9EK(k_Qo9+i~y5A2)+OS diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 072523245c2..2327f7544aa 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/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: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\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/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 0ffbc2e626ee9f65e42ce290f0bb410411285d57..d42ca18e04e1768efd9608b3ff5d21240d5c411f 100644 GIT binary patch delta 21 ccmX@7cTR7^NnQ>k3k3rMD?`K07kO(r0aoA#Bme*a delta 21 ccmX@7cTR7^NnQ>^69oeUD?@|L7kO(r0al#{9smFU diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index dcfdb20eb10..077f38ae800 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index dc6884ed394870562795265ad40245f23a092957..2d09138aef5b10eed50bb2e4907a865a69c79f4c 100644 GIT binary patch delta 30 gcmeys{DFBwC%c7$fq|8w;lv3F97a&~#vK-n0F*8W%m4rY delta 30 hcmeys{DFBwC%d77fq|8w!Nds)9EK(k_Qo9+i~y5A2)+OS diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 003d48ba96e..4df345af312 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/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: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\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/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 6ca2c1d5d2230803bf82ccccb5ff0cba67c79a89..741de2688891a18e7eba0bab8e58db36b8cfa607 100644 GIT binary patch delta 35 mcmezPp84Z@<_&6-*)0?d46F\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -1215,7 +1215,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 "" @@ -2899,7 +2899,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 "" @@ -2914,28 +2914,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." @@ -2998,30 +2998,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] 生成 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] failed to import %r:%s" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3036,29 +3036,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n用 autosummary 指令生成 ReStructuredText\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的前端,它根据给定\n的输入文件中的 autosummary 指令生成 reStructuredText  文件\n\nautosummary 指令的格式见 Python 模块 ``sphinx.ext.autosummary`` 的文\n档,并且可以这样调出文档阅读::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py: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 "关键字参数" @@ -3384,14 +3391,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 "永久链接至目标" @@ -3559,37 +3566,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 "未定义 %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 "没有给 %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/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index b7ea58341f44b3d78980106a703793604d78f498..bf6beb5fe757682e2c8dc4ea290ef24d093d1614 100644 GIT binary patch delta 30 gcmeyz{EvA;C%c7$fq|8w;lv3F97a&~#vN{q0GD\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\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/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index fe67222957ad1f04b7f41692d04c0aa84d71edc0..0a859550a4d756d4ca87bbfc6ba52f2995755f52 100644 GIT binary patch delta 30 gcmeBW>1CPF$!?)wU|?lvIB|jkhY^&$aYra40DdwEB>(^b delta 30 hcmeBW>1CPF$!@4%U|?lvFmZwchoK3Cy>Uk\n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\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/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 2b4ed13520a568b60bea41a75700331b4a2da687..7d85948dc86dd5c11752c8cf08a5389ded0d2c46 100644 GIT binary patch delta 38 pcmX?jlIh?{rVY_aTt>PErV0iIR)&U?Q\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -1208,7 +1208,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 "" @@ -1885,7 +1885,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "參數" @@ -1894,12 +1894,12 @@ msgid "Return values" msgstr "回傳值" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "回傳" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "回傳型別" @@ -1912,7 +1912,7 @@ msgid "variable" msgstr "變數" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "函式" @@ -1990,7 +1990,7 @@ msgid "Throws" msgstr "拋出" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "類別" @@ -2007,7 +2007,7 @@ msgstr "模板參數" msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" @@ -2022,7 +2022,7 @@ msgstr "%s() (類別)" msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" @@ -2036,20 +2036,20 @@ msgstr "引數" msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "資料" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "屬性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "模組" @@ -2080,7 +2080,7 @@ msgstr "運算子" msgid "object" msgstr "物件" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "例外" @@ -2092,92 +2092,92 @@ msgstr "陳述式" msgid "built-in function" msgstr "內建函式" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "變數" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "引發" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別方法)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "%s (%s 的特性)" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態方法)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "類別方法" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "特性" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s 的重複物件敘述,其他的實例在 %s ,使用 :noindex: 給它們其中之一" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "(已棄用)" @@ -2619,6 +2619,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2892,7 +2898,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:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "無法取得一個函式簽名給 %s: %s" @@ -2907,28 +2913,28 @@ msgstr "無法取得一個 constructor 簽名給 %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:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "無法取得一個 method 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2991,30 +2997,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] 正在產生 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] 無法 import %r: %s " -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3029,29 +3035,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n使用 autosummary 指令產生 ReStructuredText。\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的一個前端。它會從給定的\n輸入檔案中所包含的 autosummary 指令,產生 reStructuredText 檔案。\n\nautosummary 指令的格式被記錄在 ``sphinx.ext.autosummary`` Python 模組中,\n它可以使用此方法來讀取::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py: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 "關鍵字引數" @@ -3377,14 +3390,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 "本定義的永久連結" @@ -3552,37 +3565,37 @@ msgstr "在評估只有指令的運算式時發生例外: %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 "任一個 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: 選項已略過。" From 334bdceeff4215a6d463f22b9241ff7900413eea Mon Sep 17 00:00:00 2001 From: James Knight Date: Sun, 5 Dec 2021 14:24:14 -0500 Subject: [PATCH 070/192] tox: support coverage on win32 When invoking the `coverage` on a Windows environment, the following exception may generate: ... raise CoverageException(f"Couldn't read {fname!r} as a config file") coverage.exceptions.CoverageException: Couldn't read 'C:mycodesphinx/setup.cfg' as a config file ERROR: InvocationError for command 'C:\mycode\sphinx\.tox\coverage\Scripts\python.EXE' -X dev -m pytest --durations 25 (exited with code 1) Enclosing with configuration file with quotes can improve the handling of a provided path on multiple platform types. Signed-off-by: James Knight --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index e703cd646c1..c006fa5a6f3 100644 --- a/tox.ini +++ b/tox.ini @@ -64,7 +64,7 @@ basepython = python3 description = Run code coverage checks. setenv = - PYTEST_ADDOPTS = --cov sphinx --cov-config {toxinidir}/setup.cfg + PYTEST_ADDOPTS = --cov sphinx --cov-config "{toxinidir}/setup.cfg" commands = {[testenv]commands} coverage report From 75914c67c77e94b0af71fbab424ad1e18e218b97 Mon Sep 17 00:00:00 2001 From: James Knight Date: Sun, 5 Dec 2021 15:03:57 -0500 Subject: [PATCH 071/192] drop translator-specific unknown_visit calls Removes the need for various translators from raising a `NotImplementedError` exception when missing support for a specific node type. docutils will already raise [1][2] a `NotImplementedError` exception for these cases. This help reduce the implementation inside Sphinx as well as prevents the possible undesired replication of unknown-node handling with third-party extensions [3]. In most cases, generating a warning message for an unsupported node type can be preferred. Providing an indication that a node is not supported can be easier for a user of Sphinx to understand a limitation of a builder over a generic "not implemented" exception. This commit takes the logging call which is already used by `texinfo` and applies it to the `SphinxTranslator` base class -- which any Sphinx translator implementation can use. [1]: https://repo.or.cz/docutils.git/blob/d169015ee0f412cffd69b33654d8a119d99bc0f3:/docutils/nodes.py#l2048 [2]: https://repo.or.cz/docutils.git/blob/53716a13b48128af6045139d3cd2909f61e7ed8e:/docutils/nodes.py#l1897 [3]: https://github.com/sphinx-doc/sphinx/issues/9921 Signed-off-by: James Knight --- sphinx/util/docutils.py | 5 ++++- sphinx/writers/html.py | 3 --- sphinx/writers/html5.py | 3 --- sphinx/writers/latex.py | 3 --- sphinx/writers/manpage.py | 3 --- sphinx/writers/texinfo.py | 4 ---- sphinx/writers/text.py | 3 --- 7 files changed, 4 insertions(+), 20 deletions(-) diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index c3d38530690..39fa02d3154 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -28,7 +28,7 @@ from packaging import version from sphinx.errors import SphinxError -from sphinx.locale import _ +from sphinx.locale import _, __ from sphinx.util import logging from sphinx.util.typing import RoleFunction @@ -496,6 +496,9 @@ def dispatch_departure(self, node: Node) -> None: else: super().dispatch_departure(node) + def unknown_visit(self, node: Node) -> None: + logger.warning(__('unknown node type: %r'), node, location=node) + # cache a vanilla instance of nodes.document # Used in new_document() function diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index fead4c61d31..143c2ef714b 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -876,9 +876,6 @@ def depart_math_block(self, node: Element, math_env: str = '') -> None: if depart: depart(self, node) - def unknown_visit(self, node: Node) -> None: - raise NotImplementedError('Unknown node: ' + node.__class__.__name__) - @property def permalink_text(self) -> str: warnings.warn('HTMLTranslator.permalink_text is deprecated.', diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index bba07f4478e..adb463662d4 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -811,9 +811,6 @@ def depart_math_block(self, node: Element, math_env: str = '') -> None: if depart: depart(self, node) - def unknown_visit(self, node: Node) -> None: - raise NotImplementedError('Unknown node: ' + node.__class__.__name__) - @property def permalink_text(self) -> str: warnings.warn('HTMLTranslator.permalink_text is deprecated.', diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 3f032e6164f..e5bd028f972 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -2079,9 +2079,6 @@ def visit_math_reference(self, node: Element) -> None: def depart_math_reference(self, node: Element) -> None: pass - def unknown_visit(self, node: Node) -> None: - raise NotImplementedError('Unknown node: ' + node.__class__.__name__) - # FIXME: Workaround to avoid circular import # refs: https://github.com/sphinx-doc/sphinx/issues/5433 diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index da5f4c24123..db8c1b1d3c5 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -462,6 +462,3 @@ def visit_math_block(self, node: Element) -> None: def depart_math_block(self, node: Element) -> None: self.depart_centered(node) - - def unknown_visit(self, node: Node) -> None: - raise NotImplementedError('Unknown node: ' + node.__class__.__name__) diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 6df558323f9..539a72388ee 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -1265,10 +1265,6 @@ def unimplemented_visit(self, node: Element) -> None: logger.warning(__("unimplemented node type: %r"), node, location=node) - def unknown_visit(self, node: Node) -> None: - logger.warning(__("unknown node type: %r"), node, - location=node) - def unknown_departure(self, node: Node) -> None: pass diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index ba310e072ee..a016f693f95 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -1189,6 +1189,3 @@ def visit_math_block(self, node: Element) -> None: def depart_math_block(self, node: Element) -> None: self.end_state() - - def unknown_visit(self, node: Node) -> None: - raise NotImplementedError('Unknown node: ' + node.__class__.__name__) From e200e7b7c122be696685722a119a0a2764b35052 Mon Sep 17 00:00:00 2001 From: Jouke Witteveen Date: Mon, 6 Dec 2021 12:31:09 +0100 Subject: [PATCH 072/192] doc: Improve autodoc extension example Enumerations can have aliases, which should be documented as well. --- doc/development/tutorials/examples/autodoc_intenum.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/doc/development/tutorials/examples/autodoc_intenum.py b/doc/development/tutorials/examples/autodoc_intenum.py index 574ac36213a..a23f9cebf1a 100644 --- a/doc/development/tutorials/examples/autodoc_intenum.py +++ b/doc/development/tutorials/examples/autodoc_intenum.py @@ -39,14 +39,13 @@ def add_content(self, use_hex = self.options.hex self.add_line('', source_name) - for enum_value in enum_object: - the_value_name = enum_value.name - the_value_value = enum_value.value + for the_member_name, enum_member in enum_object.__members__.items(): + the_member_value = enum_member.value if use_hex: - the_value_value = hex(the_value_value) + the_member_value = hex(the_member_value) self.add_line( - f"**{the_value_name}**: {the_value_value}", source_name) + f"**{the_member_name}**: {the_member_value}", source_name) self.add_line('', source_name) From 10023da895ffc485a46e33fa951339a93b623c28 Mon Sep 17 00:00:00 2001 From: Christian Roth Date: Fri, 26 Nov 2021 18:14:29 +0100 Subject: [PATCH 073/192] linkcheck: Exclude links from matched documents --- CHANGES | 2 ++ doc/usage/configuration.rst | 13 +++++++++ sphinx/builders/linkcheck.py | 12 +++++++++ .../br0ken_link.rst | 5 ++++ .../broken_link.rst | 5 ++++ .../test-linkcheck-documents_exclude/conf.py | 5 ++++ .../index.rst | 3 +++ tests/test_build_linkcheck.py | 27 +++++++++++++++++++ 8 files changed, 72 insertions(+) create mode 100644 tests/roots/test-linkcheck-documents_exclude/br0ken_link.rst create mode 100644 tests/roots/test-linkcheck-documents_exclude/broken_link.rst create mode 100644 tests/roots/test-linkcheck-documents_exclude/conf.py create mode 100644 tests/roots/test-linkcheck-documents_exclude/index.rst diff --git a/CHANGES b/CHANGES index 84ed534cce7..29fd5b8128b 100644 --- a/CHANGES +++ b/CHANGES @@ -23,6 +23,8 @@ Features added layout via CSS * #9899: py domain: Allows to specify cross-reference specifier (``.`` and ``~``) as ``:type:`` option +* #9894: linkcheck: add option ``linkcheck_exclude_documents`` to disable link + checking in matched documents. Bugs fixed ---------- diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index cd6fa06a1bc..fe4357c777f 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -2683,6 +2683,19 @@ Options for the linkcheck builder .. versionadded:: 3.4 +.. confval:: linkcheck_exclude_documents + + A list of regular expressions that match documents in which Sphinx should + not check the validity of links. This can be used for permitting link decay + in legacy or historical sections of the documentation. + + Example:: + + # ignore all links in documents located in a subfolder named 'legacy' + linkcheck_exclude_documents = [r'.*/legacy/.*'] + + .. versionadded:: 4.4 + Options for the XML builder --------------------------- diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index a6e7b2a9674..3d35b9b6b5f 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -378,6 +378,8 @@ def __init__(self, env: BuildEnvironment, config: Config, rqueue: Queue, self.anchors_ignore = [re.compile(x) for x in self.config.linkcheck_anchors_ignore] + self.documents_exclude = [re.compile(doc) + for doc in self.config.linkcheck_exclude_documents] self.auth = [(re.compile(pattern), auth_info) for pattern, auth_info in self.config.linkcheck_auth] @@ -519,6 +521,15 @@ def allowed_redirect(url: str, new_url: str) -> bool: def check(docname: str) -> Tuple[str, str, int]: # check for various conditions without bothering the network + + for doc_matcher in self.documents_exclude: + if doc_matcher.match(docname): + info = ( + f'{docname} matched {doc_matcher.pattern} from ' + 'linkcheck_exclude_documents' + ) + return 'ignored', info, 0 + if len(uri) == 0 or uri.startswith(('#', 'mailto:', 'tel:')): return 'unchecked', '', 0 elif not uri.startswith(('http:', 'https:')): @@ -699,6 +710,7 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_post_transform(HyperlinkCollector) app.add_config_value('linkcheck_ignore', [], None) + app.add_config_value('linkcheck_exclude_documents', [], None) app.add_config_value('linkcheck_allowed_redirects', {}, None) app.add_config_value('linkcheck_auth', [], None) app.add_config_value('linkcheck_request_headers', {}, None) diff --git a/tests/roots/test-linkcheck-documents_exclude/br0ken_link.rst b/tests/roots/test-linkcheck-documents_exclude/br0ken_link.rst new file mode 100644 index 00000000000..bf421f0c3a0 --- /dev/null +++ b/tests/roots/test-linkcheck-documents_exclude/br0ken_link.rst @@ -0,0 +1,5 @@ +Broken link +=========== + +Some links are `broken `__ +but sometimes not worrying about some broken links is a valid strategy. diff --git a/tests/roots/test-linkcheck-documents_exclude/broken_link.rst b/tests/roots/test-linkcheck-documents_exclude/broken_link.rst new file mode 100644 index 00000000000..86e3bb4fb8b --- /dev/null +++ b/tests/roots/test-linkcheck-documents_exclude/broken_link.rst @@ -0,0 +1,5 @@ +Broken link +=========== + +Some links are `broken `__ +but sometimes not worrying about some broken links is a valid strategy. diff --git a/tests/roots/test-linkcheck-documents_exclude/conf.py b/tests/roots/test-linkcheck-documents_exclude/conf.py new file mode 100644 index 00000000000..65ecbfb3629 --- /dev/null +++ b/tests/roots/test-linkcheck-documents_exclude/conf.py @@ -0,0 +1,5 @@ +exclude_patterns = ['_build'] +linkcheck_exclude_documents = [ + '^broken_link$', + 'br[0-9]ken_link', +] diff --git a/tests/roots/test-linkcheck-documents_exclude/index.rst b/tests/roots/test-linkcheck-documents_exclude/index.rst new file mode 100644 index 00000000000..57c39d89718 --- /dev/null +++ b/tests/roots/test-linkcheck-documents_exclude/index.rst @@ -0,0 +1,3 @@ +.. toctree:: + broken_link + br0ken_link \ No newline at end of file diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index fa7af13a446..cfb508808f4 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -625,3 +625,30 @@ def test_get_after_head_raises_connection_error(app): "uri": "http://localhost:7777/", "info": "", } + + +@pytest.mark.sphinx('linkcheck', testroot='linkcheck-documents_exclude', freshenv=True) +def test_linkcheck_exclude_documents(app): + app.build() + + with open(app.outdir / 'output.json') as fp: + content = [json.loads(record) for record in fp] + + assert content == [ + { + 'filename': 'broken_link.rst', + 'lineno': 4, + 'status': 'ignored', + 'code': 0, + 'uri': 'https://www.sphinx-doc.org/this-is-a-broken-link', + 'info': 'broken_link matched ^broken_link$ from linkcheck_exclude_documents', + }, + { + 'filename': 'br0ken_link.rst', + 'lineno': 4, + 'status': 'ignored', + 'code': 0, + 'uri': 'https://www.sphinx-doc.org/this-is-another-broken-link', + 'info': 'br0ken_link matched br[0-9]ken_link from linkcheck_exclude_documents', + }, + ] From f2f91ffb84163705341832f07a13e25b3b3d953a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 10 Dec 2021 01:33:09 +0900 Subject: [PATCH 074/192] Fix #9947: i18n: topic directive having a bullet list can't be translatable It seems docutils does not fill the topic node with the source info when a topic directive has a bullet list. As a workaround, This fills the source info of them. --- CHANGES | 1 + sphinx/transforms/__init__.py | 2 +- sphinx/util/nodes.py | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 29fd5b8128b..befb3e49cb6 100644 --- a/CHANGES +++ b/CHANGES @@ -33,6 +33,7 @@ Bugs fixed * #9883: autodoc: doccomment for the alias to mocked object was ignored * #9908: autodoc: debug message is shown on building document using NewTypes with Python 3.10 +* #9947: i18n: topic directive having a bullet list can't be translatable * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url * #9909: HTML, prevent line-wrapping in literal text. diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 1347409292b..663e6da686f 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -208,7 +208,7 @@ class ApplySourceWorkaround(SphinxTransform): def apply(self, **kwargs: Any) -> None: for node in self.document.traverse(): # type: Node - if isinstance(node, (nodes.TextElement, nodes.image)): + if isinstance(node, (nodes.TextElement, nodes.image, nodes.topic)): apply_source_workaround(node) diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index bc16e44c10e..c0700f3bb9a 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -150,6 +150,11 @@ def apply_source_workaround(node: Element) -> None: for classifier in reversed(list(node.parent.traverse(nodes.classifier))): node.rawsource = re.sub(r'\s*:\s*%s' % re.escape(classifier.astext()), '', node.rawsource) + if isinstance(node, nodes.topic) and node.source is None: + # docutils-0.18 does not fill the source attribute of topic + logger.debug('[i18n] PATCH: %r to have source, line: %s', + get_full_module_name(node), repr_domxml(node)) + node.source, node.line = node.parent.source, node.parent.line # workaround: literal_block under bullet list (#4913) if isinstance(node, nodes.literal_block) and node.source is None: From 3dbcab238dea7a37d62e7768450c9f557ae94aba Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Mon, 6 Dec 2021 17:36:32 +0100 Subject: [PATCH 075/192] Fix inaccurate LaTeX comments --- sphinx/texinputs/sphinxlatexstyletext.sty | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/sphinx/texinputs/sphinxlatexstyletext.sty b/sphinx/texinputs/sphinxlatexstyletext.sty index ab50aed569b..c295ccb58e2 100644 --- a/sphinx/texinputs/sphinxlatexstyletext.sty +++ b/sphinx/texinputs/sphinxlatexstyletext.sty @@ -1,7 +1,7 @@ %% TEXT STYLING % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexstyletext.sty}[2021/01/27 text styling] +\ProvidesFile{sphinxlatexstyletext.sty}[2021/12/06 text styling] % Basically everything here consists of macros which are part of the latex % markup produced by the Sphinx latex writer @@ -72,11 +72,17 @@ % Special characters % -% This definition prevents en-dash and em-dash TeX ligatures. +% The \kern\z@ is to prevent en-dash and em-dash TeX ligatures. +% A linebreak can occur after the dash in regular text (this is +% normal behaviour of "-" in TeX, it is not related to \kern\z@). % -% It inserts a potential breakpoint after the hyphen. This is to keep in sync -% with behavior in code-blocks, parsed and inline literals. For a breakpoint -% before the hyphen use \leavevmode\kern\z@- (within \makeatletter/\makeatother) +% Parsed-literals and inline literals also use the \sphinxhyphen +% but linebreaks there are prevented due to monospace font family. +% (xelatex needs a special addition, cf. sphinxlatexliterals.sty) +% +% Inside code-blocks, dashes are escaped via another macro, from +% Pygments latex output (search for \PYGZhy in sphinxlatexliterals.sty), +% and are configured to allow linebreaks despite the monospace font. \protected\def\sphinxhyphen#1{-\kern\z@} % The {} from texescape mark-up is kept, else -- gives en-dash in PDF bookmark \def\sphinxhyphenforbookmarks{-} From 8ad49613a89264a9c60840a05f40709f47b324c8 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Mon, 6 Dec 2021 17:45:58 +0100 Subject: [PATCH 076/192] Make sure option names in xelatex pdf output do not split at dashes Fix #9925 --- sphinx/texinputs/sphinxlatexliterals.sty | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sphinx/texinputs/sphinxlatexliterals.sty b/sphinx/texinputs/sphinxlatexliterals.sty index d2ba89ea73f..9a195c66f92 100644 --- a/sphinx/texinputs/sphinxlatexliterals.sty +++ b/sphinx/texinputs/sphinxlatexliterals.sty @@ -1,7 +1,7 @@ %% LITERAL BLOCKS % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexliterals.sty}[2021/01/27 code-blocks and parsed literals] +\ProvidesFile{sphinxlatexliterals.sty}[2021/12/06 code-blocks and parsed literals] % Provides support for this output mark-up from Sphinx latex writer: % @@ -711,6 +711,9 @@ \ifspx@opt@parsedliteralwraps \sbox\sphinxcontinuationbox {\spx@opt@verbatimcontinued}% \sbox\sphinxvisiblespacebox {\spx@opt@verbatimvisiblespace}% +% this uses a monospace font and linebreaks at dashes will be inhibited with +% pdflatex; not so with xelatex (cf \defaultfontfeatures in latex writer) so: + \def\sphinxhyphen{\mbox{-}}% \sphinxbreaksattexescapedchars \sphinxbreaksviaactiveinparsedliteral \sphinxbreaksatspaceinparsedliteral @@ -762,6 +765,10 @@ \protected\def\sphinxupquote#1{{\def\@tempa{alltt}% \ifx\@tempa\@currenvir\else \ifspx@opt@inlineliteralwraps + % a priori, this is typeset using a monospace font (cf \sphinxcode in + % sphinxlatexstyletext.sty) so linebreaks at dashes are inhibited; + % but, for xelatex or in case of non-monospace font, let's do this: + \def\sphinxhyphen{\mbox{-}}% % break at . , ; ? ! / \sphinxbreaksviaactive % break also at \ From ccd2c83f2f4c133856b488c982ece198b6bd96ae Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Tue, 7 Dec 2021 08:49:06 +0100 Subject: [PATCH 077/192] Add \sphinxhyphenin{inline,parsed}literal for customizability Whether or not to allow linebreaks is matter of debate because user of pdf can not reflow the displayed text, and overfull lines may lead to loss of data beyond page border. Since Sphinx 1.5, inline literals allow linebreaks after the characters ".", ",", ";", "?", "!", "/" and "\" (cf the inlineliteralwraps key of latex_elements['sphinxsetup']). With pdflatex the dash "-" does not allow a linebreak when used with a monospace font (btw the dash is escaped to \sphinxhyphen{} which expands back to a dash). But this failed with xelatex, so previous commits ensured nobreak behaviour by redefining \sphinxhyphen to be \sphinxhyphennobreak when encountered in inline and parsed literals. This commit adds \sphinxhyphenin{inline,parsed}literal macros which default to \sphinxhyphennobreak and thus allow to customize how the dashes from sources will behave in such contexts in pdf output. --- sphinx/texinputs/sphinxlatexliterals.sty | 16 +++++++++------- sphinx/texinputs/sphinxlatexstyletext.sty | 2 ++ 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/sphinx/texinputs/sphinxlatexliterals.sty b/sphinx/texinputs/sphinxlatexliterals.sty index 9a195c66f92..cc768c25ba1 100644 --- a/sphinx/texinputs/sphinxlatexliterals.sty +++ b/sphinx/texinputs/sphinxlatexliterals.sty @@ -704,6 +704,10 @@ % the \catcode13=5\relax (deactivate end of input lines) is left to callers \newcommand*{\sphinxunactivateextrasandspace}{\catcode32=10\relax \sphinxunactivateextras}% +% alltt uses a monospace font and linebreaks at dashes (which are escaped +% to \sphinxhyphen{} which expands to -\kern\z@) are inhibited with pdflatex. +% Not with xelatex (cf \defaultfontfeatures in latex writer), so: +\newcommand*{\sphinxhypheninparsedliteral}{\sphinxhyphennobreak} % now for the modified alltt environment \newenvironment{sphinxalltt} {% at start of next line to workaround Emacs/AUCTeX issue with this file @@ -711,9 +715,7 @@ \ifspx@opt@parsedliteralwraps \sbox\sphinxcontinuationbox {\spx@opt@verbatimcontinued}% \sbox\sphinxvisiblespacebox {\spx@opt@verbatimvisiblespace}% -% this uses a monospace font and linebreaks at dashes will be inhibited with -% pdflatex; not so with xelatex (cf \defaultfontfeatures in latex writer) so: - \def\sphinxhyphen{\mbox{-}}% + \let\sphinxhyphen\sphinxhypheninparsedliteral \sphinxbreaksattexescapedchars \sphinxbreaksviaactiveinparsedliteral \sphinxbreaksatspaceinparsedliteral @@ -760,15 +762,15 @@ \protected\def\sphinxtextbackslashbreakafter {\discretionary{\sphinx@textbackslash}{\sphinxafterbreak}{\sphinx@textbackslash}} \let\sphinxtextbackslash\sphinxtextbackslashbreakafter +% - is escaped to \sphinxhyphen{} and this default ensures no linebreak +% behaviour (also with a non monospace font, or with xelatex) +\newcommand*{\sphinxhyphenininlineliteral}{\sphinxhyphennobreak} % the macro must be protected if it ends up used in moving arguments, % in 'alltt' \@noligs is done already, and the \scantokens must be avoided. \protected\def\sphinxupquote#1{{\def\@tempa{alltt}% \ifx\@tempa\@currenvir\else + \let\sphinxhyphen\sphinxhyphenininlineliteral \ifspx@opt@inlineliteralwraps - % a priori, this is typeset using a monospace font (cf \sphinxcode in - % sphinxlatexstyletext.sty) so linebreaks at dashes are inhibited; - % but, for xelatex or in case of non-monospace font, let's do this: - \def\sphinxhyphen{\mbox{-}}% % break at . , ; ? ! / \sphinxbreaksviaactive % break also at \ diff --git a/sphinx/texinputs/sphinxlatexstyletext.sty b/sphinx/texinputs/sphinxlatexstyletext.sty index c295ccb58e2..539ee0de3ed 100644 --- a/sphinx/texinputs/sphinxlatexstyletext.sty +++ b/sphinx/texinputs/sphinxlatexstyletext.sty @@ -83,7 +83,9 @@ % Inside code-blocks, dashes are escaped via another macro, from % Pygments latex output (search for \PYGZhy in sphinxlatexliterals.sty), % and are configured to allow linebreaks despite the monospace font. +% (the #1 swallows the {} from \sphinxhyphen{} mark-up) \protected\def\sphinxhyphen#1{-\kern\z@} +\protected\def\sphinxhyphennobreak#1{\mbox{-}} % The {} from texescape mark-up is kept, else -- gives en-dash in PDF bookmark \def\sphinxhyphenforbookmarks{-} From 2b60f7596371510e3720a997a75f878b042832fc Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Mon, 6 Dec 2021 18:01:34 +0100 Subject: [PATCH 078/192] Update CHANGES --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 29fd5b8128b..b7895fe6f1a 100644 --- a/CHANGES +++ b/CHANGES @@ -36,6 +36,8 @@ Bugs fixed * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url * #9909: HTML, prevent line-wrapping in literal text. +* #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of + inline and parsed literals Testing -------- From e1b2936892677ecf7c7a80a64d9552ae4aba7af6 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Sun, 5 Dec 2021 22:03:34 +0100 Subject: [PATCH 079/192] Fix #9944 (LaTeX writer visit_desc_content()) The "~" was added 14 years ago at 3761223d85b16 Seems not to be needed anymore and causes extra vertical space in some circumstances. t --- CHANGES | 1 + sphinx/writers/latex.py | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index b7895fe6f1a..2c41eb1f89c 100644 --- a/CHANGES +++ b/CHANGES @@ -38,6 +38,7 @@ Bugs fixed * #9909: HTML, prevent line-wrapping in literal text. * #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of inline and parsed literals +* #9944: LaTeX: extra vertical whitespace for some nested declarations Testing -------- diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 3f032e6164f..6f7e2024183 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -757,9 +757,7 @@ def depart_desc_signature_line(self, node: Element) -> None: self._depart_signature_line(node) def visit_desc_content(self, node: Element) -> None: - if node.children and not isinstance(node.children[0], nodes.paragraph): - # avoid empty desc environment which causes a formatting bug - self.body.append('~') + pass def depart_desc_content(self, node: Element) -> None: pass From b23036570c839337b90f86735da006b00ddb6731 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Sun, 5 Dec 2021 15:43:16 +0100 Subject: [PATCH 080/192] Fix Multi-function declaration in Python domain has cramped spacing Fix #9940 Avoid \pysiglinewithargsret tricks to get correct vertical spacing in multiline declarations in case mark-up inserts a \phantomsection. Activate such tricks also in \pysigline, but now with the \phantomsection test. Relates #7241, #8980, #8995 --- sphinx/texinputs/sphinxlatexobjects.sty | 33 ++++++++++++++++++------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/sphinx/texinputs/sphinxlatexobjects.sty b/sphinx/texinputs/sphinxlatexobjects.sty index e00881e53af..3deda5c9460 100644 --- a/sphinx/texinputs/sphinxlatexobjects.sty +++ b/sphinx/texinputs/sphinxlatexobjects.sty @@ -1,7 +1,7 @@ %% MODULE RELEASE DATA AND OBJECT DESCRIPTIONS % % change this info string if making any custom modification -\ProvidesFile{sphinxlatexobjects.sty}[2021/01/27 documentation environments] +\ProvidesFile{sphinxlatexobjects.sty}[2021/12/05 documentation environments] % Provides support for this output mark-up from Sphinx latex writer: % @@ -91,21 +91,36 @@ % \relax only ends its "dimen" part \py@argswidth=\dimexpr\linewidth+\labelwidth\relax\relax \item[{\parbox[t]{\py@argswidth}{\raggedright #1\strut}}] -% contrarily to \pysiglinewithargsret, we do not do this: -% \leavevmode\par\nobreak\vskip-\parskip\prevdepth\dp\strutbox -% which would give exact vertical spacing if item parbox is multi-line, -% as it affects negatively more common situation of \pysigline -% used twice or more in a row for labels sharing common description, -% due to bad interaction with the \phantomsection in the mark-up + \futurelet\sphinx@token\pysigline@preparevspace@i } \newcommand{\pysiglinewithargsret}[3]{% \settowidth{\py@argswidth}{#1\sphinxcode{(}}% \py@argswidth=\dimexpr\linewidth+\labelwidth-\py@argswidth\relax\relax - \item[{#1\sphinxcode{(}\py@sigparams{#2}{#3}}] + \item[{#1\sphinxcode{(}\py@sigparams{#2}{#3}\strut}] + \futurelet\sphinx@token\pysigline@preparevspace@i +} +\def\pysigline@preparevspace@i{% + \ifx\sphinx@token\@sptoken + \expandafter\pysigline@preparevspace@again + \else\expandafter\pysigline@preparevspace@ii + \fi +} +\@firstofone{\def\pysigline@preparevspace@again} {\futurelet\sphinx@token\pysigline@preparevspace@i} +\long\def\pysigline@preparevspace@ii#1{% + \ifx\sphinx@token\bgroup\expandafter\@firstoftwo + \else + \ifx\sphinx@token\phantomsection + \else % this strange incantation is because at its root LaTeX in fact did not % imagine a multi-line label, it is always wrapped in a horizontal box at core % LaTeX level and we have to find tricks to get correct interline distances. - \leavevmode\par\nobreak\vskip-\parskip\prevdepth\dp\strutbox} +% It interacts badly with a follow-up \phantomsection hence the test above + \leavevmode\par\nobreak\vskip-\parskip\prevdepth\dp\strutbox + \fi + \expandafter\@secondoftwo + \fi + {{#1}}{#1}% +} \newcommand{\pysigstartmultiline}{% \def\pysigstartmultiline{\vskip\smallskipamount\parskip\z@skip\itemsep\z@skip}% \edef\pysigstopmultiline From 091c2de1a0d4bba55f806f7c48d586b488e08e30 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Sun, 5 Dec 2021 15:52:14 +0100 Subject: [PATCH 081/192] Update CHANGES --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 2c41eb1f89c..b34a68378bd 100644 --- a/CHANGES +++ b/CHANGES @@ -39,6 +39,8 @@ Bugs fixed * #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of inline and parsed literals * #9944: LaTeX: extra vertical whitespace for some nested declarations +* #9940: Multi-function declaration in Python domain has cramped vertical + spacing in latexpdf output Testing -------- From b902d855ba3d146aa811acbd5c05afc3ab1e5325 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Fri, 10 Dec 2021 20:34:53 +0100 Subject: [PATCH 082/192] Update CHANGES for #9941 --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index b34a68378bd..d5664e5f42a 100644 --- a/CHANGES +++ b/CHANGES @@ -39,8 +39,8 @@ Bugs fixed * #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of inline and parsed literals * #9944: LaTeX: extra vertical whitespace for some nested declarations -* #9940: Multi-function declaration in Python domain has cramped vertical - spacing in latexpdf output +* #9940: LaTeX: Multi-function declaration in Python domain has cramped + vertical spacing in latexpdf output Testing -------- From 6f7b8305465a65ebe29efc76e961db1d97e184b8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 10:26:41 +0900 Subject: [PATCH 083/192] Update CHANGES for PR #9391 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 2c41eb1f89c..cf5fb3ceb3f 100644 --- a/CHANGES +++ b/CHANGES @@ -25,6 +25,7 @@ Features added ``~``) as ``:type:`` option * #9894: linkcheck: add option ``linkcheck_exclude_documents`` to disable link checking in matched documents. +* #9391: texinfo: improve variable in ``samp`` role Bugs fixed ---------- From 9c6ebdf3474df4b647d100d5ee6877deaa68c5bc Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 10:33:07 +0900 Subject: [PATCH 084/192] Fix flake8 warnings --- tests/test_build_texinfo.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index f26e79f5138..532d33e34c3 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -127,7 +127,7 @@ def test_texinfo_xrefs(app, status, warning): assert not re.search(r'@ref{\w+,,--plugin\.option}', output) assert 'Link to perl +p, --ObjC++, --plugin.option, create-auth-token, arg and -j' in output - + @pytest.mark.sphinx('texinfo', testroot='root') def test_texinfo_samp_with_variable(app, status, warning): app.build() @@ -136,4 +136,4 @@ def test_texinfo_samp_with_variable(app, status, warning): assert '@code{@var{variable_only}}' in output assert '@code{@var{variable} and text}' in output - assert '@code{Show @var{variable} in the middle}' in output \ No newline at end of file + assert '@code{Show @var{variable} in the middle}' in output From b5ee2d09fcfe005b483a18b8d15623c4e7861606 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 10:49:38 +0900 Subject: [PATCH 085/192] Update CHANGES for PR #9578 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index cf5fb3ceb3f..78a3b7d32bc 100644 --- a/CHANGES +++ b/CHANGES @@ -26,6 +26,8 @@ Features added * #9894: linkcheck: add option ``linkcheck_exclude_documents`` to disable link checking in matched documents. * #9391: texinfo: improve variable in ``samp`` role +* #9578: texinfo: Add :confval:`texinfo_cross_references` to disable cross + references for readability with standalone readers Bugs fixed ---------- From c6fc5dff5334dc04c7858f2752a5e2c22f25eaeb Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 11:25:38 +0900 Subject: [PATCH 086/192] Update CHANGES for PR #9793 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index f978f8ca229..68fb8060a29 100644 --- a/CHANGES +++ b/CHANGES @@ -28,6 +28,8 @@ Features added ``~``) as ``:type:`` option * #9894: linkcheck: add option ``linkcheck_exclude_documents`` to disable link checking in matched documents. +* #9793: sphinx-build: Allow to use the parallel build feature in macOS on macOS + and Python3.8+ * #9391: texinfo: improve variable in ``samp`` role * #9578: texinfo: Add :confval:`texinfo_cross_references` to disable cross references for readability with standalone readers From 0b238d897c9566f050b9c441c13282eae922bedf Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 11:31:19 +0900 Subject: [PATCH 087/192] Fix #9108: docs: Use default pygments_theme to get accessiblity To increse accessiblity of our docs, this changes the pygments_theme of sphinx-docs.org to "default". It was updated to meet WCAG AA in https://github.com/pygments/pygments/pull/1940. --- doc/_themes/sphinx13/theme.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/_themes/sphinx13/theme.conf b/doc/_themes/sphinx13/theme.conf index 876b19803fb..19a480a6b36 100644 --- a/doc/_themes/sphinx13/theme.conf +++ b/doc/_themes/sphinx13/theme.conf @@ -1,4 +1,4 @@ [theme] inherit = basic stylesheet = sphinx13.css -pygments_style = trac +pygments_style = default From 555e74b8cac015348dcf0e31c3bc22e150508ef5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 10:52:22 +0900 Subject: [PATCH 088/192] refactor: app.html_themes was replaced by registry.html_themes --- tests/test_theming.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test_theming.py b/tests/test_theming.py index 4b4c5ca9dd5..e98d4071bbe 100644 --- a/tests/test_theming.py +++ b/tests/test_theming.py @@ -30,10 +30,10 @@ def test_theme_api(app, status, warning): themes.append('alabaster') # test Theme class API - assert set(app.html_themes.keys()) == set(themes) - assert app.html_themes['test-theme'] == app.srcdir / 'test_theme' / 'test-theme' - assert app.html_themes['ziptheme'] == app.srcdir / 'ziptheme.zip' - assert app.html_themes['staticfiles'] == app.srcdir / 'test_theme' / 'staticfiles' + assert set(app.registry.html_themes.keys()) == set(themes) + assert app.registry.html_themes['test-theme'] == app.srcdir / 'test_theme' / 'test-theme' + assert app.registry.html_themes['ziptheme'] == app.srcdir / 'ziptheme.zip' + assert app.registry.html_themes['staticfiles'] == app.srcdir / 'test_theme' / 'staticfiles' # test Theme instance API theme = app.builder.theme From dcfc3f60ece50bf478791d644790ea26519bb150 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 10:52:39 +0900 Subject: [PATCH 089/192] refactor: ssl.wrap_context() has been deprecated now --- tests/utils.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/utils.py b/tests/utils.py index 9430c9bebe0..1f7cbb05a73 100644 --- a/tests/utils.py +++ b/tests/utils.py @@ -1,8 +1,8 @@ import contextlib import http.server import pathlib -import ssl import threading +from ssl import PROTOCOL_TLS_SERVER, SSLContext # Generated with: # $ openssl req -new -x509 -days 3650 -nodes -out cert.pem \ @@ -27,11 +27,9 @@ def terminate(self): class HttpsServerThread(HttpServerThread): def __init__(self, handler, *args, **kwargs): super().__init__(handler, *args, **kwargs) - self.server.socket = ssl.wrap_socket( - self.server.socket, - certfile=CERT_FILE, - server_side=True, - ) + sslcontext = SSLContext(PROTOCOL_TLS_SERVER) + sslcontext.load_cert_chain(CERT_FILE) + self.server.socket = sslcontext.wrap_socket(self.server.socket, server_side=True) def create_server(thread_class): From 8e23b03263ce731a70bd3ddee99eead73a47663d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 23:05:33 +0900 Subject: [PATCH 090/192] refactor: texinfo: Remove CR char from output The CR character was added for readability of output. But it makes the texinfo writer a bit complicated. This removes it from output to keep our code simple (reducing conditions). --- sphinx/writers/texinfo.py | 6 ++---- tests/test_build_texinfo.py | 2 +- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 44842f7541e..9a281dc9a99 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -765,12 +765,10 @@ def visit_title_reference(self, node: Element) -> None: # -- Blocks def visit_paragraph(self, node: Element) -> None: - if not self.in_footnote: - self.body.append('\n') + self.body.append('\n') def depart_paragraph(self, node: Element) -> None: - if not self.in_footnote: - self.body.append('\n') + self.body.append('\n') def visit_block_quote(self, node: Element) -> None: self.body.append('\n@quotation\n') diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index 249587ccf17..bece3a558d4 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -119,7 +119,7 @@ def test_texinfo_footnote(app, status, warning): app.builder.build_all() output = (app.outdir / 'python.texi').read_text() - assert 'First footnote: @footnote{First}' in output + assert 'First footnote: @footnote{\nFirst\n}' in output @pytest.mark.sphinx('texinfo') From dbbf5ae95b3960ae96c38a55d02250c15eaa7dd4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 11 Dec 2021 23:18:20 +0900 Subject: [PATCH 091/192] Update CHANGES for PR #9390 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 68fb8060a29..461508bf3a2 100644 --- a/CHANGES +++ b/CHANGES @@ -48,6 +48,7 @@ Bugs fixed * #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of inline and parsed literals * #9944: LaTeX: extra vertical whitespace for some nested declarations +* #9390: texinfo: Do not emit labels inside footnotes Testing -------- From cd0128d1c5f23625c92165907c430b4c143e3773 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 12 Dec 2021 00:12:04 +0000 Subject: [PATCH 092/192] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 187 ++++++++--------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70589 -> 70589 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101832 -> 101386 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 76709 -> 76339 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 187 ++++++++--------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 79780 -> 79373 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83622 -> 83458 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 195 +++++++++--------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19643 -> 19643 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 187 ++++++++--------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80820 -> 80983 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/sphinx.pot | 185 ++++++++--------- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 79005 -> 78631 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 195 +++++++++--------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 187 ++++++++--------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 193 +++++++++-------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63473 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 193 +++++++++-------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 82 ++++---- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 42177 -> 41839 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 187 ++++++++--------- 125 files changed, 5493 insertions(+), 5522 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index b870ac9643108441ead8e3dd87afc312143c0fdf..44efd3f30c2d597d74d87cb1526f23b1aaa36282 100644 GIT binary patch delta 26 ecmZp)YqZ;-Ai!dzYiKlCML-42*z6;)l@9=24F;$H delta 26 ecmZp)YqZ;-Ai!d%Yh*E5ML-42*z6;)l@9=2hX%9& diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 653ed4dda95..e9fde5df604 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "لا يمكن العثور على المجلد المصدر (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "تشغيل Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "تم" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "غير متوفرة للرسائل الافتراضية المدمجة" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "فشل: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "نجح" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "انتهى مع وجود مشاكل" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "بناء %s، %sتحذير." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "بناء %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "متغير" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "كائن" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2016,7 +2009,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2030,20 +2023,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "" msgid "object" msgstr "كائن" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2086,92 +2079,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "متغيرات" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2833,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2885,44 +2884,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3600,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3634,16 +3633,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index a8af69367951b47798e59fcde53f0a82388a08b0..0ee6a9a81bbc924fefefd9da2afccdc782ea8944 100644 GIT binary patch delta 23 bcmey${FQk^8;g;yq0z)H6)?SVlQSa#Vx9+i delta 23 bcmey${FQk^8;hZ?k;TL=6)?SVlQSa#V+IF> diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index e60ab36e596..657a624a93b 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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 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" @@ -18,130 +18,123 @@ msgstr "" "Language: bg\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index d7a13957b5776bda560e7c7fa2dd1bbf0f1797ca..aa929cafe2dad73aa01f0e5b50146c6ac8808542 100644 GIT binary patch delta 32 mcmbPjKihu8HeMDZT?5m}yLeT&Knw)~11m$L%`bR23jzSAQVGQX delta 32 mcmbPjKihu8HeMD(T_cOhyLeT&Knw)~11m$r%`bR23jzSA&I!x_ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 40840e0cdda..a81f9deeba6 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" @@ -1878,7 +1878,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "প্যারামিটার" @@ -1887,12 +1887,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "রিটার্নস" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -1905,7 +1905,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "ফাংশন" @@ -1983,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "ক্লাস" @@ -2000,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -2015,7 +2015,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -2029,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "এ্যট্রিবিউট" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "মডিউল" @@ -2073,7 +2073,7 @@ msgstr "অপারেটর" msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "এক্সেপশন" @@ -2085,92 +2085,92 @@ msgstr "স্ট্যাটমেন্ট" msgid "built-in function" msgstr "বিল্ট-ইন ফাংশন" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2612,6 +2612,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2885,7 +2891,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2911,17 +2917,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index b34220f20d1a99addcdb376b90f0c6d80664dd52..f551c0b3d1226be1ce876586a747f53aad486f1e 100644 GIT binary patch delta 26 ecmbQMGgoKBLS7alT|=YEOL\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Índex" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paràmetres" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipus de retorn" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funció" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "class" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" @@ -2015,7 +2008,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "mòdul" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "operador" msgid "object" msgstr "objecte" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "excepció" @@ -2085,92 +2078,92 @@ msgstr "sentència" msgid "built-in function" msgstr "funció interna" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (obsolet)" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "[imatge]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index ff3e106d7d8b9646b50117c64b019f2767518ee4..3a4cfa35aa3d6a6035339783444f3c5da1479b5a 100644 GIT binary patch delta 32 ocmaDU^ipU;F)NFauA$N7a#j^CBV7Yi1p@;sL!-@0S&uLS0HFs7CjbBd delta 32 lcmaDU^ipU;F)NFqu93y$a#j^C5JSPhz{=2Y^HSC$%mAUR2`~Tv diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index f7d122331e6..6e99c7aa955 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: cak\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "xk'isïk" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "sachoj: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Cholwuj" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Jalajöj" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "retal jalöj" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "Ruwäch" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2008,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "object" msgstr "wachinäq" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2085,92 +2078,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Retal jalöj" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "[wachib'äl: %s]" msgid "[image]" msgstr "[wachib'äl]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index c93b174cdd59159a2e7075b3988b3b7b65f5288a..0afed9fba369db9ceb4b4e9eaaa92f43ddc729ad 100644 GIT binary patch delta 24 fcmbQ^G{0}iV6&6EXBa6*GA{Tf7SW5=9 diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index be77c03be7b..43d320ba03b 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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 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" @@ -20,130 +20,123 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Rejstřík" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vrací" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Typ návratové hodnoty" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "proměnná" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkce" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "Vyvolá" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "třída" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -2016,7 +2009,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2030,20 +2023,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "výjimka" @@ -2086,92 +2079,92 @@ msgstr "příkaz" msgid "built-in function" msgstr "vestavěná funkce" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Proměnné" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2839,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2891,44 +2884,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3544,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3606,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Poznámky pod čarou" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3640,16 +3633,16 @@ msgstr "[obrázek: %s]" msgid "[image]" msgstr "[obrázek]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 2aeaf6ee5b5f6e414e580d52d518ca78dc8b75b0..4bca21aebc58caf46c51df515073be1d7d946c40 100644 GIT binary patch delta 26 ecmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indecs" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramedrau" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "ffwythiant" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2016,7 +2009,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2030,20 +2023,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modiwl" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "gweithredydd" msgid "object" msgstr "gwrthrych" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2086,92 +2079,92 @@ msgstr "datganiad" msgid "built-in function" msgstr "ffwythiant built-in" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2833,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2885,44 +2884,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3600,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Troednodiadau" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3634,16 +3633,16 @@ msgstr "[delwedd: %s]" msgid "[image]" msgstr "[delwedd]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 79dc7ca0dd132e8ef0ae4f3958d92c4aa503bc37..717353f7abb47f9f5c6049530d11bff4e6b0febf 100644 GIT binary patch delta 26 ecmdm)u`^?Xz5\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" @@ -22,130 +22,123 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan ikke finde kildemappen (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Kildemappe og destinationsmappe kan ikke være identiske" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Kører Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med denne version." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "færdig" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "ikke tilgængelig for indbyggede beskeder" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "fejlede: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "lykkedes" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "færdig med problemer" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "kompilering %s, %s advarsel." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "kompilering %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,12 +159,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -797,12 +790,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -920,7 +913,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d. %b, %Y" @@ -1104,7 +1097,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indeks" @@ -1881,7 +1874,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" @@ -1890,12 +1883,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returnerer" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Returtype" @@ -1908,7 +1901,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funktion" @@ -1986,7 +1979,7 @@ msgid "Throws" msgstr "Kaster" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klasse" @@ -2003,7 +1996,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" @@ -2018,7 +2011,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" @@ -2032,20 +2025,20 @@ msgstr "Parametre" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2059,7 +2052,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2069,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "undtagelse" @@ -2088,92 +2081,92 @@ msgstr "erklæring" msgid "built-in function" msgstr "indbygget funktion" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variable" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (forældet)" @@ -2615,6 +2608,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2835,7 +2834,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2887,44 +2886,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3540,12 +3539,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3602,27 +3601,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fodnoter" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3636,16 +3635,16 @@ msgstr "[billede: %s]" msgid "[image]" msgstr "[billede]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index b721b4e003bf208758b76c564b08b33a15698347..cd86dd51c3f78a886ea922657cb0fb3df266b7ed 100644 GIT binary patch delta 26 fcmZ1)xioUaVks6QT|=YE%cWGnjLqkzt_cDFemV&8 delta 26 fcmZ1)xioUaVks6wT_cOh%cWGnjLqkzt_cDFezXYv diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index a4fbd7a4167..db21451e3a6 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" @@ -22,130 +22,123 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kann Quellverzeichnis nicht finden (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s in Verwendung" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht gebaut werden." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "erledigt" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "nicht verfügbar für vordefinierte Nachrichten" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +146,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,12 +159,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -797,12 +790,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -920,7 +913,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" @@ -1104,7 +1097,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Stichwortverzeichnis" @@ -1881,7 +1874,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" @@ -1890,12 +1883,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Rückgabe" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Rückgabetyp" @@ -1908,7 +1901,7 @@ msgid "variable" msgstr "Variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "Funktion" @@ -1986,7 +1979,7 @@ msgid "Throws" msgstr "Wirft" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "Klasse" @@ -2003,7 +1996,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" @@ -2018,7 +2011,7 @@ msgstr "%s() (Klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" @@ -2032,20 +2025,20 @@ msgstr "Parameter" msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "Attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "Modul" @@ -2059,7 +2052,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2076,7 +2069,7 @@ msgstr "Operator" msgid "object" msgstr "Objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "Exception" @@ -2088,92 +2081,92 @@ msgstr "Anweisung" msgid "built-in function" msgstr "Builtin-Funktion" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variablen" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (veraltet)" @@ -2615,6 +2608,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2835,7 +2834,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2887,44 +2886,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3540,12 +3539,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3602,27 +3601,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fußnoten" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3636,16 +3635,16 @@ msgstr "[Bild: %s]" msgid "[image]" msgstr "[Bild]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 88f15e5aecbee51b7eb05c48431d3e591dc257e7..b2613563474d323bb7a0ed14777cd8c526f3e626 100644 GIT binary patch delta 34 pcmZo@V{K?--5}S*Vx((mG+C)hh093Sz*ND&z{=2Qb3oIE0|2f33TOZT delta 34 ncmZo@V{K?--5}S*VyJ6mF\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" @@ -21,130 +21,123 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Δεν είναι δυνατή η εύρεση του καταλόγου πηγής (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Ο κατάλογος πηγής και ο κατάλογος προορισμού δεν είναι δυνατό να είναι ίδιοι" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Εκτέλεση Sphinx έκδοση %s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s και επομένως δεν είναι δυνατή η μεταγλωτισση με αυτή την έκδοση." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "δημιουργία καταλόγου εξόδου" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "κατά τον καθορισμό της επέκτασης %s" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχοντα ορισμό στο conf.py δεν αποτελεί καλέσιμο. Παρακαλείσθε να τροποποιήσετε τον ορισμό ώστε να το κάνετε μία καλέσιμη συνάρτηση. Αυτό απαιτείται προκειμένου το conf.py να συμπεριφέρεται ως μία επέκταση Sphinx." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "ολοκλήρωση" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "δεν είναι διαθέσιμο για εσωτερικά μηνύματα" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "φόρτωση πακτωμένου περιβάλλοντος" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "αποτυχία: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Δεν επιλέχθηκε μεταγλωττιστής, θα χρησιμοποιηθεί ο προεπιλεγμένος: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "επιτυχία" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "ολοκλήρωση με προβλήματα" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "μεταγλώττιση %s, %s προειδοποίηση" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "μεταγλώττιση %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "η κλάση κόμβου %r έχει ήδη καταχωρηθεί, οι επισκέπτες της θα υπερσκελιστούν" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -152,12 +145,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -165,12 +158,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" @@ -796,12 +789,12 @@ msgstr "Αναζητήστε οποιαδήποτε λάθη στο παραπά msgid "broken link: %s (%s)" msgstr "λανθασμένος σύνδεσμος: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Δεν βρέθηκε το anchor '%s'" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -919,7 +912,7 @@ msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριώ #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %B %Y" @@ -1103,7 +1096,7 @@ msgstr "η τιμή παραμετροποίησης \"latex_documents\" κάν #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Ευρετήριο" @@ -1880,7 +1873,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Παράμετροι" @@ -1889,12 +1882,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Επιστρέφει" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" @@ -1907,7 +1900,7 @@ msgid "variable" msgstr "μεταβλητή" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "συνάρτηση" @@ -1985,7 +1978,7 @@ msgid "Throws" msgstr "Προκαλεί" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "κλάση" @@ -2002,7 +1995,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" @@ -2017,7 +2010,7 @@ msgstr "%s() (κλάση)" msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" @@ -2031,20 +2024,20 @@ msgstr "Παράμετροι" msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "ιδιότητα" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "μονάδα" @@ -2058,7 +2051,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Ανέγκυρο math_eqref_format: %r" @@ -2075,7 +2068,7 @@ msgstr "τελεστής" msgid "object" msgstr "αντικείμενο" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "εξαίρεση" @@ -2087,92 +2080,92 @@ msgstr "δήλωση" msgid "built-in function" msgstr "ενσωματωμένη συνάρτηση" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Μεταβλητές" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -2614,6 +2607,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Η οδηγία Graphviz δεν είναι δυνατό να περιλαμβάνει και περιεχόμενο και ένα όρισμα ονόματος αρχείου" @@ -2834,7 +2833,7 @@ msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "σφάλμα κατά τη μορφοποίηση των ορισμάτων για %s:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "απουσιάζει το χαρακτηριστικό %s στο αντικείμενο %s" @@ -2886,44 +2885,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Βάσεις: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3539,12 +3538,12 @@ msgid "" "it directly: %s" msgstr "Ανέγκυρος τύπος ημερομηνίας. Τοποθετείστε στη στοιχειοσειρά μονά εισαγωγικά εάν θέλετε να το εξάγετε απευθείας: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "το toctree περιλαμβάνει αναφορά σε άγνωστο αρχείο %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έκφρασης οδηγίας: %s" @@ -3601,27 +3600,27 @@ msgstr "πολύ μεγάλο :maxdepth:, θα αγνοηθεί." msgid "document title is not a single Text node" msgstr "ο τίτλος του εγγράφου δεν είναι μονός κόμβος κειμένου" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "τόσο η επιλογή για tabularcolumns όσο και για :widths: δίνονται. Η επιλογή :widths: θα αγνοηθεί." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θα αγνοηθεί." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s" @@ -3635,16 +3634,16 @@ msgstr "[εικόνα: %s]" msgid "[image]" msgstr "[εικόνα]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "η λεζάντα δεν βρίσκεται εντός μίας εικόνας." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "μη υλοποιημένος τύπος κόμβου: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "άγνωστος τύπος κόμβου: %r" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 343cd01201c9f26fbc5acd19d5c4a780122eee34..80204f53c4f7aba9e7450427021833c63eaa2c0e 100644 GIT binary patch delta 29 kcmcb?e1myH8;g;yq0z)H6)q!P15*V911m$LjXM+=0f&\n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: en_FR\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index bd7a812769cf3b6a62583d93bc9947c37de21f6c..123ecdcdaf9435ae78b4e3d2eb3272a9abb5af35 100644 GIT binary patch delta 23 bcmeBT>0+7C#$u#vXf&})1x#<;6u}4pP>u$= delta 23 bcmeBT>0+7C#$u>zWHGTz1x#<;6u}4pQ1%AK diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index e20c398b0d2..aa0b2fcb67e 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: en_GB\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 01d35c050893c53317b00037258cbba055403972..774a07f673028224cd68ffcfa75b874a64ec6064 100644 GIT binary patch delta 29 icmZo=X=Rzv#$u#vU^=l&g$qP07#LU?8g1O+%Lo8=AP3R_ delta 29 icmZo=X=Rzv#$u>zWHGTzg$qP07#LU?8gAU-%Lo8=kq6lT diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index afef9cf85a3..80ce9475203 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" "MIME-Version: 1.0\n" @@ -1877,7 +1877,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1886,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1904,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "" @@ -1982,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "" @@ -1999,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "" @@ -2072,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "" @@ -2084,92 +2084,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2611,6 +2611,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2884,7 +2890,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2910,17 +2916,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 827103b33f3184d3044f0797c81b9159ad8e07a3..83dee9d7647331f56879584d4740961e15c28d31 100644 GIT binary patch delta 32 lcmX@WcYtq$0Sk+fu7T-f6BZRN5JSPhz{=2Qa}vuvCIE>*2pj+a delta 32 lcmX@WcYtq$0Sk+vu93xL6BZRN5JSPhz{=2Ya}vuvCIE@N2qORh diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 0f9b8e98456..c90e71a2714 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" @@ -1879,7 +1879,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroj" @@ -1888,12 +1888,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1906,7 +1906,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "funkcio" @@ -1984,7 +1984,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "klaso" @@ -2001,7 +2001,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2016,7 +2016,7 @@ msgstr "%s() (klaso)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2030,20 +2030,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "" @@ -2074,7 +2074,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "escepto" @@ -2086,92 +2086,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2613,6 +2613,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2886,7 +2892,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2912,17 +2918,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index c630965345ae83cd9fbe3563c7c325136ba8c0e7..4f2a962386f184520ff53d54142710c9c58a19e5 100644 GIT binary patch delta 28 hcmdnHoMrEFmJQL9S&VcIjV8xWRsl0Mw@)@}005hY3MT*n delta 28 hcmdnHoMrEFmJQL9SqycJEGEZKRsl0Mw@)@}005i-3Nruz diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index eb052becd9e..aa0e3260953 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" @@ -25,130 +25,123 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "No se encuentra directorio fuente (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Directorio fuente y directorio destino no pueden ser idénticos" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Ejecutando Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este proyecto necesita al menos Sphinx v%s y por lo tanto no se puede construir con esta versión." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "creando directorio de salida" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "mientras configura la extensión %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python invocable. Por favor, modifique su definición para que sea una función invocable. Esto es necesario para que el archivo conf.py se comporte como una extensión de Sphinx." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "hecho" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "no disponible para mensajes incorporados" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "cargando el ambiente pickled" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilación %s, %sadvertencia (con advertencias tratadas como errores)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilación %s, %s advertencias (con advertencias tratadas como errores)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "construir %s, %s advertencia." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "compilación %s, %s advertencias." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la clase de nodo %r ya está registrada, sus visitantes serán reemplazados" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directiva %r ya está registrada, esa se reemplazará" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +149,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,12 +162,12 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" @@ -800,12 +793,12 @@ msgstr "Busque cualquier error en la salida anterior o en el archivo %(outdir)s/ msgid "broken link: %s (%s)" msgstr "enlace roto: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Ancla '%s' no encontrado" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -923,7 +916,7 @@ msgstr "Error al leer la información de compilación del fichero: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" @@ -1107,7 +1100,7 @@ msgstr "El valor de configuración \"latex_documents\" hace referencia a un docu #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Índice" @@ -1884,7 +1877,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parámetros" @@ -1893,12 +1886,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Devuelve" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo del valor devuelto" @@ -1911,7 +1904,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "función" @@ -1989,7 +1982,7 @@ msgid "Throws" msgstr "Lanzamientos" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "clase" @@ -2006,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" @@ -2021,7 +2014,7 @@ msgstr "%s() (clase)" msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" @@ -2035,20 +2028,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "módulo" @@ -2062,7 +2055,7 @@ msgstr "duplicada %s descripción de %s, otra %s en %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "No válido math_eqref_format: %r" @@ -2079,7 +2072,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "excepción" @@ -2091,92 +2084,92 @@ msgstr "sentencia" msgid "built-in function" msgstr "función incorporada" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descripción duplicada del objeto de %s, otra instancia en %s, utilice :noindex: para uno de ellos" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "se encontró más de un objetivo para la referencia cruzada %r: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2618,6 +2611,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== duraciones de lectura más lentas =======================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Directiva Graphviz no puede tener tanto el contenido y un argumento de nombre de archivo" @@ -2838,7 +2837,7 @@ msgstr "firma inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "error al formatear argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "falta el atributo %s en el objeto %s" @@ -2890,44 +2889,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3543,12 +3542,12 @@ msgid "" "it directly: %s" msgstr "Formato de fecha inválido. Cite la cadena con comillas simples si desea generarla directamente: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contiene referencia al archivo inexistente %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "excepción al evaluar solamente la expresión directiva: %s" @@ -3605,27 +3604,27 @@ msgstr "demasiado grande :maxdepth:, ignorado." msgid "document title is not a single Text node" msgstr "El título del documento no es un nodo de texto único" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "no se encontró el nodo de título en la sección, tema, tabla, advertencia o barra lateral" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notas a pie de página" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "ambas columnas tabulares y la opción :widths: se dan. La opción :widths: se ignora." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "la unidad de dimensión %s no es válida. Ignorado." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "tipo de entrada de índice desconocido %s encontrado" @@ -3639,16 +3638,16 @@ msgstr "[imagen: %s]" msgid "[image]" msgstr "[imagen]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "subtítulo no dentro de una figura." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nodo no implementado: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "tipo de nodo desconocido: %r" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 31d9aa88f6c72673bea960861d3407187b85d27c..b1badd1810a54ce7cc9ffb3fc4e8bd385e9da3c6 100644 GIT binary patch delta 34 ncmX@t$#kxhX+w$+i;=E@>EsL_6)q4%!N9=E&}j2C9}5cr#6t=; delta 34 ncmX@t$#kxhX+w$+i=nQO#pDbh6)q4%!N9=E&~WoK9}5cr#J>tX diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 85b8bec764a..57bc1fd1234 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" @@ -1881,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameetrid" @@ -1890,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "Tagastab" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "Tagastustüüp" @@ -1908,7 +1908,7 @@ msgid "variable" msgstr "muutuja" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "funktsioon" @@ -1986,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "klass" @@ -2003,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" @@ -2018,7 +2018,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" @@ -2032,20 +2032,20 @@ msgstr "Argumendid" msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "atribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "moodul" @@ -2076,7 +2076,7 @@ msgstr "operaator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "erind" @@ -2088,92 +2088,92 @@ msgstr "lause" msgid "built-in function" msgstr "sisseehitatud funktsioon" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "Muutujad" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr " (iganenud)" @@ -2615,6 +2615,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz direktiivil ei tohi samaaegselt olla argumendid content ja filename" @@ -2888,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2914,17 +2920,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 2351cefa015993f62ed84cc480abae6164c9452c..50195e60b6cb52d7c6d07aff5f98d34e109bd0e0 100644 GIT binary patch delta 26 ecmexw^50}bpa6@JuA$N7PyrP%V{@$l6Bht^r3Y*P delta 26 ecmexw^50}bpa6@Zu93y$PyrP%V{@$l6Bht_9|w2< diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 5bc0b37d50e..2b40c555f7d 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%Y %b %d" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indizea" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroak" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Itzultzen du" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Itzulketa mota" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "aldagaia" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funtzioa" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "Jaurtitzen du" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klasea" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" @@ -2016,7 +2009,7 @@ msgstr "%s() (klasea)" msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" @@ -2030,20 +2023,20 @@ msgstr "Argumentuak" msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atributua" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modulua" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "eragiketa" msgid "object" msgstr "objetua" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "salbuespena" @@ -2086,92 +2079,92 @@ msgstr "sententzia" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Aldagaiak" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (zaharkitua)" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2833,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2885,44 +2884,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3600,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Oin-oharrak" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3634,16 +3633,16 @@ msgstr "" msgid "[image]" msgstr "[irudia]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 4fc2516be478f1603bea70b50c15979cfa4bf10f..63d04a14a7e4db938101ca4bcb33ca396a68b3d4 100644 GIT binary patch delta 12036 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 VzA8I!G+bTpbh&-Ce}46i{{uku3v~bh delta 12418 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 Z\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" @@ -22,130 +22,123 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "شاخه‌ی منبع(%s) پیدا نشد." -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "نشانی (%s) شاخه نیست" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "شاخه‌های مبدأ و مقصد نمی توانند یکسان باشند" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "اجرای اسفینکس نگارش %s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "به دلایل امنیّتی، حالت موازی در macOS و پایتون 3.8 و جدیدتر از آن غیرفعّال است. برای جزئیّات بیشتر لطفاً این مقاله را بخوانید: https://github.com/sphinx-doc/sphinx/issues/6803" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "این پروژه دست که به افینکس نگارش%s نیاز دارد و برای همین با این نسخه قابل ساخت نیست." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "ایجاد پوشه ی برون داد" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "در حال راه اندازی افزونه‌ی%s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل فراخوانی پایتون نیست. لطفاً تعریفش را تغییر دهید تا تابع قابل فراخوان پایتون شود. این کار لازمه‌ی conf.py است تا به عنوان افزنه‌ی اسفینکس کار کند." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "انجام شد" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "برای پیام‌های داخلی در دسترس نیست" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "بارگذاری محیط pckle شده" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "شکست خورد: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "هیچ سازنده‌ای برگزیده نشده، استفاده از قالب خروجی پیش‌فرض: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "موفّقیّت‌آمیز بود" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "انجام شد ولی با مشکل" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "ساخت %s، %s هشدار (با هشدار به عنوان خطا رفتار می‌شود)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "ساخت %s، %s هشدار." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "ساخت %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "بست کلاس %r در حال حاضر ثبت نام شده است، بازدیدکنندگان این پیوند نادیده گرفته خواهد شد" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "دستور %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +146,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,12 +159,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" @@ -797,12 +790,12 @@ msgstr "به دنبال هر یک از خطاهای بالا در یا در بر msgid "broken link: %s (%s)" msgstr "پیوند خراب: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "مهار '%s' پیدا نشد" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "شکست در گردآوری عبارات باقاعده در linkcheck_allowed_redirects: %r %s" @@ -920,7 +913,7 @@ msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1104,7 +1097,7 @@ msgstr "مقدار پیکربندی سندهای لتکس (latex_documents) به #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "فهرست" @@ -1881,7 +1874,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "پارامترها" @@ -1890,12 +1883,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "بازگشت ها" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "نوع برگشتی" @@ -1908,7 +1901,7 @@ msgid "variable" msgstr "متغیّر" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "تابع" @@ -1986,7 +1979,7 @@ msgid "Throws" msgstr "ایجاد" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "کلاس" @@ -2003,7 +1996,7 @@ msgstr "مؤلّفه‌ی قالب" msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" @@ -2018,7 +2011,7 @@ msgstr "%s (کلاس)" msgid "%s (global variable or constant)" msgstr "%s (متغیّر عمومی یا مقدار ثابت)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" @@ -2032,20 +2025,20 @@ msgstr "نشانوندها" msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "متد" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "داده" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "مشخّصه" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "ماژول" @@ -2059,7 +2052,7 @@ msgstr "توضیح %s تکراری از %s، مورد دیگر%s در %s قرا msgid "duplicate label of equation %s, other instance in %s" msgstr "بر چسب معادله ی %s تکرار است، مورد دیگر در %s قرار دارد" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "قالب مرجع معادله‌‌ی ریاضی (math_eqref_format) نامعتبر: %r" @@ -2076,7 +2069,7 @@ msgstr "عملگر" msgid "object" msgstr "شیء" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "ایراد" @@ -2088,92 +2081,92 @@ msgstr "گذاره" msgid "built-in function" msgstr "توابع درونی" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "متغیر ها" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s شگرد کلاس)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "%s(%sویژگی)" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "نمایه ی ماژول های پایتون" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "class method" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "متد استاتیک" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "ویژگی" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "توضیح تکراری شیئ %s، نمونه‌ی دیگر در %s قرار دارد، برای یک مورد از :noindex: استفاده کنید" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "برای ارجاع متقابل %r بیش از یک هدف پیدا شد: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (منسوخ)" @@ -2615,6 +2608,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== کند ترین زمان خواندن =======================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "دستورالعمل Graphviz نمی تواند هم نشانوند محتوا را داشته باشد و هم نام پرونده" @@ -2835,7 +2834,7 @@ msgstr "امضای ناشناخته‌ برای %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "خطا در قالب بندی نشانوند برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "ویژگی ناموجود %s در شیئ %s" @@ -2887,44 +2886,44 @@ msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "ویژگی نایاب در گزینه‌ی :members: قید شده: پیمانه‌ی:%s، ویژگی %s" -#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "شکست در دریافت امضای سازنده‌ی شیئ برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "پایه ها:%s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "نام جانشین %s" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "نام جانشین نوع متغیر(%s)" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3540,12 +3539,12 @@ msgid "" "it directly: %s" msgstr "قالب تاریخ ناشناخته. اگر می‌خواهید از رشته‌متن مستقیماً خروجی بگیرید، آن را با نقل قول رشته‌متنی محصور کنید: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "درختواره‌ی فهرست مطالب شامل ارجاع به پرونده ناموجود %r است" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "ایراد در هنگام ارزیابی تنها عبارت دستور العمل: %s" @@ -3602,27 +3601,27 @@ msgstr "مقدار بسیار بزرگ :maxdepth:، نادیده گرفته شد msgid "document title is not a single Text node" msgstr "عنوان سند یک بست متنی نیست" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "به بست عنوانی برخورد که در قسمت، موضوع، جدول، اندرز یا نوارکناری نبود" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "پانویس ها" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "هر دو مقدار tabularcolumns و :widths: داده شده، بنابراین :widths: حذف می شود." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "ابعاد واحد %sنامعتبر است و نادیده گرفته شد." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد" @@ -3636,16 +3635,16 @@ msgstr "[تصویر%s]" msgid "[image]" msgstr "[تصویر]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "عنوان درون شکل نیست." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "بست به کار نرفته: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "بست از نوع ناشناخته: %r" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index d3624370a3703ac7fc14c816ea9590b2d89c8a24..2ec0bddfe71befd1ed92263279598b1267386110 100644 GIT binary patch delta 32 lcmaDL_CRdIDK-`(T?5m}=h#%ZKnw)~11m$L&41WZSOBnK3CI8d delta 32 lcmaDL_CRdIDK-{ET_cOh=h#%ZKnw)~11m$r&41WZSOBox3C{ok diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 11d0d62ce14..a421c530070 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" @@ -1878,7 +1878,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1887,12 +1887,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1905,7 +1905,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "" @@ -1983,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "" @@ -2000,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "moduuli" @@ -2073,7 +2073,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "" @@ -2085,92 +2085,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr " (poistettu)" @@ -2612,6 +2612,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2885,7 +2891,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2911,17 +2917,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index e3ea698bf02173c1167ac40d1d2dbf991e355806..2aaffb6700bb7f23518b07839cb0d37eb76c3e0d 100644 GIT binary patch delta 11484 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 DL&cx! delta 11794 zcmYM)3wTXe-pBEMNJ0`Jk*g%+B$5b;M8qX=32}*gT&t-vgam1WG#3Wd(=@FPEu)jB znqpLnQewtv6{V`FmKLqLbx`{Df--cXN)5*Q{hhU+_wDn{^I89W_TFo)|N5_WPSe?O z(qqFJ57&j39@Q5A9BgD+kvJek(f|Kblw?_p9hNl1Uq0P_QpZj9bdq~xDWeSmdo<$Y*{f}$VP80#HLt^ariW9V6_;9`%xWS z#6bKB1Mn{TqHmhH9*UYvBKl)LY>s2miBmCv{;f(HdaxQbfOYl_TW~D#5!8#ET`VgL zyQAXywkuE_yp5r_3&Zd$Y=%E$Al}Aq=+o6qBnu8H&Lm42enkYF%v(wKX>$?E{J_?yI>pQNywU8PotjO+k^b8Xby5A8c!f& zv3^6XeR5AT^KqyFO+>P2m7o*fMm>KBwFIXz95174rBN@_Q4DGViKzE>wSBx7`ESjI z3NFy6wHC>abrwUgC8ew4Y>#7bII7szq8DyQAKZlzSZ{j~rx4%67C4dg#A6X^39E1b z*0^YBO)lUtY)5`nJf)~Le;JjkSCO)?)}V^%1ZoK`qXu*vmAR&UO>JbMIw-|{xC>Pa z_mCZIB~i(V=$b&I9gW4PnQlWB-*G$k7UUqRz>F09AasP&L-P^s;Ok6{jK=9^G!`Z;pu zSZ7f+;5WofAPkj}i8vddM#gAeLv@@w)I6VwzVvV9(9j1HP-`;-6R;Y6@I%x<4%_iL z)aRE_wbFvZQS~RFGM0f8FcX!T8r0IQ#Uy+iL&)e!bOmwY+Hms%YlK;w08|H2*c1n& zw%=&MEIy8U;j^d*UqvrmhkD^AR7Q5AQv3<};t@Ok1~u^SQ2po-(er_*%!j*Z=z$c} zh#-A z>Pn;$z=e^h8RTIQ7NXYv8Pw-5Vj$L_c0(Pi$eKK2zUQZ68u2nr!2_roYQSU+A8%P? z-5P?$_y&?0m*xAY*;a`d!v`Z!sV_z+R$~F~M0FUM%Z|Z$$QZ0oQJINgRB<>1mGWiy zBG#d{cUKkrh@;#lF`34ghm8TL1o}+R1K^}25+55b=+;TS)#tE zeLWbppL0;Pun>dsWz+y_@i1;iy{B}FWi7>{s7&SNk$=7585$bE7Sw~Ep^E1iswU3b z@%MIo163QhQA_at`CO?gs3J?Vscj!YMceSKIL=>_Hq;WPY$rLM_!s9E9JYmLg%6@o{WU zyd1mW8dOHV#z_3x#QgrBZN4^Jqh6GUdeLT7iq4}RxQ)tG;2iULF#E!YX)MRoiW24J&N zQzLCqGt9&mI0KcjdA6^jig!D*5v((~4ttle{#u)hG&J*|a`S>#_!x0}R4r6uGVVvE z{04@hAIF_C6OZ~l3-!KYOvDX#d>l1EuX*P46nvC8e;)bQ3-@wCBRq$J==h^Kkb*In zI2DKDQq(|Cq3%D6KBzDMAn?U7bfN~3fvvCrqtJ!kxE9lK^L+9@g2wk;U{Y461tzr{ zu_f^?^ujMN9KXg;ypGzIo(s(Y2B9W02D{-?sNJ&(b>B_Y^Ie`cOF0rlh@W-QP}Q%* z9K48H^W;TlDY~OlI|wzPxu_H`K|lNulkfpM{= zp!aj`gUMwj)6klCL1kbt>P0KDJs!efyos%`X{DJ_JZixGu@#o02D%KD+O4SFQjeO* zRXc9>ygB*OaG>^oPa4g*p#ru2mScC^jWO7ON>$JcCIh`u19{ALo_)O z+>M&pho~j~0tey)?1%mT#QG1Sv6x029z&(_7OJD>ON^aSH8CDl1C^+gY%M0>QPeuz!`IOt*P$l-kC(~6w$V3S&_FI>68?tGFlL#VK?*8$ zxv1-Z#SXXy_2Sd06kkNuPQY@LsUhe?T!7lX#i(MgL=CLQWnZX6o!#}Q8&6<7UP2X- z-=9rJ;!wrZ0X4(PsF{?ZQu_u@!*!^o^ju-CN1-oqJhsEm*aKY?XgFz9V_)2fP4Eut z;CP4{P~c2jLL8g@*bD{enCe#6P0hPK3s3HudcYPj-fj9=WG}BSLWSJdrM`h+4)Bqa4Zq9)yRL61H5l5p2 z9Zy1aSYcn^iptn~sQVA$D7=W8Sf@A4 zi8>N9i07lLCygEU2fv`!zSS!8qG${w?qWLvBZ#M?2KXGRMqWqV_a3&wW2k{#!BD(s z8@QSRcaRNShrg^L|FJY)S<9CM?tGKk@PJ3H`zzgAjM{G2TPBr$s1yd`aLmFHxEx30 zdCbA&_2zt7get-}(FfnbWPA@b@E_N+{!ug>8%zh$s5Nef{@4?>ZHC*|b5S!dvg7Bl zIq_?#18D=gQ;&M?B5DBFP#yniSevDxX1Z zr`J#^Uyt2zA8I1EFdBn4nS-kvULc-~Ju!2$d2Rt}V6G|}UNqKV3a+<3iBAxFykm~o zIjEU0#jg0Kef>0Q0u8ty`)@HbY`oPxSAivz<_6!dp<@N~u|#QErrMVO3pZ8u;C;*&TEAL0-kwcWhu4NN88g}L-^ zU8SKl>;Dh46b0yhF>2q=#aOJy*|-N)r0sW@jPyn=VF?bx`8XL5-~^0**SzOx)WBC^ zQ+x|u8sS#^h6ku(i+s;?kdA$bhods|GV1=%aU@3UG}oWRUc{SiFJUL*w(pxC8skvU zuf+Cv3biB;-zWbXQU6`0sD`0ZQ-Nu?1H0g548q9W=3hQj@gw2|=)|6T%(v%6)C7vK z5&j9M;!7BZH&C?{^a1xcsGkqWe+m~~-fL367yA)^ik|4b&s2R2j3kc3Z0v`DxCGns zqBYoz_`rwe{$uz&@sAjVh5OCdp3ab)ezLg@M=y$D(#Y6$ap5 z^uS}7k0(%>N&mzYQ6^>*55iGoVlf62pE+o@^L5nHS)ZDNDi~FK!!e5bvmT+Lqp}>e zb`=Uw|dh*NBrV_)LESd0&FAkIEy{_Xc&%q9*$tc<(( zg98n9T#4bh7WFN*2iM?9RL3Qsn~eMgb^m(w$B$4MJZ^t}5nB>B*s;eKW`H3W%k=>m zhK1-)|JHLfJh2Kxum)93f5#@c57ogzJ3fILz&Ui{9rVVqBj&|1sHN+Pn$QRwi!-q` z?nMpoEV^=OT&LlK*+)%vjz-0W=)^MAE~!Qh@E|^q=dmB=9WzU^9<_A!s5So?wbuVd z4W!AJ=DjhfV(s`P`PU1xxUc|oaT1=u6ioff{8GuoG~!j5gkPf0h5M)pq#ox#EaOsC ziv7Pfc168s0;cM7?1+1D8(#gI{4b|bbHeE84r3?c8>kMW&Y0&%qOPw;T|b3G(eoQ~0*-RgP^w==KC{+hInMj1`IUMdUn3rV z*4+04dJ*41rS>h6#2H5sN$`~G59eSVDNcUGp>a+{J8J}HpePV$65@+ za~OvIMs@7{EtQS_s0=i^z#)U>s0>A3G)p!Z)$wzv=W4MTZbl7!C;BSc`)R1kzpy_z zffI?(;~vcT&iu*s77ikQM3%)zM`iQ7>FIEL=O z|DB;Rl?#`#GY z!!eF{3+le(nC_zSBaJE8`m*_&d`Njeb~o)jYTrwcY-SZP4$U$xIUJ!O7@_`%p9a1S9Ya zHo;$UFy2F@e!#!X0aS(VOxy9$>#YA6ZuskUlcEM3O+4y``2|yp!-yOGVzx~Vh7;Fd ze|#6C@OM;(!v1YO?}nL3$UL=&+K&c^|`4MXu))Bt^dH5rY^ro@Hl#1hoNt55?t22v4{AWMznOjC54BVks2RSA1My?*giUXoFSQKRfW~51bWNn86#oTV;sw;m z8cvYQG^)cQRHl|<3f5shev8|%-|yzPVFP*)XWcbFP_l6W@px1Qj$^v^fAD|I z2y;*)cVRrP!z?_6nu*UnQ-q^XaV2KpVa&wF_s#cxKkQAs1GNhpQ0G9K2WDxzV+HXP zoTPm_9!Zod8jI{!&lJXa#&8R z#c-@gEx`qhbJ4g=BMSW-4)@8{5q*glpfa%-v#}1R;Vqnwxs4p|V%?9*#1&N0#x!=g zGm?#u5x;=y@FJ>~u3%@pkFF3JDIN~@Z@+9*4J^i9Sc96;Y1Dl&o@O8!s0=)dD#|U` z7f;#OL%baBrOU$JT(3lZegIWFjhdJV$2D=d+y}=%E-1x$*bkq<9(n-Xy91{XXEk+L zv#=J&p})7oz0V6UnfPP$#0J!W?_eG__i?yurWkeKPSoc=`MB&FKk-de#u^7W+~0;7IElC#C*rTD%#3PjCRTxpH=uUWX(Tf) z%O}v`K3H-vmk)}t3m(J~_#bS6gM-Wrb8!f92`WQ-QJJ}jKKK&`;J>jOHVSsQw_gV8 zK$?JBlF1mW{r?sXjrb61ZQ}U<#%L)XL2b+VSb{Zn+$_}LJ{OWu+jJlX;b?4!(@_~) zj@oV;Fbj91&Xs$p%z1~=Fa2A6XegztQEOUa`}!UGx_`LINC(t;(hD`QY3Nc)DrqR?e?nFJKGe~91(nj^2#57YbfPj-gQ}H% zs2Lr^QFsDXe6f*ctrwt{a0}}GyQq#Gt<83iZq5Gh%Y{rXs6!Wa#I5)|o<+@kavQUK zR-@MXG-{2{qc`3_ZOh*=5o4mvKF>id$s$ySHefLB$M5h|l*?iLL}RDZtkLRdQydpi zH^#)6gC`xG#5JfY-h(TYc<`~?; zbQp_zZjg!lTV*s7xUdrS_4tt;pTjs}k3^HY4yb{SMit>?jK<2u9TSp{g}COFI7;)&YF{7;4Cb4<`At%&y)=Sz5o@J?8q&NzS4IGfXq+`c1?IrDe|i`pui*{~I+y zaZ!0`veVs#ntC@6+5?|kP+nN%T~x5ZSyae`s*a>5`nkv2YidcR{\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" @@ -45,130 +45,123 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Impossible de trouver le répertoire source (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Le répertoire de sortie (%s) n'est pas un répertoire" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Les dossiers source et destination ne doivent pas être identiques" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s en cours d'exécution" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "Pour des raisons de sécurité, le mode parallèle est désactivé sur macOS et Python3.8 et plus. Pour plus de détails, veuillez lire https://github.com/sphinx-doc/sphinx/issues/6803

" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être construit avec cette version." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "création du dossier de destinataire" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "lors de l'initialisation de l'extension %s :" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable. Veuillez modifier sa définition pour en faire une fonction appelable. Ceci est nécessaire pour que conf.py se comporte comme une extension Sphinx." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "fait" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "traductions indisponibles" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "Chargement de l'environnement pickled" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "a réussi" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "s'est terminée avec des problèmes" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "La compilation %s, %s avertissement (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "La compilation %s, %s avertissements (avec les avertissements considérés comme des erreurs)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "La compilation %s, %s avertissement." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "La compilation %s, %s avertissements." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "La compilation %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "la classe de nœud %r est déjà enregistrée, ses visiteurs seront écrasés" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "la directive %r est déjà enregistrée, elle sera écrasée" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -176,12 +169,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -189,12 +182,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" @@ -820,12 +813,12 @@ msgstr "Recherchez les éventuelles erreurs dans la sortie ci-dessus ou dans %(o msgid "broken link: %s (%s)" msgstr "lien mort: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Ancre '%s' non trouvée" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -943,7 +936,7 @@ msgstr "Échec de lecture du fichier de configuration de construction : %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1127,7 +1120,7 @@ msgstr "La valeur du paramètre \"latex_documents\" référence un document inco #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Index" @@ -1904,7 +1897,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramètres" @@ -1913,12 +1906,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Renvoie" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Type renvoyé" @@ -1931,7 +1924,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "fonction" @@ -2009,7 +2002,7 @@ msgid "Throws" msgstr "Déclenche" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" @@ -2026,7 +2019,7 @@ msgstr "paramètre du modèle" msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" @@ -2041,7 +2034,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" @@ -2055,20 +2048,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "module" @@ -2082,7 +2075,7 @@ msgstr "description de %s dupliquée pour%s; l'autre %s se trouve dans %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format invalide : %r" @@ -2099,7 +2092,7 @@ msgstr "opérateur" msgid "object" msgstr "objet" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "exception" @@ -2111,92 +2104,92 @@ msgstr "état" msgid "built-in function" msgstr "fonction de base" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "propriété" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "description dupliquée pour l'objet %s; l'autre instance se trouve dans %s, utilisez :noindex: sur l'une d'elles" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "plusieurs cibles trouvées pour le renvoi %r : %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (obsolète)" @@ -2638,6 +2631,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== durées de lecture les plus lentes =======================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "La directive Graphviz ne peut pas avoir simultanément du contenu et un argument de nom de fichier" @@ -2858,7 +2857,7 @@ msgstr "signature invalide pour auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erreur pendant la mise en forme de l'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "attribut manquant %s dans l'objet %s" @@ -2910,44 +2909,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Échec pour obtenir la signature de la fonction pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Échec pour obtenir la signature du constructeur pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, 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:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3563,12 +3562,12 @@ msgid "" "it directly: %s" msgstr "Format de date invalide. Insérez la chaîne de caractères entre des guillemets simples si vous voulez l'afficher telle quelle : %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "la table des matières contient des références à des fichiers inexistants %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exception pendant l’évaluation de l'expression de la directive only : %s" @@ -3625,27 +3624,27 @@ msgstr ":maxdepth: trop grand, ignoré." msgid "document title is not a single Text node" msgstr "le titre du document n'est pas un unique node de type Text" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "le titre de node rencontré n'est apparenté à aucun parmi section, topic, table, admonition ou sidebar" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notes de bas de page" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "options tabularcolumns et :widths: simultanément présentes. :widths: sera ignoré." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "%s est invalide comme unité de dimension. Ignoré." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "le type inconnu d’entrée d’index %s a été trouvé" @@ -3659,16 +3658,16 @@ msgstr "[image: %s]" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "la légende n'est pas à l'intérieur de la figure." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "type de node non-implémenté : %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "type de node inconnu : %r" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index e7e03926220c6384afde71f31e53b4f607e4bf81..e59ca647c34e996f0e6ac0f124c51a524dd8f79d 100644 GIT binary patch delta 27 icmZo*X<(Vq!DMJOu}g)^NY}tr!N9=E&}ich4@LlJmwR?#C~}$LtP^a1p@;sL&J?bJQx9cIS5Dq diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 887ffe3fe51..6a7e07a5081 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: fr_FR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2837,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2889,44 +2882,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3542,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3604,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3638,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 5476d75a958642e60e6e02a701c5248ed9bbdad9..4943376adef1051133e76bf254ae1219338aaab9 100644 GIT binary patch delta 32 mcmZ3YzC?Y)AubjpT?5m}$GB9uKnw)~11m$L&0n}SZ~y?MoC&r7 delta 32 mcmZ3YzC?Y)Aubj}T_cOh$GB9uKnw)~11m$r&0n}SZ~y?N7zw=q diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 91f2a6985f1..cc57ad55e0b 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" @@ -1878,7 +1878,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "פרמטרים" @@ -1887,12 +1887,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1905,7 +1905,7 @@ msgid "variable" msgstr "משתנה" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "פונקציה" @@ -1983,7 +1983,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "מחלקה" @@ -2000,7 +2000,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2015,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2029,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "מודול" @@ -2073,7 +2073,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "" @@ -2085,92 +2085,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "משתנים" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2612,6 +2612,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2885,7 +2891,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2911,17 +2917,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 6cb5b607535139c5552937697aee18e988c69314..7b560eb2ae10cf7f7ebef0314e2e0cbdbdb1cd98 100644 GIT binary patch delta 28 gcmaFZ&i1gKZ39~;i;=FO(PXYp6)<{9 delta 28 gcmaFZ&i1gKZ39~;i=nQO#bmBd6)\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "MIME-Version: 1.0\n" @@ -22,130 +22,123 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "स्रोत निर्देशिका (%s) नहीं मिली" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "स्रोत निर्देशिका और गंतव्य निर्देशिका समरूप नहीं हो सकतीं" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "स्फिंक्स %s संस्करण चल रहा है" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "इस परियोजना में स्फिंक्स का कम से कम %s संस्करण चाहिए और इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "परिणाम निर्देशिका बनाई जा रही है" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "%s आयाम को स्थापित करते हुए:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'स्थापना' को जैसा कि अभी कोन्फ़.पाई में परिभाषित किया गया है, पाइथन से निर्देशित नहीं है. कृपया इसकी परिभाषा में परिवर्तन करके इसे निर्देश योग्य कर्म बनाएं. कोन्फ़.पाई को स्फिंक्स के आयाम की तरह व्यवहार के लिए इसकी आवश्कयता है." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "संपन्न" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "अंतर्निर्मित संदेशों में उपलब्ध नहीं है" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "रक्षित स्थिति को लागू किया जा रहा है" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "असफल: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "किसी निर्माता को नहीं चुना गया, मानक उपयोग: एच्.टी.ऍम.एल." -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "सफल हुआ" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "समस्याओं के साथ समाप्त हुआ" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s निर्माण, चेतावनी %s (चेतावनी को गलती माने)| " -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "%s सम्पूर्ण, %s चेतावनी." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "%s निर्मित." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "निर्देशक कक्षा #node class# %r पहले से पंजीकृत है, इसके अभ्यागत निरस्त हो जाएंगे " -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "निर्देश %r पहले से पंजीकृत है, यह निरस्त हो जाएगा" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +146,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,12 +159,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" @@ -797,12 +790,12 @@ msgstr "उपरोक्त परिणाम में अथवा %(outdir msgid "broken link: %s (%s)" msgstr "खंडित कड़ी: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "लक्ष्य '%s' नहीं मिला" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -920,7 +913,7 @@ msgstr "निर्माण सूचनापत्र फाइल को #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1104,7 +1097,7 @@ msgstr "\"latex_documents\" विन्यास मान अज्ञात #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "अनुक्रमणिका" @@ -1881,7 +1874,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "मापदण्ड" @@ -1890,12 +1883,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "प्रदत्त " #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "प्रदत्त प्रकार " @@ -1908,7 +1901,7 @@ msgid "variable" msgstr "चर पद" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "फंक्शन" @@ -1986,7 +1979,7 @@ msgid "Throws" msgstr "देता है " #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "वर्ग" @@ -2003,7 +1996,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधि)" @@ -2018,7 +2011,7 @@ msgstr "%s() (वर्ग)" msgid "%s (global variable or constant)" msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s लक्षण)" @@ -2032,20 +2025,20 @@ msgstr "चर " msgid "%s (module)" msgstr "%s (प्रभाग)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "पद्धति" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "आंकड़े " -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "लक्षण" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "प्रभाग" @@ -2059,7 +2052,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "समीकरण का प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "अमान्य math_eqref_format: %r" @@ -2076,7 +2069,7 @@ msgstr "चालक" msgid "object" msgstr "वस्तु" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "अपवाद " @@ -2088,92 +2081,92 @@ msgstr "वक्तव्य " msgid "built-in function" msgstr "अंतर्निर्मित कर्म" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "चर पद " -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "उभारता है " -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "प्रभाग" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "अवमानित " -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "वर्ग विधि" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "स्थैतिक पद्धति" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "(अवमानित)" @@ -2615,6 +2608,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "ग्राफविज़ निर्देश में दोनों मापदंड, विषय-वस्तु और फाइल का नाम, नहीं हो सकते" @@ -2835,7 +2834,7 @@ msgstr "स्वतः %s (%r) के लिए अमान्य हस्त msgid "error while formatting arguments for %s: %s" msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "%s गुण %s वस्तु में अनुपस्थित" @@ -2887,44 +2886,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3540,12 +3539,12 @@ msgid "" "it directly: %s" msgstr "अमान्य तिथि प्रारूप. यदि आप सीधे परिणाम में दर्शाना चाहते हैं तो अक्षरमाला को एकाकी उद्धरण चिन्ह द्वारा चिन्हित करें: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "विषय-सूची-संरचना में अविद्यमान फाइल %r का सन्दर्भ है" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "केवल निर्देशक भाव का मूल्यांकन करते समय अपवाद: %s" @@ -3602,27 +3601,27 @@ msgstr "अत्याधिक अधिकतम गहराई # :maxdepth: msgid "document title is not a single Text node" msgstr "लेखपत्र का शीर्षक एकल पाठ बिंदु नहीं है" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "पाया गया शीर्ष बिंदु किसी भाग, प्रसंग, तालिका, विषय-प्रबोध अथवा पार्श्व-स्थान में नहीं है" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "पाद टिप्पणियां" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "दोनों तालिका-स्तंभ और :चौड़ाई: विकल्प दिए गए हैं. :चौड़ाई: मान की उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "परिमाण मात्रक %s अमान्य है. उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" @@ -3636,16 +3635,16 @@ msgstr "[चित्र: %s]" msgid "[image]" msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "शीर्षक रेखाचित्र के भीतर नहीं है" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "अकार्यान्वित बिंदु प्रकार: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "अज्ञात बिंदु प्रकार: %r" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 29bd0cbdad39e4a990bf880e17ba60d321f353c0..51cb0e70ba179cfb4b1e35da9c81c76bd376b0ad 100644 GIT binary patch delta 29 kcmey*{GWM38;g;yq0z)H6)q!P15*V911m$LjXT^K0g!13yZ`_I delta 29 icmey*{GWM38;hZ?k;TL=6)q61U|?WnXt;5QJ0k#){|LnZ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 4d45981e34e..158790c20e9 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 876e5b8bc7b8461e4751164f5ea5a63ddecc96af..092eec81a1c43f45c67fe0fbc9e26d9df8163bc3 100644 GIT binary patch delta 28 gcmaFX&iJgIaf7x7i;=FO(PVuM6)\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nema izvornog direktorija (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Izvorni i odredišni direktorij ne smiju biti jednaki" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Izrada pomoću Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ovaj projekt se ne može izgraditi s instaliranom verzijom, potrebno je instalirati Sphinx v%s ili višu verziju." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "izrada izlazne mape" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmijenite definiciju 'setup' funkcije kako bi ju mogli izvršiti iz Pythona. Ovo je potrebno kako bi conf.py imao karakter Sphinx proširenja. " -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Abecedni popis" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vraća" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Vraća tip" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "varijabla" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "Baca (iznimke)" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "razred" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -2015,7 +2008,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -2029,20 +2022,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "izuzetak" @@ -2085,92 +2078,92 @@ msgstr "izjava" msgid "built-in function" msgstr "ugrađen funkcije" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Varijable" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (zastarjelo)" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz direktiva ne može imati i sadržaj i ime datoteke za argumente" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fusnote" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "[slika: %s]" msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 673ee280a7fd3d53623857505914ecb2f3e159c4..28519112ecb6fa8354e26ec7d2bcd7e812104dc0 100644 GIT binary patch delta 26 ecmewt{V#gMUMUtMT|=YE2c=ZNjLk2lM1=v8SP3=& delta 26 ecmewt{V#gMUMUtsT_cOh2c=ZNjLk2lM1=v8(g{KU diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index dc8f4d9d609..a7c2e6a4f8e 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" @@ -24,130 +24,123 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nem található a forráskönyvtár (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "A forráskönyvtár és célkönyvtár nem lehet azonos" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx %s verzió futtatása" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ez a projekt legalább a Sphinx %s verzióját igényli, és emiatt nem állítható össze ezzel a verzióval." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "kimeneti könyvtár elkészítése" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "a(z) %s kiterjesztés beállításakor:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem meghívható Python függvény. Módosítsa a meghatározását, hogy meghívható függvénnyé tegye. Ez ahhoz szükséges, hogy a conf.py Sphinx kiterjesztésként viselkedjen." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "kész" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "nem érhető el beépített üzenetekhez" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "pickle-t környezet betöltése" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "sikertelen: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Nincs összeállító kiválasztva, az alapértelmezett használata: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "sikerült" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "problémákkal befejeződött" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "%s összeállítás, %s figyelmeztetés (a figyelmeztetések hibákként való kezelésével)" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "%s összeállítás, %s figyelmeztetés." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "%s összeállítás." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "a(z) %r csomópontosztály már regisztrálva van, a látogatói felül lesznek bírálva" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,12 +161,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -799,12 +792,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -922,7 +915,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1106,7 +1099,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Tárgymutató" @@ -1883,7 +1876,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paraméterek" @@ -1892,12 +1885,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Visszatérési érték" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Visszatérés típusa" @@ -1910,7 +1903,7 @@ msgid "variable" msgstr "változó" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "függvény" @@ -1988,7 +1981,7 @@ msgid "Throws" msgstr "Dob" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "osztály" @@ -2005,7 +1998,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" @@ -2020,7 +2013,7 @@ msgstr "%s() (osztály)" msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" @@ -2034,20 +2027,20 @@ msgstr "Argumentum" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attribútum" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2061,7 +2054,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2078,7 +2071,7 @@ msgstr "operátor" msgid "object" msgstr "objektum" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "kivétel" @@ -2090,92 +2083,92 @@ msgstr "utasítás" msgid "built-in function" msgstr "beépített függvény" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Változók" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Kivétel" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (elavult)" @@ -2617,6 +2610,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2837,7 +2836,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2889,44 +2888,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3542,12 +3541,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3604,27 +3603,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Lábjegyzetek" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3638,16 +3637,16 @@ msgstr "[image: %s]" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 404e363308faafb6fe23ab03a02095d2c6c38364..00ea0a0288818c93e04ea310e621f53bc1d7caaf 100644 GIT binary patch delta 34 qcmeCV%iMF9dBcJ>79(9lqsdF!RJe?E4NMgb46F=|HeYJnl@0*k(hO|? delta 34 ocmeCV%iMF9dBcJ>7DHVli^)scRJcG41p@;sL&MFN+IFP_0N{5Fb^rhX diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index cb970755c4f..cc6b6e05f4c 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" @@ -23,130 +23,123 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Tidak dapat menemukan direktori sumber (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Direktori sumber dan direktori tujuan tidak boleh sama" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Menjalankan Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proyek ini memerlukan sedikitnya Sphinx v%s dan maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "membuat direktori keluaran" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "saat menyiapkan ekstensi %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python callable. Silakan modifikasi definisinya untuk membuatnya menjadi fungsi callable. Hal ini diperlukan guna conf.py berjalan sebagai ekstensi Sphinx." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "selesai" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "tidak tersedia untuk built-in messages" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "memuat lingkungan yang diawetkan" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "gagal: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "berhasil" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "selesai with masalah" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "bangun %s, %s peringatan (dengan peringatan dianggap sebagai kesalahan)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s peringatan." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "kelas simpul %r sudah terdaftar, pengunjungnya akan diganti" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "pengarahan %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +147,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,12 +160,12 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" @@ -798,12 +791,12 @@ msgstr "Mencari kesalahan sembarang dalam keluaran di atas atau di %(outdir)s/ou msgid "broken link: %s (%s)" msgstr "tautan rusak: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Anchor '%s' tidak ditemukan" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -921,7 +914,7 @@ msgstr "Gagal membaca berkas info build: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" @@ -1105,7 +1098,7 @@ msgstr "nilai konfigurasi \"latex_documents\" mereferensikan dokumen yang tidak #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indeks" @@ -1882,7 +1875,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" @@ -1891,12 +1884,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Kembali" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Return type" @@ -1909,7 +1902,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "fungsi" @@ -1987,7 +1980,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "class" @@ -2004,7 +1997,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" @@ -2019,7 +2012,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2033,20 +2026,20 @@ msgstr "Argumen" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2060,7 +2053,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplikasi label persamaan %s, misalnya di %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Math_eqref_format tidak valid: %r" @@ -2077,7 +2070,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "eksepsi" @@ -2089,92 +2082,92 @@ msgstr "statement" msgid "built-in function" msgstr "fungsi built-in" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variabel" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "lebih dari satu target ditemukan untuk referensi silang %r: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (obsolet)" @@ -2616,6 +2609,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Pengarahan Graphviz tidak dapat memiliki konten dan argumen nama berkas sekaligus" @@ -2836,7 +2835,7 @@ msgstr "tanda tangan tidak valid untuk outo %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "kesalahan saat memformat argumen untuk %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut hilang %s dalam objek %s" @@ -2888,44 +2887,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3541,12 +3540,12 @@ msgid "" "it directly: %s" msgstr "Format tanggal tidak valid. Kutip string dengan kutipan tunggal jika Anda ingin menampilkannya secara langsung: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree berisi ref ke berkas yang tidak ada %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" @@ -3603,27 +3602,27 @@ msgstr ":maxdepth: terlalu besar, diabaikan." msgid "document title is not a single Text node" msgstr "judul dokumen bukan simpul Text tunggal" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "simpul judul tidak ditemui dalam bagian, topik, tabel, peringatan atau sisi bilah" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Catatan kaki" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "opsi tabularcolumns dan :widths: opsi diberikan bersamaan. :widths: diabaikan." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "unit dimensi %s tidak valid. Diabaikan" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "entri indeks tidak diketahui ditemukan tipe %s" @@ -3637,16 +3636,16 @@ msgstr "[gambar: %s]" msgid "[image]" msgstr "[gambar]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "keterangan tidak di dalam gambar." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "tipe simpul tidak diterapkan: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "tipe simpul tidak dikenal: %r" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 2e1bd88e5111f95e3f7c514cf6703a82414fa277..dba3150554fb99c30cc70ddb57e44efdc053f8f5 100644 GIT binary patch delta 26 ecmaDY`C4*ADLadiuA$N7N_G`6WAj3GFIE6`RR^K~ delta 26 ecmaDY`C4*ADLadyu93y$N_G`6WAj3GFIE6`&j+pm diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 4fb01977851..be82ca5ede4 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: is\n" "Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Yfirlit" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2008,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2085,92 +2078,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "[mynd: %s]" msgid "[image]" msgstr "[mynd]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 25047bd7f5b8308deadc42ca3c448229dd769799..02e4169a32eb9fd27315e3368c2c229f8a2daa6f 100644 GIT binary patch delta 26 ecmaFq|I&Yhs|1UYuA$LnPYD$;V{@TI1wR0Kst4r& delta 26 ecmaFq|I&Yhs|1Uou93xLPYD$;V{@TI1wR0LBnR;T diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 781c1b19505..c51a98803da 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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 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" @@ -23,130 +23,123 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "fatto" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -154,12 +147,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -167,12 +160,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -798,12 +791,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -921,7 +914,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" @@ -1105,7 +1098,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indice" @@ -1882,7 +1875,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1891,12 +1884,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Ritorna" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo di ritorno" @@ -1909,7 +1902,7 @@ msgid "variable" msgstr "variabile" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funzione" @@ -1987,7 +1980,7 @@ msgid "Throws" msgstr "Solleva" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" @@ -2004,7 +1997,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" @@ -2019,7 +2012,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" @@ -2033,20 +2026,20 @@ msgstr "Parametri" msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modulo" @@ -2060,7 +2053,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2077,7 +2070,7 @@ msgstr "operatore" msgid "object" msgstr "oggetto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "eccezione" @@ -2089,92 +2082,92 @@ msgstr "statement" msgid "built-in function" msgstr "funzione built-in" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variabili" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (deprecato)" @@ -2616,6 +2609,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2836,7 +2835,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2888,44 +2887,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3541,12 +3540,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3603,27 +3602,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Note a piè di pagina" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3637,16 +3636,16 @@ msgstr "[immagine: %s]" msgid "[image]" msgstr "[immagine]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 506f06210886b99aaa196c4928cf921e435f9e6c..1a1f42d147234049e90c50678f93765db1bc4b29 100644 GIT binary patch delta 11226 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 C_h^s+ delta 11573 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 U(+%$87xl7vC3_y\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" @@ -34,130 +34,123 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "ソースディレクトリが存在しません (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "出力先ディレクトリ (%s) はディレクトリではありません" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "出力先ディレクトリにはソースディレクトリと異なるディレクトリを指定してください" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s を実行中" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "セキュリティ上の問題により、macOS で python3.8 以上をお使いの場合はパラレルモードは利用できません。詳しくは https://github.com/sphinx-doc/sphinx/issues/6803 をお読みください。" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "このプロジェクトはSphinx v%s以降のバージョンでなければビルドできません。" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "出力先ディレクトリを作成しています" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "拡張機能のセットアップ中 %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "conf.pyにある'setup'はPythonのcallableではありません。定義を修正してcallableである関数にしてください。これはconf.pyがSphinx拡張として動作するのに必要です。" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "完了" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "翻訳が用意されていません" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "保存された環境データを読み込み中" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "警告%s、%sをビルドします(警告はエラーとして扱われます)。" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "ビルド %s, %s 警告." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -165,12 +158,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -178,12 +171,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "直列で %sします" @@ -809,12 +802,12 @@ msgstr "上記の出力結果、または %(outdir)s /output.txt を見てエラ msgid "broken link: %s (%s)" msgstr "リンクが切れています: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "アンカー '%s' が見つかりません" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects 内の正規表現のコンパイルに失敗しました: %r %s" @@ -932,7 +925,7 @@ msgstr "build info ファイルの読み込みに失敗しました: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%Y年%m月%d日" @@ -1116,7 +1109,7 @@ msgstr "設定値 \"latex_documents\" は、不明なドキュメント %s を #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "索引" @@ -1893,7 +1886,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "パラメータ" @@ -1902,12 +1895,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "戻り値" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "戻り値の型" @@ -1920,7 +1913,7 @@ msgid "variable" msgstr "変数" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "の関数" @@ -1998,7 +1991,7 @@ msgid "Throws" msgstr "例外" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "クラス" @@ -2015,7 +2008,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" @@ -2030,7 +2023,7 @@ msgstr "%s() (クラス)" msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" @@ -2044,20 +2037,20 @@ msgstr "引数" msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "の属性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "モジュール" @@ -2071,7 +2064,7 @@ msgstr "%s の記述 %s はすでに %s で %s が使われています" msgid "duplicate label of equation %s, other instance in %s" msgstr "数式 %s のラベルはすでに %s で使われています" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無効な math_eqref_format: %r" @@ -2088,7 +2081,7 @@ msgstr "演算子" msgid "object" msgstr "オブジェクト" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "例外" @@ -2100,92 +2093,92 @@ msgstr "文" msgid "built-in function" msgstr "組み込み関数" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "変数" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "%s (%s のプロパティ)" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "プロパティ" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s のオブジェクト記述、 %s の他の​​インスタンスを複製し、そのうちの1つに :noindex: を使用します" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (非推奨)" @@ -2627,6 +2620,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最も遅い読み取り時間 =======================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz ディレクティブはコンテンツとファイル名の両方の引数を持つことは出来ません" @@ -2847,7 +2846,7 @@ msgstr "auto%s (%r) の署名が無効です" msgid "error while formatting arguments for %s: %s" msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "オブジェクト %s に属性 %s がありません" @@ -2899,44 +2898,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3552,12 +3551,12 @@ msgid "" "it directly: %s" msgstr "日付形式が無効です。直接出力したい場合は、文字列を一重引用符で囲みます: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree に存在しないファイルへの参照が含まれています %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only ディレクティブの条件式の評価中に例外が発生しました: %s" @@ -3614,27 +3613,27 @@ msgstr ":maxdepth: が大きすぎるので無視されます。" msgid "document title is not a single Text node" msgstr "ドキュメントのタイトルは、単一の Text ノードではありません" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "セクション、トピック、表、訓戒またはサイドバーにないタイトルノードが見つかりました。" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "注記" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns と :widths: オプションの両方が設定されています。:widths: は無視されます。" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "ディメンション単位 %s が無効です。無視されます。" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "不明なインデックスエントリタイプ %s が見つかりました" @@ -3648,16 +3647,16 @@ msgstr "[画像: %s]" msgid "[image]" msgstr "[画像]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "キャプションは図の中にはありません。" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "未実装のノードタイプ: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "不明なノードタイプ: %r" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index d3f7c4027aedf3a61a124d0e41c71e373f2a0518..d8e1db1b729e14227807d1b737915f54fa6d415c 100644 GIT binary patch delta 11124 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\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"Last-Translator: Komiya Takeshi \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,130 +20,123 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "원본 디렉토리를 찾을 수 없습니다 (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "출력 디렉토리 %s은(는) 디렉토리가 아닙니다." -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "원본 디렉토리와 대상 디렉토리는 같을 수 없습니다" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx 버전 %s 실행 중" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "보안상의 이유로 macOS의 Python 3.8 버전 이상에서는 병렬 모드가 비활성화되어 있습니다. 자세한 내용은 https://github.com/sphinx-doc/sphinx/issues/6803 을 참조하십시오" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "이 프로젝트는 최소 Sphinx 버전 %s이(가) 필요하므로 현재 버전으로 빌드할 수 없습니다." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "출력 디렉토리 만드는 중" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "확장 기능 %s 설정 중:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python 객체가 아닙니다. 호출 가능한 함수가 되도록 정의를 수정하십시오.\n이것은 conf.py가 Sphinx 확장 기능으로 동작하는 데 필요합니다." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "완료" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "기본 제공 메시지를 사용할 수 없습니다" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "pickle로 저장된 환경을 불러오는 중" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "실패: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "성공" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "빌드 %s, 경고가 %s 개 발생했습니다 (경고를 오류로 처리)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "빌드 %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "%r 노드 클래스가 이미 등록되어 있으며, 방문자를 무시합니다" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" @@ -795,12 +788,12 @@ msgstr "위의 출력 또는 %(outdir)s/output.txt 파일에서 오류를 확인 msgid "broken link: %s (%s)" msgstr "끊어진 링크: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "앵커 '%s'을(를) 찾을 수 없습니다" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects에서 정규식을 컴파일하지 못했습니다: %r %s" @@ -918,7 +911,7 @@ msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" @@ -1102,7 +1095,7 @@ msgstr "\"latex_documents\" 설정값이 알 수 없는 문서 %s을(를) 참조 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "색인" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "매개변수" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "반환값" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "반환" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "반환 형식" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "변수" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "함수" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "예외" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "클래스" @@ -2001,7 +1994,7 @@ msgstr "템플릿 매개변수" msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" @@ -2016,7 +2009,7 @@ msgstr "%s() (클래스)" msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" @@ -2030,20 +2023,20 @@ msgstr "인수" msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "메서드" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "속성" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "모듈" @@ -2057,7 +2050,7 @@ msgstr "중복된 %s 설명 (%s에 대한), 다른 항목은 %s (%s)에 있음" msgid "duplicate label of equation %s, other instance in %s" msgstr "중복 레이블의 수식 %s, 다른 인스턴스는 %s에 있음" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "잘못된 math_eqref_format: %r" @@ -2074,7 +2067,7 @@ msgstr "연산자" msgid "object" msgstr "객체" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "예외" @@ -2086,92 +2079,92 @@ msgstr "문" msgid "built-in function" msgstr "내장 함수" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "변수" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "예외 발생" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "%s (%s의 특성)" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "폐지됨" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "특성" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s의 중복 객체 설명, 다른 인스턴스는 %s에 있으며, 이 중 하나에 :noindex:를 사용하십시오" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (폐지됨)" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== 가장 느린 읽기 시간 =======================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "하드코딩 된 링크 %r은(는) extlink로 대체할 수 있습니다 (대신 %r을(를) 사용해 보십시오)" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz 지시문에 내용과 파일 이름 인수를 모두 지정할 수 없습니다" @@ -2833,7 +2832,7 @@ msgstr "auto%s (%r)에 대한 잘못된 서명" msgid "error while formatting arguments for %s: %s" msgstr "%s에 대한 인수를 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "%s 속성이 %s 객체에 없음" @@ -2885,44 +2884,44 @@ msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" -#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "%s의 별칭" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)의 별칭" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "잘못된 날짜 형식입니다. 바로 출력하려면 작은 따옴표로 문자열을 인용하십시오: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree에 존재하지 않는 파일 %r에 대한 참조가 있음" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" @@ -3600,27 +3599,27 @@ msgstr ":maxdepth:가 너무 크며, 무시합니다." msgid "document title is not a single Text node" msgstr "문서 제목이 단일 텍스트 노드가 아님" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 노드가 발견됨" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "각주" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns와 :widths: 옵션이 모두 설정되었습니다. :widths:는 무시됩니다." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨" @@ -3634,16 +3633,16 @@ msgstr "[그림: %s]" msgid "[image]" msgstr "[그림]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "캡션이 그림 안에 있지 않습니다." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "구현되지 않은 노드 유형: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "알 수 없는 노드 유형: %r" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 25a2dbde9d2c2f32f1fc19cabcdbbc6a326d96aa..adfb5126ff0ff0d69b88b24d3011e1f2c7a1eea9 100644 GIT binary patch delta 26 ecmexk{>Oa7J^>aZT|=YEhXho>jLokEgt!5T?g+#H delta 26 ecmexk{>Oa7J^>a(T_cOhhXho>jLokEgt!5UXb8{% diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 8b2c62eb78a..851b5e81890 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%Y-%m-%d" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indeksas" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrai" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Grąžinamos reikšmės" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "kintamasis" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "Išmeta" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klasė" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" @@ -2015,7 +2008,7 @@ msgstr "%s() (klasė)" msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" @@ -2029,20 +2022,20 @@ msgstr "Argumentais" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribudas" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modulis" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "operatorius" msgid "object" msgstr "objektas" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "išimtis" @@ -2085,92 +2078,92 @@ msgstr "sakinis" msgid "built-in function" msgstr "įtaisytoji funkcija" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Kintamieji" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (atmestas)" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Išnašos" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "[paveiksliukas]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 9866a366e51f5548d0fec52aa68a0baa51c942d1..dc9b180a2f8b4e260fdc847b84f814ba96ebff61 100644 GIT binary patch delta 26 ecmca;9uA$N7JOLFjWAiitXD$GCp$D!2 delta 26 ecmca;Pu93y$JOLFjWAiitXD$GD8wa`o diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 046894cbd80..ce18dfb1b95 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indekss" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Atgriež" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Atgriežamais tips" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "mainīgais" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "Izmet" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klase" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" @@ -2028,20 +2021,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atributs" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modulis" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "operators" msgid "object" msgstr "objekts" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "izņēmums" @@ -2084,92 +2077,92 @@ msgstr "priekšraksts" msgid "built-in function" msgstr "iebūvēta funkcija" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Mainīgie" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Vēres" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "[attēls: %s]" msgid "[image]" msgstr "[attēls]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index f92abe1df4a779cf33590aeabe98d1ab5799c84f..7d1e6d23a6c5ff3b2c684223823862388cfab584 100644 GIT binary patch delta 32 ocmX@hf0lp4b!HYLT|=YEx0zMAjC2i56$}il42?E(vK(Os0I0YL5C8xG delta 32 lcmX@hf0lp4b!HYrT_cOhx0zMAKnw)~11m$r&73Spm;tF>2^jzY diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index d57f6abc42d..6d06c8cc5d3 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Враќа" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Повратен тип" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "променлива" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функција" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "Фрла" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "класа" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -2015,7 +2008,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2085,92 +2078,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 52cca3438008220edeeb99aa727c5629a91680c8..0f6d3a8fb561ed3aa68d58ca387f4b8973b8097c 100644 GIT binary patch delta 32 ncmX?TdeC%(s341xuA$LnNkJ7ZBV7Yi1p@;sL!-^^f>oRVj@1X_ delta 32 lcmX?TdeC%(s341>u93xLNkJ7Z5JSPhz{=2Yv%6pwCjgIn2kZa< diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index eb0ed002964..befed8a9674 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Index" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametere" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returnere" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Retur type" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funksjon" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "Kaster" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klasse" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" @@ -2014,7 +2007,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2028,20 +2021,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attributt" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "untak" @@ -2084,92 +2077,92 @@ msgstr "uttrykk" msgid "built-in function" msgstr "innebygde funksjoner" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (foreldet)" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "[bilde]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 2204f4f54c145a817b8d8bf11b65dc13d0288c6e..61fc467f56bdb0619a019f5167918b913211cf29 100644 GIT binary patch delta 32 ocmbQ~Hq&jx5djt>T|=YECj?ZujC2i56$}il42?E_6Hpcc0IGWlaR2}S delta 32 lcmbQ~Hq&jx5djuMT_cOhCj?ZuKnw)~11m$r&EEu+g#fD{33>nk diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index ad8c14220fc..10432fdd226 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "अनुसुची" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Return type" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "चल" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "फन्क्सन" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "कक्षा" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" @@ -2016,7 +2009,7 @@ msgstr "%s() (कक्षा)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -2030,20 +2023,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attribute" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "मडुल" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "सन्चालक" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "अपबाद" @@ -2086,92 +2079,92 @@ msgstr "भनाई" msgid "built-in function" msgstr "built-in फन्क्सन" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "चलहरू" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "(deprecated)" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2833,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2885,44 +2884,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3600,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "फूट्नोट्स" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3634,16 +3633,16 @@ msgstr "" msgid "[image]" msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 85bf5a8c9ad805f0275beaf10129950d16e79b75..f75aba64a9925410b5b7bf484c5b37c160ef1911 100644 GIT binary patch delta 26 icmdlzlX3S<#trT|Oom32J#|!AjC2i+HW%u6DF6U?5eMG@ delta 26 icmdlzlX3S<#trT|Oa`WtJ#|!A40VkxHW%u6DF6U?PzUD# diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 510a12f4ab8..9e4c4663ffd 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+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" @@ -25,130 +25,123 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kan bronmap niet vinden (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Bron- en doelmap kunnen niet identiek zijn" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s start op" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Dit project vereist tenminste Sphinx v%s, en kan daarom niet worden gebouwd met deze versie." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "aanmaken doelmap" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callable). Pas a.u.b. de definitie aan zodat het een oproepbare functie wordt. Dit is nodig voor conf.py om zich als een Sphinx extensie te gedragen." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "klaar" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -156,12 +149,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -169,12 +162,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" @@ -800,12 +793,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -923,7 +916,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1107,7 +1100,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Index" @@ -1884,7 +1877,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" @@ -1893,12 +1886,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Return type" @@ -1911,7 +1904,7 @@ msgid "variable" msgstr "variabele" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "functie" @@ -1989,7 +1982,7 @@ msgid "Throws" msgstr "Werpt" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klasse" @@ -2006,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" @@ -2021,7 +2014,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" @@ -2035,20 +2028,20 @@ msgstr "Argumenten" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "module" @@ -2062,7 +2055,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicaatlabel van formule %s, andere in %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2079,7 +2072,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "exceptie" @@ -2091,92 +2084,92 @@ msgstr "statement" msgid "built-in function" msgstr "ingebouwde functie" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variabelen" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (verouderd)" @@ -2844,7 +2837,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2896,44 +2889,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3549,12 +3542,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3611,27 +3604,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Voetnoten" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3645,16 +3638,16 @@ msgstr "[afbeelding: %s]" msgid "[image]" msgstr "[afbeelding]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "onderschrift niet binnen figuur." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index a6967fdfa67d79a966ea26e47fcb24dfa88b3a87..275ae8e6bcf99263bd2e111c95b67d5176dc3486 100644 GIT binary patch delta 28 gcmaF)lJVtB#trgLEJnJ9Mw6ADRKSeQ-cIw30G+%EZ~y=R delta 28 gcmaF)lJVtB#trgLEQY#97L%2oRKSeQ-cIw30G>7pd;kCd diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 3058b7879f2..92cab54b20c 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" @@ -22,130 +22,123 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nie odnaleziono katalogu źródłowego (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Katalog źródłowy i katalog docelowy nie mogą być identyczne" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Uruchamianie Sphinksa v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ten projekt potrzebuje Sphinksa w wersji co najmniej %s, dlatego nie może zostać zbudowany z tą wersją." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "tworzenie katalogu wyjścia" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "podczas ustawiania rozszerzenia %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego definicję tak, aby była wywoływalną funkcją. Jest to potrzebne w conf.py, aby zachowywało się jak rozszerzenie Sphinksa." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "gotowe" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "ładowanie zapakowanego środowiska" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "udało się" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "zakończono z problemami" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +146,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,12 +159,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" @@ -797,12 +790,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "zepsuty odnośnik: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Nie znaleziono kotwicy '%s'" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -920,7 +913,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" @@ -1104,7 +1097,7 @@ msgstr "wartość konfiguracyjna \"latex_documents\" odwołuje się do nieznaneg #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indeks" @@ -1881,7 +1874,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" @@ -1890,12 +1883,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Zwraca" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Typ zwracany" @@ -1908,7 +1901,7 @@ msgid "variable" msgstr "zmienna" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcja" @@ -1986,7 +1979,7 @@ msgid "Throws" msgstr "Wyrzuca" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klasa" @@ -2003,7 +1996,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -2018,7 +2011,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -2032,20 +2025,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atrybut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "moduł" @@ -2059,7 +2052,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" @@ -2076,7 +2069,7 @@ msgstr "operator" msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "wyjątek" @@ -2088,92 +2081,92 @@ msgstr "instrukcja" msgid "built-in function" msgstr "funkcja wbudowana" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (niezalecane)" @@ -2615,6 +2608,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "dyrektywa Graphviz nie może mieć jednocześnie argumentów content i filename" @@ -2835,7 +2834,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "brakujący atrybut %s w obiekcie %s" @@ -2887,44 +2886,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3540,12 +3539,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3602,27 +3601,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Przypisy" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "%s" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3636,16 +3635,16 @@ msgstr "[obraz: %s]" msgid "[image]" msgstr "[obraz]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index abbba2a2eb2f027d127349ce7da49fbab8fb397a..18f76b241bbdab7cefb9ef78733f6e29effea192 100644 GIT binary patch delta 23 bcmeyy{Ec}+8;g;yq0z)H6)?SVlM5pNV$278 delta 23 bcmeyy{Ec}+8;hZ?k;TL=6)?SVlM5pNV>Abd diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 380d463e5f1..1dbd3395f89 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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 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" @@ -18,130 +18,123 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 0454f8a3ce047ead57795ae2257fe9fb6bd12435..69c8bb9b454b4d8e0cfdca2f6addc6e2dabadf1d 100644 GIT binary patch delta 12314 zcmYk?d3?=R{>Sm}B_WGMWRFC06I&J}vPwejVyS&;#hOI4u|%3syGv`Lv}mcNw6)YW zwo&`m4%Mkrt)&z*R9jU=88yWe)p@<|`92=M-~2Jp^Z9n~z9d5%Q+>N#HI0oP))cbCuFFwQ|`nRfPTUIC+!cY%3L4RzCPV9zy(HPVR zXP{m**S^05dlTsNC@^B!!M}~pK z2a)BrPNF)to-s=mg-ZyFu@L`2#$XL){j?T8il&Q3FC2>?Y9_BT%A1gZmR+6bHh=^HwI&IDzePh3RLY}KxO7BYJk<+ zxGakTwxZgYk@ZBqpd7VU)3G+bg)z7p)zJymz|LVeyn^bWNn2wdtV28rSw(9pX5rVU zn(%FBiagFmqZb$2ql#=PR>O_xgCC+&f6(>9zR_|cez6tWE zm5v>8B6h(~FdSX}EWA?E5H+)8WD8r(P{mk^TAEi-1AGgW(hrcbur8sBt2S>}N6#Y3 zu--z|&RJ}Xo}Jjbn1(9WA=ps+e<6)HE*!9Ld~3&nolWX8urBw@usXhtvG}fi|6|nB z{EkkHV0zw|gGzlnT!}7J>YdM;CC)!6PEP;pQ6#ObKws^a31^P4OAxD_B3l>jH$%q&<8i5CbR>Up@&$CVH6H!VpXE628|OmR6G~a7jK}h z-$$)omELCirJ!EiA8X+-JAT=|KLb@%8!-TnpfYzB^YJ1oL+O3YQs(qw{Tp$i4HrU5 z?HCLuuIy`GupG4=H)A~RM=!jJA@~bwKvnvgwe`a&;(DlU+uC*@>R=mhJ0C-d*Y_j; z5i~yLLIb>js@^}b1lv4kQo0$bOX~`zW5V+$rGss!p*ncqb~jEW{tAPzBkSdl15pDX ziOSFn7Y(I)0cr_WU?Bd@jz2+F{~4@@4^S_RB%k_RGFHRpsLZrQz4%#FW(J{l&5Nj| zEkk8=ihbQRhlYw{0jlHes2BbNwG<~%AN(FQgWJgWhxG(?FlAGz+68@)9cB$db-W2R zklm<(9Yv-56ei(yUi!V~{Djtg(HKo*7S2VoVucJdGk*znE-bR+ zk5EPUy?s52-eQS+qmJTnn1wq~OL7aB;eF&I)|mw{{4qn6hSVp1f1&c8fkDxwx1%2@+td95W_>mn~8)a(5AGIW5_&N?B zMgCjr16K8LCxSAX5#~_jVYyO=3TG`abM&JunJL2 zZ~z;jbByVytBVHpU`@viyowaO6+z`W@n!6aOE4a8`#%H#_qd#$@3Fget#Zclh)PQH% z@fvJPd;qmHf1=)#H_>Eh66*Q4QJMM>!|^0W)4%mI4b7{*F!Y8&n5gQ%y0Zp%-x{?18;d1N{IsfU{G{zl!WJ7gQ{M)67g8 zqh{6*qj0$GtEh8eB^KjnxC$GQ#&rA&m4T|$&F8(aKXEwbVmUU!tr(4$r}F`=#S<# zQK|1W*Zk9LCDtSU4|-zwJW~_VsLZ5d3jJF%Xe8iv48coS2k)U~7BJt8xG`$&2cZT! z9+mRN*Z{YnCUO>&@B!+*ac`P!`>gFG)bktARh`C38tw5s*1$S%nSGpyS;T!Y4(Fm$ zxeb+}i>QI#w+&igt~W(J-xW3UGE|Mdj9TJ(wnr9_e^vW`xu6mGEj0Ty9jg(S*^WoO za2jfct59oy#J*qSZS#vM2sNQBY=b;$?DfYrF?f;oH zBDru7m68h>h*vQLAD{+S<6RRwu_kdQ>bVZ6+UbvBI31OdrI?QIp(c0+HIeJ6+VXpk zZ$$0?U>Xrzn1H&m0DbWtY=~rY$GrV%TWWGj~dWwOvGb${2M+; z9J#{$L#G0>=-=8-qYK_dZ_He2Qr!wQpl+z^eNibNf_m{An1Xw-4*raqVYO9eAdQf6 zvRc}nN2PwuYU3(&DaBvY7>GA85<7fgW?qPT;T+U~vJD60B}~QKHD-I2qT)3ejptDr zeSjVqu+}^mf?CQhs0IP-#lxs=bOAN9gbn6M?TFdL<(P|` z?dv~db>hIkn)lSk2E>g~+pdr8Xw<+fT{JY()u%fmBKry0eNjS)g5V@hL;?q z5*K3pX7eZfgIoCZL%eAlKilwcAM#gFKL4NXd|%*8J4|ukKxNi-pGGo`$4IuVq@8As zPvi5%DZ5N@&c;E+=P(Y_cAHf8L!AplP&G0d>)|`t5I@F5{0Y@ztvzNthGBsAevPb&s6DE9Mq(dafEv(s)QtbcXE5+1Gqax9nYavDZtDP6VCl!^ z!1@8TGT^Re8)u`o z=Mn6QH&D;z9yZ0^4waGo!{omQjfGrjfj^=;i2KBhFcEW!Tcbuk6*cqKs7&lat?8H8 z5Pv}pJotzicnszfC!mUartMBlB>wS;%lt#4=BMVj+c*s8#u3ySU&6uY^A9uf60An- zLd~cWBXK?^;3n*c=TIFt`iw1yvrt9+JL(7zIBHJD7A_hcxX=cB<817Nmr);R__@i* zGpG(b;4|1Ab$=cz6KheK`3T$LDO5&7j+r9ujopanpfY|Dv(S}z+?>sYn9hZzsFZ(+ ziRk@>iPJHaxC|TM2bhP)u@wfMFazz4b%_U{-s8dqJb-%NH4MOjFWnPyS+O+MaA7FM zq32g-yTxN|;!Lc9J+UkH!Ax9@QFswO@BwymaFAgNar;xI7G6f}t{GSz527;mDb~^c zzeGbz@CbF_v_8!Mcu`+TTy(}1&r7JIdKDJn9*n_=ug#ZFHflfva57Fn&Gf;5RgHN$H&OT?>^s?<;+p6D~gDMo2+IVb_y-+V+ih;NW18@(f z;pf;8pV-&yoo9KJx(phs)*ST2Md*dgu_dm-1Tyj?1{3>VG#%8%AmU7Hik-0rPC+Nm zMh$2q#^P>tPZU)nPcM>x-H7|A`9M3{VpM7?Q4g-eOgxTSD#yRfUralqs{9o8ME^@> zt%ss&X*t%$k5L1?XnPwgi5-{8zt;4%%O+LtV-)evR?YKK?fc;Su8I8|Vf7Yv}VO>I1XU30a0D~}{cp<82 zKF3tNgM%>kn)zkp!n(wNU;|zM$-Ji{YIl^OKEDj7;32HQ7T5KcR~LVeqwyjaf`2BR zI29A|6zau~aS_JcFe%)Hnt9+&bI?44O^C-}H+&x(;ce7}YTq({F=>O%iD#lRdl(PU zzx5T3kvQiU^GD(bIGuRFZL`*w(1Z9YdgIR+iTAJ-`rk3Tr8{b-V=xI9q3$2XHdy7~ z=5NjI(T8{gx;$y@pivF?VKyE@71txwS_R%U_v4YX!%D_NtoAFj#S(0QUiVDqk};Y% zA2rj7=#Q1Cju+Y2SKcH4UR>D1g_^hADl;IiFLDTkuIans)5aPYq8p9u&-vjv= zOS}(<;=iydHvg~r308`sx{n(8Db%^(_q&PXQA=3tqM?z@zzke~lkjuQ#kP;kHgci1 z*Baa1sLy?l%G^cN^EWUZ>pwO{n2)K%voHnsqiW-peccuI#8iD}oWPCuFdIYvFfZzX zam0VY2;6}2_z9}0ZlP+Y$x}1H42&esLoIC)cEVBkEbhjhSoKeLvAe9kG<0D<_P`pJ z!(Cj1usiV~EWiMV!~HE+jva~jVi-EAINX1JkH9*_gHTH|8Kdw$9EkgID27#axW5f2 zpi}#QGY#$YFR>o}iuz!vhaTXo6T`6&2IFX~jjy1)1Ju&(N6qvu24aqC87LG-&`DWBU|H$?#szdMU4)@YUp)%7C zb-fgy!5Nru|aMby}ATExEA@lkt1h3~SXeFU~?OO@Guj zn}#aVZP)~FVkSoLyG)EIyy8tzSkvIg`;AHf0)iN)fjw-IjsO_`~ zqj5W`Hcq2XvfHQ^rUsgUH^E<+XFG1LtHi5h57h{OHUD;~9U!%@$zL+ye+whsP(9m+@-)XYbtYUE37 zrSJdWX=u%I!rT|E7ciH21FC9+wc?r?v}bVF^|ai|QvgUY~O)Gm318fa>S!~Hv9 zBo+}LL!B>;YdhTko6s~&*Z#jiqdGVIBF$2SUI2tM zMHm`uigW-fbA_n;BQO@1V;B4gb>BPA96Ys92U;#_DcZ%c|JBhVE~pw$VG!1>YaYx( zonWm{ndyx~aV{3(9owGu%m8+xs{R_PX1wY<+)I&$I@tQy@oT6W`D=ZbS&JXIpb-Z* zaJc{7KNR(KI}f#XD^W8%h6(rxwN2|aGy_e-0OEAiK-;5I??Po@1-8NUsHM7zny|ks z-n_T~)zJdf0|!tC(iK!uwNEf>Uw}&CcvNPlqjt|i^v6S}44y=th*weDxptx{;zU%( z{ZZFln`!6=!$I`LUs1*N2X?@gNv3KmQ6Jchs)>WBBlH|<=C@H9dukid$ebr}sEK8x zc26OC;#8zxe*e?Z3-_XCej1h9`>5UV1eJj)jZG?-q6V@OlW`lWn7%`OzG)M4!u3UE zYAvcLx1#zvg$?iqCaQ;kWHZBD?8A)$Y>T_my}dA>I4i{rU;%2T%TNQ|j5Tlvs>lvu zD*lFAf`(1azy{mCf;vIh;rp850W~l`)qLQ0+mtl3mM@?NFd4P4zd?Nq-bZDiVY>MN z@*EB#o@>XqP$yz+hWX{xAC;jMsHHf9?tlM(Yd>%mbx&p+5H+X5g==-P5p{`Q_BJ8T(&f2Blokm(McPnth1+zTb~J z8Lyx>MrNC;ua6pNGkhLMY9B*_%SL2S5QZ?qq*7dVYXS#cie2UH9xPQd|1(#Va3Coqe@CgI_sA^ zi^hx_HOyI9>?|)X8&y!mox+LEf>LMkgt6{N;>VUxbdIYiDSbgtmy}kFEiM?Auw(J; zT~3eG#wi&KyKk)LqlPmjJtw2tj;R}yMt16MUQbUY!%K<^hKq8uV4gLpwXDH|Z delta 12152 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\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -1883,7 +1883,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" @@ -1892,12 +1892,12 @@ msgid "Return values" msgstr "Valores de retorno" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "Tipo de retorno" @@ -1910,7 +1910,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "função" @@ -1988,7 +1988,7 @@ msgid "Throws" msgstr "Lança" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "classe" @@ -2005,7 +2005,7 @@ msgstr "parâmetro de modelo" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -2020,7 +2020,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2034,20 +2034,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "módulo" @@ -2078,7 +2078,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "exceção" @@ -2090,92 +2090,92 @@ msgstr "comando" msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "propriedade" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noindex: para um deles" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "mais de um alvo localizado para referência cruzada %r: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2617,6 +2617,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "=================== durações de leitura mais lentas ====================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "O link codificado %r pode ser substituído por um extlink (tente usar %r)" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "A diretiva de Graphviz não pode ter conteúdo e argumento de nome de arquivo" @@ -2890,7 +2896,7 @@ msgid "" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" @@ -2916,17 +2922,17 @@ msgstr "apelido de %s" msgid "alias of TypeVar(%s)" msgstr "apelido de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index ded606236950b99e131040d16e44f50c433d009a..1c480e1a03f53b3808375bd4c934de1859e3b196 100644 GIT binary patch delta 32 ncmbQ^Fvnp-tT2m_uA$N7L}3*!BV7Yi1p@;sL!-_8!o55ImkJ1@ delta 32 lcmbQ^Fvnp-tT2nAu93y$L}3*!5JSPhz{=2YbH8ve4*-|12&@1A diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index f1a7d609798..e1a461f945c 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Índice" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Retorno" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo de retorno" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "função" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "Gera" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -2016,7 +2009,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2030,20 +2023,20 @@ msgstr "Parâmetros" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "módulo" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "operador" msgid "object" msgstr "objecto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "excepção" @@ -2086,92 +2079,92 @@ msgstr "comando" msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2833,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2885,44 +2884,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3600,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3634,16 +3633,16 @@ msgstr "[imagem: %s]" msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 3ffb299f7fd2c4a724b1e18ccff8ea5f349251ca..3918e869bfd7791a73cbe43b8524e9722cd5fd19 100644 GIT binary patch delta 32 ncmX@)cF1jmohXZuuA$LnCs7qHBV7Yi1p@;sL!-?FqL+99oPh}H delta 32 lcmX@)cF1jmohXZ;u93xLCs7qH5JSPhz{=2YbAjk3UI3jY2=f2{ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index e2f630ec19c..ee35fc89609 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Proiectul necesită minim Sphinx v%s și de aceea nu poate fi construit cu această versiune." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Index" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrii" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Întoarce" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipul întors" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "variabilă" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funcție" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "Generează" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "clasă" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -2016,7 +2009,7 @@ msgstr "%s() (clasă)" msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2030,20 +2023,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "operator" msgid "object" msgstr "obiect" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "excepție" @@ -2086,92 +2079,92 @@ msgstr "declarație" msgid "built-in function" msgstr "funcție integrată" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variabile" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Generează" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "(învechit)" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2833,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2885,44 +2884,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3600,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Note de subsol" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3634,16 +3633,16 @@ msgstr "[figura: %s]" msgid "[image]" msgstr "[figură]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index f9b317c347c25e37071020caf26e31c5a718c001..fcafe3543787f08d4549d31efc601d608470e84e 100644 GIT binary patch delta 34 pcmX@s#CWWUaf7)$i;=FO(PV3R6)q!P15*V911m$L&6)Cd6#=k936uZ; delta 34 ncmX@s#CWWUaf7)$i=nQO#bj%F6)q4%!N9=E&~S66{9Q!=u;&S# diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 59e28ac074e..eea61065d30 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" @@ -24,130 +24,123 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Проект требует версию Sphinx не ниже v%s и не может быть построен текущей версией." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "готово" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "с ошибками" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,12 +161,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -799,12 +792,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -922,7 +915,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1106,7 +1099,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Алфавитный указатель" @@ -1883,7 +1876,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметры" @@ -1892,12 +1885,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Результат" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Тип результата" @@ -1910,7 +1903,7 @@ msgid "variable" msgstr "переменная" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функция" @@ -1988,7 +1981,7 @@ msgid "Throws" msgstr "Бросает исключение" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "класс" @@ -2005,7 +1998,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" @@ -2020,7 +2013,7 @@ msgstr "%s() (класс)" msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -2034,20 +2027,20 @@ msgstr "Аргументы" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "модуль" @@ -2061,7 +2054,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "повторяющаяся метка уравнения %s, также используется в %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2078,7 +2071,7 @@ msgstr "оператор" msgid "object" msgstr "объект" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "исключение" @@ -2090,92 +2083,92 @@ msgstr "команда" msgid "built-in function" msgstr "базовая функция" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Переменные" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "(использование не рекомендуется)" @@ -2617,6 +2610,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2837,7 +2836,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2889,44 +2888,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3542,12 +3541,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3604,27 +3603,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Сноски" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3638,16 +3637,16 @@ msgstr "[рисунок: %s]" msgid "[image]" msgstr "[рисунок]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 02b10db6ba7374b3b4159396ca9fed9277e0ce15..e692d83ffb22f240743312157d771865a48d9a8f 100644 GIT binary patch delta 26 ecmeB|>6h8CmyN|p*U)J4K{gdIWAjTkHFf}QGzX&q delta 26 ecmeB|>6h8CmyN|x*T`b>K{gdIWAjTkHFf}Qt_QCG diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 40747e68b97..9380c6206b9 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "පරාමිතීන්" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "විචල්‍යය" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "ක්‍රියාව" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2008,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "object" msgstr "වස්තුව" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2085,92 +2078,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "විචල්‍ය" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "[image: %s]" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index cb9071d7fb1550e05a875352087afc5fe678b05e..52ceca38ad33fa3fc7fe0f5120daa4980a8bd9be 100644 GIT binary patch delta 34 qcmX>yi{;2HmJL6quo&qY8cqH)MTN^q*T7W4z`)ATXtUN-sR{t>U<>^K delta 34 ocmX>yi{;2HmJL6quo&tZSxo*jMTHB*P%tpCGBn(*HC3tt0PO_~1^@s6 diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index f19fd8969ff..62e7d7ff38d 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" @@ -21,130 +21,123 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nemožno nájsť zdrojový priečinok (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Výstupný adresár (%s) nie je adresár" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Zdrojový a cieľový priečinok nemôžu byť rovnaké" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Spúšťanie Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Tento projekt vyžaduje aspoň Sphinx v%s a preto s touto verziou nemôže byť zostavený." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "vytváranie výstupnej zložky" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "pri nastavovaní rozšírenia %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho definíciu tak, aby to bola funkcia. Je to potrebné, aby sa conf.py mohol správať ako rozšírenie Sphinx." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "hotovo" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "nedostupné pre zabudované správy" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "načítanie uloženého prostredia " -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "zostavenie %s, %s upozornenia/a (upozornenia považované za chyby)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "zostavenie %s, %s upozornenie/a." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "trieda uzla %r už je registrovaná, jej metódy (visitors) budú prepísané" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktíva %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -152,12 +145,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -165,12 +158,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" @@ -796,12 +789,12 @@ msgstr "Hľadajte akékoľvek chyby v predošlom výstupe alebo v %(outdir)s/out msgid "broken link: %s (%s)" msgstr "poškodený odkaz: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Kotva „%s” nenájdená" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -919,7 +912,7 @@ msgstr "Čítanie súboru zostavenia info zlyhalo: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" @@ -1103,7 +1096,7 @@ msgstr "konfiguračná voľba „latex_documents” odkazuje na neznámy dokumen #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Index" @@ -1880,7 +1873,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" @@ -1889,12 +1882,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vracia" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Návratový typ" @@ -1907,7 +1900,7 @@ msgid "variable" msgstr "premenná" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcia" @@ -1985,7 +1978,7 @@ msgid "Throws" msgstr "Vyvoláva" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "trieda" @@ -2002,7 +1995,7 @@ msgstr "parameter šablóny" msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" @@ -2017,7 +2010,7 @@ msgstr "%s() (trieda)" msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" @@ -2031,20 +2024,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribút" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2058,7 +2051,7 @@ msgstr "duplicitný %s popis %s, ďalší výskyt%s v %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "neplatný math_eqref_format: %r" @@ -2075,7 +2068,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "výnimka" @@ -2087,92 +2080,92 @@ msgstr "príkaz" msgid "built-in function" msgstr "zabudovaná funkcia" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Premenné" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "%s (vlastnosť %s)" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "vlastnosť" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "duplicitný popis objektu %s, ďalší výskyt v %s, použite :noindex: pre jeden z nich" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "nájdený viac ako jeden cieľ krížového odkazu %r: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (zastarané)" @@ -2614,6 +2607,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Direktíva graphviz nemôže mať naraz argumenty content a filename" @@ -2834,7 +2833,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "chyba formátovania argumentov %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "chýba atribút %s objektu %s" @@ -2886,44 +2885,44 @@ msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "alias pre %s" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias pre TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3539,12 +3538,12 @@ msgid "" "it directly: %s" msgstr "Neplatný formát dátumu. Použije jednoduché úvodzovky, ak ho chcete priamo vo výstupe: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "strom obsahu obsahuje neexistujúci súbor %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3601,27 +3600,27 @@ msgstr "príliš veľké :maxdepth:, ignorované." msgid "document title is not a single Text node" msgstr "názov dokumentu nie je jeden uzol Text" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Poznámky pod čiarou" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "sú zadané obe, tabularcolumns aj voľba :widths:. :widths: je ignorované." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3635,16 +3634,16 @@ msgstr "[obrázok: %s]" msgid "[image]" msgstr "[obrázok]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "titulok nie je vo vnútri figure." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "neimplementovaný typ uzla: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "neznámy typ uzla: %r" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 088a8e99a108b19c6aa4ffb4f89fcb1a1f6dc64e..4410363e2a32259fd7bcd9cda313d7392691955c 100644 GIT binary patch delta 32 ncmeyM^+9WcDKCqWuA$LnOI{T&BV7Yi1p@;sL!-^ delta 32 lcmeyM^+9WcDKCqmu93xLOI{T&5JSPhz{=2Yb2=|42LPPu2o?YU diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 8ef04b109a7..269a73e9537 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Abecedni seznam" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vrne" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Vrne tip" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "razred" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -2014,7 +2007,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "izjema" @@ -2084,92 +2077,92 @@ msgstr "izjava" msgid "built-in function" msgstr "vgrajene funkcije" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (zastarelo)" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Opombe" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index c69502f41d4..677dbece380 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-12-05 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -17,130 +17,123 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.9.1\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 " -"and above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with" " this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +141,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +154,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -799,12 +792,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -922,7 +915,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1106,7 +1099,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1895,7 +1888,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1904,12 +1897,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1922,7 +1915,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -2000,7 +1993,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -2017,7 +2010,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2032,7 +2025,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2046,20 +2039,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2090,7 +2083,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2102,92 +2095,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: " "for one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2854,7 +2847,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2906,44 +2899,44 @@ msgstr "" 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." @@ -3561,12 +3554,12 @@ msgid "" "output it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3623,25 +3616,25 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3655,16 +3648,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 536cc1ac1978f1b343e9cecb5d839cb4d3945935..a849efc5007f8b5feef3f0a585a7dce255146304 100644 GIT binary patch delta 11661 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 delta 11975 zcmYk?30T!t{>Sm(RS^(DK|ooAi{b{d2`Zq5Ywo#WnTZKTcu^G z<(M|=m}TZtYBkoFOPe~HOPN|)sU?lg`@{J?&;Re!)9ajbfA=ik^F8NY&`nqBymYmW zeJ-fZ3X4Dgs%2S`I5SkW|NC>Mtz|86S=L!x#xwbemUV-de@nKkUbKIgVp-+XTc=u9 z5w1ml^hvWUFAT*vjKrnb8@u3X>}XlG72Mvk`p_@{vv37A!&B&szoQS<>R?$d&<{1y z6pY4)Fa}Fd13rt5@C6LSH?bk^MfG4Kw$n;R4U~)8 zl3BPC4`UvV?rd2hcmOrQFP(Y-8|tPWi;7Gy$3dt_K8o7H0(<}`I+p@jZ?F1 zGr%euH1k(b9dB_wj!miGMYh!n>1y_LASy}oaVRcC<;XW!7q4SI{1p|^`;Ot=NLcC} zQ16>>Qy4?xD{O!n-7Tvn_C@Vs8TQ1<*azRk{#d7nNut512o$0sH4!;5)^t=(ZAWdv zho}jjK+?&&j0D@Vqv%~pG72@&QvSyn)(KQjg!Zzm1niCRI0=<>uV5=Yh0XB4PP_X- zQ_n{7%$kDD@gJy(p2iqFXI{5!QZkx`PQA^ZJ%-wfnWzpH;CeiOI$n8%L3=t4wZes1 z3)doxvR+1AINv$1`}ZYU)MGH!MRYNd`pAA7hw&FtP(u}Z;Xza~9d$g1ip+1Q0W*mI zk2nzPWBLFSiC(DJi}5jh5|uk=9jj4W5H^q#f$w;vtR{ zK8^M9->B!$q95LH+W)`=>U9U1)0BqwsOO*tE^zA8o!951-Gmq3qM+k(1Qn{Ua3r2Z zMI?Q&*}Dg@E%gU6lu%Y+F!iU0nD?(kf9l(@HSR+n{2mq2o2UuZCH1wHfkTOZB!$*A z=v?-49D}-{W;j-%-mnG3@F2FtGpJ;(J&Y584`Msqj%>4a5p^FVWSfZQInF`#|7tez zSK(b6rr{UZ2nP%|$7T#_=B3yW=cBgZ1#EyDFbH=z^}`rT{WPkdYSi-$9yaffL`5J0 zy)oUUpgrvBGz>uPeKxA&O00_uF&LMkp5K50xDC05t$nDArW$>*@gwG*h(Qflj9S1{ z)Rrv5P_&<;5KrL^RL7@q0$xCFQET7`Gm&Rd=Xf0^u=j^BkoqlBSu3ec!f1kir~%xl z*V~{X(Fv9HgOLBMH~3#1<6Ct&E2%UjVG@o-B~KM5;$9@rtZP_?oky7nZAD!q$50p0 zG`<(PYXT4gvK80hZp_D_d6xBvtp*B{vB6lvhzn51@M(18 zGE{`NqxS3)Mqo8+<&Ei017%`oEJuZU8){%*!k{f`gkBhdI>s?*D=8kL5Q2~6$2bYq zLDt`x1g^#w7(33qu^(yzQ&7oSh02{Z=#3kl`dd!@T~tmSL~X&RxER9=h<}#eP+)GZ zE2#4uTxdG%jY_Iv*c1y;r(ywW;;S(O-^6gdgueI}>e%^?Xa6x235HdQTKP%TIIaoA zpXgg@q%>A8@_}( z1^>YW%;YFVp+U z5f}5fcEp4hCic18e3^5+zC}5fjzJk)z1!W zht;SEB~CKW_d$i+gH3QQM(O;&NTCr8?_m&rj*am<490t?y>Bqtoa=OKNPRLkz=fEM zE3pn9MGbrmlkj`g)-;}CzL>N_ZDkJnGQKsB0->;$qGos$-FO8x0q?11LXj9sJq_cq zKZf9B^ucFP6Ip>8;4lW_4OA}tg<44TG$$fxYwtZ2l$~?XgPZXc447_0za6!*%cvFq zh>zku)Lv)LFjw`nsHFM;!||Nc{s*Q}Z#~m|*5sh-i)Ipk&1j#~@I5|4J#v=ms1h}? zD%2M3!3aEtBk(Hr!|qR*=a!%%wga2sQH;k6j{bx@jCuwtBExJ7I-eDojr6t2kO00r(q^`!^5ce``B~Lo;649 zZ8j>4C*VW41GTrc=9&rkp|&6j6EV?g&q0N>4E^zSY>PWE70+WA44!B9ekgMAEW4CK zD+=GClBeE$lO&xmg?c_Ji(f!>co<{wSB%1t1!haqP%9dY8fXG4^lza0J%tZr-G#;+ zB+|CElfqD5sP&Y&XojQq`Y}`lN>Lr`!#4OcD(k}*IX53hQXhz#=y=o~uR%?4Cn~Zh zuqFP8T0r2_njrg}N}&x6kE5=}MUJ~sZ@7%!Sbwqk8Xk=GsgJ}s9ETn8Ic$cXU~9aA zO)>NtV;U-XhoYV5}tl^w)B zc*%J^VX67Tl7?Ey2<(Yt&~8uRb*JH5tVi9w%$)altWP}|l?z?47nWjo+=adIcWi-O zpEaTX8#bpt+wnDQOZ_M+0=F>%1D8AJKWn*}Q2}ZKTTvang9_ytr|$KfS$P}up*WAQ%f_~flL?K9Dj z`dn;<%P1zn9DnmV%?H=U_YBi|z4e)CJSxWfQTUs8Ekay*?JTRjW~3vK5uoC!PB57^m|e zz0ORaA9_*$8^&W1>X@uTP3SOcqSsO9+-JQp4nwF9aO!y&N_`$GdDo%_ehn4Dqp0>@ zvF7)Ge^SsJ8oXkTM@x*NJ_U6%zJM9HA3Nbar@h0gCI`l#LSKMd=?rXwuR6Ymn)pf7 zL~mjw*4;q-^n^FG^m7KR6t5I9z zwcQMmf=#Ipz*roQ+RA091+BmaxEXanyo2iRBb$OBh0jqd{uaaWR}92}x1IBi%7J85 z`@>id3s8GmfeAPhr{SCE#@K(Dt>}g7e>4W-WDG<5DGJ()SJ59oKxOSQRH!as7W(cm zH(FoRM9MJ{S7ALue*}}Lf3ednsMao%8v&@$hhh(G>X?f;I{&Xz&`fIo(+u1cGpVPb zB2k1xaUp(&-{4eyW4C#}**oU>4yb-6VtZVS3h@EQPcel0DfGr`*hA<4R|*PY$313G zyP}Rs5o+&O;)D1uDnhPz&6YI4=G3EcAof75bUB9OD(r|mP`PpqwfBwRGgojdMlimW zL7_DcN6qXB48jFY`)brNJcv4$*YN@L+iSM2A8PN%;bXW0wb!>$6Y_oE)ElBE(i+uY zHrgX7JV9X;eu?uiZJ$}`9@K+JP}zJ7d*fXkj#(e@cLlftwSc>*NV@l%g|xwL)Kjnt zR$wSTgG#~;`-y)~3cF}fhxf2M4nAP^yb2$peg!kJ{Xz2^jxtQAz7_lEb!>-8hs;Hl zhZ^`r)Mv*z9Dsfwntn#0a--@);;+!XL_;V16qUu^ADIuCj;M26fa-86G8gMzjKZ0R z&C1rILcSC0;J@%;JdT=p>mw#P$D$%M3kSN`Vw*yH8crTH1J(Q39Jg@vrhO!;<2=-W z)3GP6#zuG!>(J3JsC(q@C+2g$_NQiI>G&M&L$Ensa`gF^ISqDO3QzDtcT^+}ppx%r z)RxpbW3BteWT+6jG+CDQ~w>4s5d%c{vNOgE~35?2V%@g^BdJt z%%T1*reMY?ZbS0VnxFzMLJhnLH{wB5s0vS;V>1^csjtBXxEllT2)gmK(|#8lQuqGS zd>A!BHaWM6G z)PiQBwr~xO!BEur2ixEM@Q4 zqE_a2#tayRZt5*j1NO#19D;goERMv^)8Ko-{NPc7dc!`{dA*3Q zqW5>^OX!=}M$ca~$2Aq>spq01w8W{OMopyFCG)Y{1~aG^qfXH#UNgU18GtRQ&qX@4-awu6UFd@cQMvRf zDi^*+Z@h@38Q;1_;bj{7T{q|TDr&Dg-Y^p@Lv`>L>J;onH=aP9n%^9Ke=!6<$T(X9~{#c26ehwruJ18T;cE9E|OLHy6-cRQ(bT!uEf#|D!3)|HFK$T|&(;^`04U zIch6TVk3;KHrbtw%JzwG~JAQ)N8vnn{$Fkjy zLMIx=qu#I)v+!-yp51b6YPo81qAw~Eqnvsf>V}+)ZrqMKcE_9mYM z^|J^W$lB(33A<1a^U`xR_b>&W_opxw51<~njT11nuFFy~u0vhD2QUP$p|-^3?Xreo zQ&e)5Vr$%wfp``5d^PIW1^So?cExDMwLuY+K(|^D)^A zwZiqNz5NA)u^N@E4gF2z;!*97qfSjFYK!)ww(e8Z1OoV(eE?<$xa^t`zCuG44ez5? zGNgg4CcCGglI1;A2j4liXlRnF0JUXrpx$>Dn_=xhvo$TT8};s}_s_!z@d)Z>4G6Mb zHNW+m7UZfqw`Xw_FQhhd)m$jgqC&k2hvQqQt*I02>>(-#CZcY>C8!DSLJfEZqcJ+f zBzYDphw?E4m)cIlQPeT{1+}6${(Xf88jX5z4eDw>i8`ir8@pdZI7s^%CMbo62F%C1ScSc2U3Tj~sun6D7U~Ju-^RJt)3kA(^ zGU~w@*b}#-E|lA-?*olv%^Tw!vrsva?KmFw+-!7X6)LxOq84xgYvVoC1nauuS!59~sHS{_1W`FU)Q)u>aI(#k~4 zgJsm8Z)KY-_G)dCuRrRhTa4P%v#342f(qpw)T!`lV{)P!>c*@@H|{`f;YnhB~wI_xv~18j@@|F#Z!*z=rvRamrxT6Om@}$ zwk!>G(L9a{{Swr3n^70kDXfpTP|1ED`INP-Rw-t0J*beCqV{|)4#k&H9o|HB=-19= zb;Wed!D*;H{u1?R=$~qy4?`^|4K;zWs3f#e5n6>IO831^!xyNK-$7-4M4IWS3#xqt zM&qos9iO!QA>1x4cUO4EPAV^~oaQd~#ijWkcVUG)zpx@V zugH_{E-i5v=Z+mT%$-}3?=G8GSx{P%nwVZw%grmD>`8P#NRP#(YQLc8>;UK?V2tKd$~ z$V^U)Pv%d(0l5{G3EAbjB^5=vm8IpG?(Uw7lEMk@?nMma?wnUs>snS`I<7po*i%t3 zv9K($w0zu-ts5SVu?HX8Qtr+zubAd>R}_w8v7WZ>;zL_Xrj_TKwR(y??n7HD3Mvn6 zaZ}oqJE5|0a^dtzx#jK>n#_{(3q1dC$*R!@9hT91qT5|Fh*~N=YH=5o78TKFVOw|5 f_(|@fNtK>r%0-^3r6q;#su`W*oppPC)U4!xlqDin diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 0b8206abdd1..e124505cd00 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 09:04+0000\n" -"Last-Translator: Besnik Bleta \n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"Last-Translator: Komiya Takeshi \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,130 +19,123 @@ msgstr "" "Language: sq\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "S’gjendet dot drejtori burim (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Drejtoria e përfundimeve (%s) s’është drejtori" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Drejtoria burim dhe drejtoria vendmbërritje s’mund të jenë identike" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Po xhirohet Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "Për arsye sigurie, mënyra paralele është e çaktivizuar në macOS dhe python3.8 dhe më sipër. Për më tepër hollësi, ju lutemi, lexoni https://github.com/sphinx-doc/sphinx/issues/6803" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Ky projekt lyp të paktën Sphinx v%s, ndaj s’mund të montohet me këtë version." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "po krijohet drejtori përfundimesh" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "teksa ujdiset zgjerimi %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funksion Python që mund të thirret. Ju lutemi, ndryshojeni përcaktimin e tij që ta bëni një funksion që mund të thirret. Kjo është e nevojshme që conf.py të sillet si një zgjerim Sphinx." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "u bë" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "s’është i passhëm për mesazhe të brendshëm" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "dështoi: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "S’u përzgjodh montues, po përdoret parazgjedhja: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "doli me sukses" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "u përfundua me probleme" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "montimi %s, % sinjalizim (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "montimi %s, %s sinjalizime (me sinjalizime të trajtuara si gabime)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s warning." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "montimi %s, %s sinjalizime." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "montimi %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "klasa %r e nyjeve është e regjistruar tashmë, vizitorët e saj do të anashkalohen" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "Shihni për çfarëdo gabimesh te përfundimi më sipër ose te %(outdir msgid "broken link: %s (%s)" msgstr "lidhje e dëmtuar: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "S’u gjet spirancë '%s'" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "S’u arrit të përpilohet shprehje e rregullt te linkcheck_allowed_redirects: %r %s" @@ -917,7 +910,7 @@ msgstr "S’u arrit të lexohet kartelë të dhënash montimi: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" @@ -1101,7 +1094,7 @@ msgstr "vlera e formësimit \"texinfo_documents\" i referohet një dokumenti të #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Tregues" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametra" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Kthime" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Lloj kthimi" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "ndryshore" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funksion" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klasë" @@ -2000,7 +1993,7 @@ msgstr "parametër gjedheje" msgid "%s() (built-in function)" msgstr "%s() (funksion i brendshëm)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (metodë %s)" @@ -2015,7 +2008,7 @@ msgstr "%s() (klasë)" msgid "%s (global variable or constant)" msgstr "%s ( ndryshore globale ose konstante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2029,20 +2022,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metodë" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "të dhëna" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2056,7 +2049,7 @@ msgstr "përshkrim %s i përsëdytur i %s, tjetër %s në %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiketë e përsëdytur ekuacioni %s, instancë tjetër te %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format i pavlefshëm: %r" @@ -2073,7 +2066,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "përjashtim" @@ -2085,92 +2078,92 @@ msgstr "deklarim" msgid "built-in function" msgstr "funksion i brendshëm" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Ndryshore" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (te moduli %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (te moduli %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (ndryshore e brendshme)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (klasë e brendshme)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klasë te %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metodë klase %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "%s (veti %s)" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metodë statike %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Tregues Modulesh Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Nxjerrë nga përdorimi" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "metodë klase" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "metodë statike" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "veti" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "përshkrim i përsëdytur objekti për %s, instancë tjetër te %s, përdorni :noindex: për një prej tyre" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "për ndërreferencën %r u gjet më shumë se një objektiv: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "=================== kohëzgjatjet më të ngadalta të leximit ===================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Një direktivë Graphviz s’mund të ketë edhe lëndë, edhe argument emri kartelash" @@ -2832,7 +2831,7 @@ msgstr "nënshkrim i pavlefshëm për auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "gabim gjatë formatimi argumentesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut %s që mungon te objekt %s" @@ -2884,44 +2883,44 @@ msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s" -#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Baza: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "alias për %s" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias për TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "Format i pavlefshëm datash. Quote the string by single quote Nëse doni të jepet drejtpërsëdrejti, përdorni për vargun thonjëza njëshe: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "“toctree” përmban referencë për te një kartelë joekzistuese %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" @@ -3599,27 +3598,27 @@ msgstr ":maxdepth: shumë i madh, u shpërfill." msgid "document title is not a single Text node" msgstr "titulli i dokumentit s’është nyje njëshe Teksti" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "u has nyje titulli jo në ndarje, temë, tabelë, paralajmërim ose anështyllë" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Poshtëshënime" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "janë dhënë që të dyja mundësitë, “tabularcolumns” dhe “:widths:”. shpërfillet :widths:." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "njësia e përmasave %s është e pavlefshme. U shpërfill." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "u gjet lloj i panjohur %s zërash treguesi" @@ -3633,16 +3632,16 @@ msgstr "[figurë: %s]" msgid "[image]" msgstr "[figurë]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "titull jo brenda një figure." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "lloj nyjeje i pasendërtuar: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "lloj i panjohur nyjeje: %r" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index d75425c89a3f4e74b808db00c3ea241f07d4bf8f..0ba41d10aedb4ef0b1296e70a24f5757897975da 100644 GIT binary patch delta 32 ocmX@$dBAhSX(1LPT|=YE=Y>?bjC2i56$}il42?Gb6*?>k0Joe9e*gdg delta 32 mcmX@$dBAhSX(1LvT_cOh=Y>?bKnw)~11m$r&3}as3jzSRK?;Zf diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index e18a756f881..49e0ebed501 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Нема изворног директоријума (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Изворни и одредишни директоријум не могу бити једнаки" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Покрећем Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Овај пројекат захтева верзију Sphinx v%s или већу, не може се изградити инсталираном верзијом." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "готово" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "Неуспешно: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "са грешкама" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Индекс" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Резултат" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Тип резултата" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "променљива" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функција" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "класа" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (уграђена функција)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метода)" @@ -2016,7 +2009,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "%s (глобална променљива или константа)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -2030,20 +2023,20 @@ msgstr "Аргументи" msgid "%s (module)" msgstr "%s (модул)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "метода" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "модул" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "оператор" msgid "object" msgstr "објекат" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "изузетак" @@ -2086,92 +2079,92 @@ msgstr "наредба" msgid "built-in function" msgstr "уграђена функција" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Променљиве" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (у модулу %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (у модулу %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (уграђена променљива)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (уграђена класа)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (класа у %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метода класе %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статичка метода %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Застарело" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "метода класе" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "статичка метода" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2613,6 +2606,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2833,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2885,44 +2884,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3538,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3600,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3634,16 +3633,16 @@ msgstr "[слика: %s]" msgid "[image]" msgstr "[слика]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 344c765b4bc3a1041a49e016dbc75ca5d32f48dc..88a175646688e0456e03fd722b340f8e3e0512b7 100644 GIT binary patch delta 21 dcmcb}a*<_12a}=E#4Z&UBV9wIjhp5(0svA42QUBt delta 21 dcmcb}a*<_12a|#6#4Z&ULtP__jhp5(0svAv2RHx# diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 1ffb6fcc5e2..eb28eac447f 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2837,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2889,44 +2882,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3542,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3604,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3638,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 415653d55bfd64ced4ecdb960cf6e49aa07580c1..fbc2403304868a1f214b04bdb965b89b774f81c9 100644 GIT binary patch delta 29 lcmX@Za)xC>8;g;yq0z)H6)q!P15*V911m$LjXS0=0sw{)2&Di3 delta 29 icmX@Za)xC>8;hZ?k;TL=6)q61U|?WnXt;656h;7srwFb9 diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 7e3c9ae3e88..970ab3c96e8 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: sr_RS\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 9510d02e941d3fc289ffa7769bc21f3ba824591e..cb2ade2e09abd42ac233a643f519af399b2e7032 100644 GIT binary patch delta 32 lcmdmFy2*6IcL5e7T?5m}zXepdKnw)~11m$L&6nk delta 32 lcmdmFy2*6IcL5edT_cOhzXepdKnw)~11m$r&6\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" @@ -1877,7 +1877,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrar" @@ -1886,12 +1886,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "Returnerar" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "Returtyp" @@ -1904,7 +1904,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "funktion" @@ -1982,7 +1982,7 @@ msgid "Throws" msgstr "Kastar" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "klass" @@ -1999,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -2014,7 +2014,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2028,20 +2028,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "modul" @@ -2072,7 +2072,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "undantag" @@ -2084,92 +2084,92 @@ msgstr "uttryck" msgid "built-in function" msgstr "inbyggda funktioner" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2611,6 +2611,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2884,7 +2890,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2910,17 +2916,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 8686167fe160189ba4ca087d9637731142a16343..7f1dfb43383252fad59b620a615552f1c97163e5 100644 GIT binary patch delta 29 lcmey)@||VE78WC2L!*g1RJe?E4NMgb46F=|Ha?rk2mqH`34#Cs delta 29 icmey)@||VE78XNYBa4YURJcI2f`NgRq2b176Bz-Q@d=9n diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index fd0a5f975f0..be00762c827 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2008,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2085,92 +2078,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 6c6d7c09057f12d5a534c93cb3cf3d9f274b5be4..158c627060d479ee41121ac1fa4fea4e008c302a 100644 GIT binary patch delta 29 kcmeyw{E2x&8;g;yq0z)H6)q!P15*V911m$LjXSIu0gZPEl>h($ delta 29 icmeyw{E2x&8;hZ?k;TL=6)q61U|?WnXt;5Q6(azS4G5k9 diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 199878fc8bb..e88210d3554 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: te\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 1c12cb7c93717a527ac45068362d030935c1c445..eb847328443fbb12a47a5c104e30b4099a877a75 100644 GIT binary patch delta 28 gcmbPsih0^8<_%o6EJnJ9Mw9t!RltnRX0;E}0gP@5c>n+a delta 28 gcmbPsih0^8<_%o6EQY#97L)mERltnRX0;E}0gUJgg#Z8m diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index ac778ca53b5..385e5714cb9 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" @@ -22,130 +22,123 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kaynak dizin bulunamıyor (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Kaynak dizin ve hedef dizin aynı olamaz" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx s%s çalışıyor" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Bu proje en az Sphinx s%s gerektirir ve bu nedenle bu sürüm ile oluşturulamaz." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "çıktı dizini yapılıyor" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "%s uzantısı ayarlanırken:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "Şu anda conf.py dosyasında tanımlanan 'kurulum' çağrılabilir bir Python değil. Lütfen tanımını çağrılabilir bir işlev yapmak için değiştirin. Bunun, Sphinx uzantısı gibi davranması için conf.py dosyasına ihtiyacı vardır." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "çeviriler yükleniyor [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "bitti" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "yerleşik iletiler için kullanılamaz" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "derin temizlenen ortam yükleniyor" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "başarısız olan: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Seçilen oluşturucu yok, varsayılan kullanılıyor: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "başarılı oldu" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "sorunlarla tamamlandı" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hata olarak kabul edilen uyarılarla)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "yapım %s, %s uyarı (hatalar olarak kabul edilen uyarılarla)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "yapım %s, %s uyarı." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "yapım %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "düğüm sınıfı %r zaten kayıtlı, ziyaretçileri geçersiz kılınacaktır" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +146,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,12 +159,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" @@ -797,12 +790,12 @@ msgstr "Yukarıdaki çıktıda veya %(outdir)s/output.txt içinde herhangi bir h msgid "broken link: %s (%s)" msgstr "bozuk bağlantı: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Bağlayıcı '%s' bulunamadı" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -920,7 +913,7 @@ msgstr "oluşturma bilgisi dosyasını okuma başarısız: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" @@ -1104,7 +1097,7 @@ msgstr "\"latex_documents\" yapılandırma değeri bilinmeyen %s belgesine başv #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Dizin" @@ -1881,7 +1874,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametreler" @@ -1890,12 +1883,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Dönüşler" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Dönüş türü" @@ -1908,7 +1901,7 @@ msgid "variable" msgstr "değişkeni" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "işlevi" @@ -1986,7 +1979,7 @@ msgid "Throws" msgstr "Şunu verir: " #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "sınıfı" @@ -2003,7 +1996,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (yerleşik işlev)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s yöntemi)" @@ -2018,7 +2011,7 @@ msgstr "%s() (sınıf)" msgid "%s (global variable or constant)" msgstr "%s (genel değişken veya sabit)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s özniteliği)" @@ -2032,20 +2025,20 @@ msgstr "Bağımsız Değişkenler" msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "yöntemi" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "özniteliği" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modülü" @@ -2059,7 +2052,7 @@ msgstr "kopya %s açıklamasına ait %s, diğer %s, %s içinde" msgid "duplicate label of equation %s, other instance in %s" msgstr "%s denkleminin kopya etiketi, %s içindeki diğer örnek" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Geçersiz math_eqref_format: %r" @@ -2076,7 +2069,7 @@ msgstr "işleç" msgid "object" msgstr "nesne" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "özel durum" @@ -2088,92 +2081,92 @@ msgstr "ifade" msgid "built-in function" msgstr "yerleşik işlev" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Değişkenler" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Harekete geçirir" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (yerleşik değişken)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (yerleşik sınıf)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içindeki sınıf)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf yöntemi)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s sabit yöntemi)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "modülleri" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Kullanım dışı" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "sınıf yöntemi" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "sabit yöntemi" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s kopya nesne açıklaması, %s içindeki diğer örnek, bunlardan biri için :noindex: kullanın" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "çapraz referans %r için birden fazla hedef bulundu: %s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (kullanım dışı)" @@ -2615,6 +2608,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2835,7 +2834,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2887,44 +2886,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3540,12 +3539,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3602,27 +3601,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Dipnotlar" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3636,16 +3635,16 @@ msgstr "[resim: %s]" msgid "[image]" msgstr "[resim]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 56f74833ef299c7f0574867fe211b1469b83d7b8..5777c796fb7d7e30a3457cd237faabc6d76dd214 100644 GIT binary patch delta 32 ncmeA-?Kj=2ObqJ5JSPhz{=2Yvm9?BF94`!2>Jj3 diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index f68da6fe029..5f52bb1e714 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Індекс" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Повертає" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Тип повернення" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функція" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "клас" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -2015,7 +2008,7 @@ msgstr "%s() (клас)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "модуль" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "оператор" msgid "object" msgstr "об'єкт" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "виняткова ситуація" @@ -2085,92 +2078,92 @@ msgstr "вираз" msgid "built-in function" msgstr "вбудована функція" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (застарілий)" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index f135082b7f62534bf6e6ecee0c3139d96d01c3d9..2e740153ffa79f36bcfe189927239ff3335c4daa 100644 GIT binary patch delta 29 kcmeys{DFBw8;g;yq0z)H6)q!P15*V911m$LjXNwD0gVF)j{pDw delta 29 icmeys{DFBw8;hZ?k;TL=6)q61U|?WnXt;5Q1tS2BnFyEw diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 2327f7544aa..e8bd80790ef 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: ur\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index d42ca18e04e1768efd9608b3ff5d21240d5c411f..a0317efd40d373c1dabd24320d202b772101fc35 100644 GIT binary patch delta 26 ecmX@7cTR7^d|nnKT|=YEi+NSRjLoNcn>hh{9|&In delta 26 ecmX@7cTR7^d|nnqT_cOhi+NSRjLoNcn>hh{nFwnD diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 077f38ae800..5a53c47a331 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d/%m/%Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Tham số" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Trả về" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Kiểu trả về" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "biến" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "hàm" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "Ném" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "lớp" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" @@ -2015,7 +2008,7 @@ msgstr "%s() (lớp)" msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" @@ -2029,20 +2022,20 @@ msgstr "Đối số" msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "thuộc tính" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "mô-đun" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "toán tử" msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "ngoại lệ" @@ -2085,92 +2078,92 @@ msgstr "câu lệnh" msgid "built-in function" msgstr "hàm dựng sẵn" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -2612,6 +2605,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2832,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2884,44 +2883,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3537,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3599,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3633,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 2d09138aef5b10eed50bb2e4907a865a69c79f4c..a02e19e97277f13255de908fa32592ba3986e26a 100644 GIT binary patch delta 29 kcmeys{DFBw8;g;yq0z)H6)q!P15*V911m$LjXNwD0gVF)j{pDw delta 29 icmeys{DFBw8;hZ?k;TL=6)q61U|?WnXt;5Q1tS2BnFyEw diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 4df345af312..d4c17aa8dd0 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: yue\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 741de2688891a18e7eba0bab8e58db36b8cfa607..bd4d39d73508802f51dd17c5c3d2f8ca8edd0984 100644 GIT binary patch delta 34 ocmezPp84Z@<_*e|S&VcIOed>PR^b9M6buZk42?F2PM(tj0O!aH>;M1& delta 34 ocmezPp84Z@<_*e|SqycJEGDZ@R^b9M6buZk3=KDjPM(tj0O&*u^8f$< diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 3c9c18574ef..0a4af63b983 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -1892,7 +1892,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "参数" @@ -1901,12 +1901,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "返回" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "返回类型" @@ -1919,7 +1919,7 @@ msgid "variable" msgstr "变量" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "函数" @@ -1997,7 +1997,7 @@ msgid "Throws" msgstr "抛出" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "类" @@ -2014,7 +2014,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" @@ -2029,7 +2029,7 @@ msgstr "%s() (类)" msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" @@ -2043,20 +2043,20 @@ msgstr "参数" msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "属性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "模块" @@ -2087,7 +2087,7 @@ msgstr "运算符" msgid "object" msgstr "对象" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "例外" @@ -2099,92 +2099,92 @@ msgstr "语句" msgid "built-in function" msgstr "內置函数" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "变量" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "重复的对象描述%s ,另一实例出现在使用 noindex 中:对它们其中的一个 %s" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr " (已移除)" @@ -2626,6 +2626,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最长阅读时长 =======================" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz 指令不能同时指定内容和文件名参数" @@ -2899,7 +2905,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2925,17 +2931,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index bf6beb5fe757682e2c8dc4ea290ef24d093d1614..25e016ca7a9ee34a446c56b5d1b6a3ea075eedfb 100644 GIT binary patch delta 29 kcmeyz{EvA;8;g;yq0z)H6)q!P15*V911m$LjXT^J0gx{Uxc~qF delta 29 icmeyz{EvA;8;hZ?k;TL=6)q61U|?WnXt;5Q8zTUa#R$Rx diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index cdecfa6e34e..3cac25bd642 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: zh_HK\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2611,6 +2604,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2831,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2883,44 +2882,44 @@ 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:2751 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3536,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3598,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3632,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 0a859550a4d756d4ca87bbfc6ba52f2995755f52..f630ad67e8759ad91cf5760f3aad433bcb50b641 100644 GIT binary patch delta 29 icmeBW>1CPF#$u#vU^=l&g$qP07#LU?8g1MW$_M~=@CWJu delta 29 icmeBW>1CPF#$u>zWHGTzg$qP07#LU?8gASX$_M~>VF&R5 diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index fa2c296669b..b52e7803f6f 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/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-28 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-05 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" @@ -1877,7 +1877,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:420 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1886,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:432 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:434 +#: sphinx/domains/python.py:446 msgid "Return type" msgstr "" @@ -1904,7 +1904,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1178 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 msgid "function" msgstr "" @@ -1982,7 +1982,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1180 +#: sphinx/domains/python.py:1192 msgid "class" msgstr "" @@ -1999,7 +1999,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:817 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2014,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:902 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2028,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1182 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1179 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1185 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1187 +#: sphinx/domains/python.py:1199 msgid "module" msgstr "" @@ -2072,7 +2072,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1181 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 msgid "exception" msgstr "" @@ -2084,92 +2084,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:425 +#: sphinx/domains/python.py:437 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:429 +#: sphinx/domains/python.py:441 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:662 sphinx/domains/python.py:806 +#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:722 sphinx/domains/python.py:898 -#: sphinx/domains/python.py:949 +#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 +#: sphinx/domains/python.py:961 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:724 +#: sphinx/domains/python.py:736 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:749 +#: sphinx/domains/python.py:761 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:762 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:811 +#: sphinx/domains/python.py:823 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:813 sphinx/domains/python.py:953 +#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:815 +#: sphinx/domains/python.py:827 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1107 +#: sphinx/domains/python.py:1119 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1108 +#: sphinx/domains/python.py:1120 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1157 +#: sphinx/domains/python.py:1169 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1195 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1184 +#: sphinx/domains/python.py:1196 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1186 +#: sphinx/domains/python.py:1198 msgid "property" msgstr "" -#: sphinx/domains/python.py:1244 +#: sphinx/domains/python.py:1256 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1364 +#: sphinx/domains/python.py:1376 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1418 +#: sphinx/domains/python.py:1430 msgid " (deprecated)" msgstr "" @@ -2611,6 +2611,12 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" +#: sphinx/ext/extlinks.py:76 +#, python-format +msgid "" +"hardcoded link %r could be replaced by an extlink (try using %r instead)" +msgstr "" + #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" @@ -2884,7 +2890,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2751 +#: sphinx/ext/autodoc/__init__.py:2753 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2910,17 +2916,17 @@ msgstr "" msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 +#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2356 +#: sphinx/ext/autodoc/__init__.py:2357 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2794 +#: sphinx/ext/autodoc/__init__.py:2796 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 7d85948dc86dd5c11752c8cf08a5389ded0d2c46..06bc18b580949013f9444b24f4cd18c66a03461a 100644 GIT binary patch delta 8103 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 diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index d8962246f69..c1eb6ff87fd 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-05 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -26,130 +26,123 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "找不到來源資料夾 (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "輸出資料夾 (%s) 不是一個資料夾" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "來源資料夾與目的資料夾不能為相同" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "正在執行 Sphinx v%s 版本" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "基於安全性理由,平行模式在 masOS 及 python3.8 以上版本已被停用。更多細節,請參閱 https://github.com/sphinx-doc/sphinx/issues/6803" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "本專案需要 Sphinx v%s 版本或以上,故無法以現版本編譯。" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "正在建立輸出目錄" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "正在設置擴充套件 %s 時:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "目前在 conf.py 裡定義的 'setup' 並非一個 Python 的可呼叫物件。請將其定義修改為一個可呼叫的函式。若要使 conf.py 以 Sphinx 擴充套件的方式運作,這個修改是必須的。" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "正在載入翻譯 [%s]..." -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "完成" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "不是有效的內建訊息" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "正在載入已 pickle 的環境" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "完成但有問題" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "建立 %s,%s 警告(警告被視為錯誤)。" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "建立 %s,%s 警告。" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "建立 %s。" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "node class %r 已經被註冊,它的訪客將會被覆寫" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "role %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +150,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行讀取是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 擴充套件對於平行讀取是不安全的" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,12 +163,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行寫入是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 擴充套件對於平行寫入是不安全的" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "執行串列 %s" @@ -801,12 +794,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -924,7 +917,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" @@ -1108,7 +1101,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "索引" @@ -1885,7 +1878,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "參數" @@ -1894,12 +1887,12 @@ msgid "Return values" msgstr "回傳值" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "回傳" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "回傳型別" @@ -1912,7 +1905,7 @@ msgid "variable" msgstr "變數" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "函式" @@ -1990,7 +1983,7 @@ msgid "Throws" msgstr "拋出" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "類別" @@ -2007,7 +2000,7 @@ msgstr "模板參數" msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" @@ -2022,7 +2015,7 @@ msgstr "%s() (類別)" msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" @@ -2036,20 +2029,20 @@ msgstr "引數" msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "資料" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "屬性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "模組" @@ -2063,7 +2056,7 @@ msgstr "%s 的重複 %s 敘述,其他的 %s 在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重複公式標籤 %s,亦出現於 %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無效的 math_eqref_format: %r" @@ -2080,7 +2073,7 @@ msgstr "運算子" msgid "object" msgstr "物件" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "例外" @@ -2092,92 +2085,92 @@ msgstr "陳述式" msgid "built-in function" msgstr "內建函式" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "變數" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "引發" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別方法)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "%s (%s 的特性)" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態方法)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "類別方法" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "特性" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s 的重複物件敘述,其他的實例在 %s ,使用 :noindex: 給它們其中之一" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "(已棄用)" @@ -2845,7 +2838,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2897,44 +2890,44 @@ msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "缺少 :members: 選項中所述的屬性:模組 %s ,屬性 %s" -#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "無法取得一個函式簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "無法取得一個 constructor 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "%s 的別名" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s) 的別名" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "無法取得一個 method 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3550,12 +3543,12 @@ msgid "" "it directly: %s" msgstr "無效的日期格式。如果您要直接將它輸出,則以單引號引用該字串: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree 包含了不存在的檔案 %r 的參照 " -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "在評估只有指令的運算式時發生例外: %s" @@ -3612,27 +3605,27 @@ msgstr ":maxdepth: 太大,已略過。" msgid "document title is not a single Text node" msgstr "文件標題不是單一的 Text 節點" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "遇到的標題節點不是在段落、主題、表格、警告或側邊欄" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "註腳" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "同時被給予 tabularcolumns 及 :widths: 選項。 :widths: 已略過。" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "維度單位 %s 是無效的。已略過。" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "找到了未知的索引條目型別 %s" @@ -3646,16 +3639,16 @@ msgstr "[圖片:%s]" msgid "[image]" msgstr "[圖片]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "標題不在圖之內。" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "未實作的節點型別: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "未知的節點型別: %r" From dd27e35e4cb31e7f3c2d42d74f7e877bb72e8318 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 13 Dec 2021 13:15:58 +0900 Subject: [PATCH 093/192] doc: Use "console" for the highlight language of console output Using "console" language is better for the console example (including command-line prompt) --- doc/development/theming.rst | 4 ++-- doc/man/sphinx-autogen.rst | 2 +- doc/usage/advanced/setuptools.rst | 14 +++++++------- doc/usage/installation.rst | 4 ++-- doc/usage/quickstart.rst | 6 +++--- doc/usage/theming.rst | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/doc/development/theming.rst b/doc/development/theming.rst index a63a1d668e8..08cd3712110 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -285,7 +285,7 @@ engine, allowing you to embed variables and control behavior. For example, the following JavaScript structure: -.. code-block:: bash +.. code-block:: none mymodule/ ├── _static @@ -294,7 +294,7 @@ For example, the following JavaScript structure: Will result in the following static file placed in your HTML's build output: -.. code-block:: bash +.. code-block:: none _build/ └── html diff --git a/doc/man/sphinx-autogen.rst b/doc/man/sphinx-autogen.rst index 4c8f0f20782..cad22bf2256 100644 --- a/doc/man/sphinx-autogen.rst +++ b/doc/man/sphinx-autogen.rst @@ -75,7 +75,7 @@ and assuming ``docs/index.rst`` contained the following: If you run the following: -.. code-block:: bash +.. code-block:: console $ PYTHONPATH=. sphinx-autogen docs/index.rst diff --git a/doc/usage/advanced/setuptools.rst b/doc/usage/advanced/setuptools.rst index 7f993e10c54..c6ef0fb4137 100644 --- a/doc/usage/advanced/setuptools.rst +++ b/doc/usage/advanced/setuptools.rst @@ -64,7 +64,7 @@ Options for setuptools integration This can also be set by passing the `-E` flag to ``setup.py``: - .. code-block:: bash + .. code-block:: console $ python setup.py build_sphinx -E @@ -75,7 +75,7 @@ Options for setuptools integration This can also be set by passing the `-a` flag to ``setup.py``: - .. code-block:: bash + .. code-block:: console $ python setup.py build_sphinx -a @@ -88,7 +88,7 @@ Options for setuptools integration This can also be set by passing the `-s` flag to ``setup.py``: - .. code-block:: bash + .. code-block:: console $ python setup.py build_sphinx -s $SOURCE_DIR @@ -105,7 +105,7 @@ Options for setuptools integration This can also be set by passing the `-c` flag to ``setup.py``: - .. code-block:: bash + .. code-block:: console $ python setup.py build_sphinx -c $CONFIG_DIR @@ -117,7 +117,7 @@ Options for setuptools integration This can also be set by passing the `-b` flag to ``setup.py``: - .. code-block:: bash + .. code-block:: console $ python setup.py build_sphinx -b $BUILDER @@ -131,7 +131,7 @@ Options for setuptools integration This can also be set by passing the `-W` flag to ``setup.py``: - .. code-block:: bash + .. code-block:: console $ python setup.py build_sphinx -W @@ -169,7 +169,7 @@ Options for setuptools integration This can also be set by passing the `-i` flag to ``setup.py``: - .. code-block:: bash + .. code-block:: console $ python setup.py build_sphinx -i diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index 4b016f8f05d..cd197dc6260 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -239,13 +239,13 @@ PDF builds using LaTeX. Please choose one for your purpose. commands. For example, you can use following command to create a Sphinx project: - .. code-block:: bash + .. code-block:: console $ docker run -it --rm -v /path/to/document:/docs sphinxdoc/sphinx sphinx-quickstart And you can following command this to build HTML document: - .. code-block:: bash + .. code-block:: console $ docker run --rm -v /path/to/document:/docs sphinxdoc/sphinx make html diff --git a/doc/usage/quickstart.rst b/doc/usage/quickstart.rst index 8644a00213d..abfa269d823 100644 --- a/doc/usage/quickstart.rst +++ b/doc/usage/quickstart.rst @@ -39,7 +39,7 @@ Sphinx comes with a script called :program:`sphinx-quickstart` that sets up a source directory and creates a default :file:`conf.py` with the most useful configuration values from a few questions it asks you. To use this, run: -.. code-block:: shell +.. code-block:: console $ sphinx-quickstart @@ -128,7 +128,7 @@ Running the build Now that you have added some files and content, let's make a first build of the docs. A build is started with the :program:`sphinx-build` program: -.. code-block:: shell +.. code-block:: console $ sphinx-build -b html sourcedir builddir @@ -144,7 +144,7 @@ However, :program:`sphinx-quickstart` script creates a :file:`Makefile` and a :file:`make.bat` which make life even easier for you. These can be executed by running :command:`make` with the name of the builder. For example. -.. code-block:: shell +.. code-block:: console $ make html diff --git a/doc/usage/theming.rst b/doc/usage/theming.rst index f6a9460ec1d..f66734b9671 100644 --- a/doc/usage/theming.rst +++ b/doc/usage/theming.rst @@ -70,7 +70,7 @@ directory containing :file:`conf.py` and use this configuration:: The third form is a Python package. If a theme you want to use is distributed as a Python package, you can use it after installing -.. code-block:: bash +.. code-block:: console # installing theme package $ pip install sphinxjp.themes.dotted From eeab5a089c68fbf0b05ad0a6990fc11b66fe6844 Mon Sep 17 00:00:00 2001 From: Ryan King Date: Tue, 14 Dec 2021 13:28:05 +0100 Subject: [PATCH 094/192] doc: Point to IRC channel on Libera.Chat --- doc/internals/contributing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/internals/contributing.rst b/doc/internals/contributing.rst index 6977614cde8..8c74d1b1081 100644 --- a/doc/internals/contributing.rst +++ b/doc/internals/contributing.rst @@ -21,7 +21,7 @@ sphinx-users sphinx-dev Mailing list for development related discussions. -#sphinx-doc on irc.freenode.net +#sphinx-doc on irc.libera.chat IRC channel for development questions and user support. .. _python-sphinx: https://stackoverflow.com/questions/tagged/python-sphinx From a9a9bd25632235911058779dec017f330c234164 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 17 Dec 2021 01:45:18 +0900 Subject: [PATCH 095/192] Fix #9979: Error level messages were displayed as warning messages --- CHANGES | 1 + sphinx/util/logging.py | 9 ++++++++- tests/test_util_logging.py | 10 +++++----- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 9d57f8349ab..63f7416a29f 100644 --- a/CHANGES +++ b/CHANGES @@ -51,6 +51,7 @@ Bugs fixed * #9940: LaTeX: Multi-function declaration in Python domain has cramped vertical spacing in latexpdf output * #9390: texinfo: Do not emit labels inside footnotes +* #9979: Error level messages were displayed as warning messages Testing -------- diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index ae8fc25cfb5..ef36e3cf103 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -111,7 +111,14 @@ class SphinxInfoLogRecord(SphinxLogRecord): class SphinxWarningLogRecord(SphinxLogRecord): """Warning log record class supporting location""" - prefix = 'WARNING: ' + @property + def prefix(self) -> str: # type: ignore + if self.levelno >= logging.CRITICAL: + return 'CRITICAL: ' + elif self.levelno >= logging.ERROR: + return 'ERROR: ' + else: + return 'WARNING: ' class SphinxLoggerAdapter(logging.LoggerAdapter): diff --git a/tests/test_util_logging.py b/tests/test_util_logging.py index b8a0ca2e200..057d38546d8 100644 --- a/tests/test_util_logging.py +++ b/tests/test_util_logging.py @@ -41,9 +41,9 @@ def test_info_and_warning(app, status, warning): assert 'message1' not in warning.getvalue() assert 'message2' not in warning.getvalue() - assert 'message3' in warning.getvalue() - assert 'message4' in warning.getvalue() - assert 'message5' in warning.getvalue() + assert 'WARNING: message3' in warning.getvalue() + assert 'CRITICAL: message4' in warning.getvalue() + assert 'ERROR: message5' in warning.getvalue() def test_Exception(app, status, warning): @@ -305,8 +305,8 @@ def test_colored_logs(app, status, warning): assert 'message2\n' in status.getvalue() # not colored assert 'message3\n' in status.getvalue() # not colored assert colorize('red', 'WARNING: message4') in warning.getvalue() - assert 'WARNING: message5\n' in warning.getvalue() # not colored - assert colorize('darkred', 'WARNING: message6') in warning.getvalue() + assert 'CRITICAL: message5\n' in warning.getvalue() # not colored + assert colorize('darkred', 'ERROR: message6') in warning.getvalue() # color specification logger.debug('message7', color='white') From 733ac6ed5fa75136b127766a7b08b1dbe67c9cb6 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 18 Dec 2021 15:01:49 +0900 Subject: [PATCH 096/192] doc: Update explanation of autodoc_unqualified_typehints (ref: #9931) --- doc/usage/extensions/autodoc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index dab09c92c5f..d775ddee8e8 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -664,8 +664,8 @@ There are also config values that you can set: .. confval:: autodoc_unqualified_typehints - If True, the leading module names of typehints of function signatures (ex. - ``io.StringIO`` -> ``StringIO``). Defaults to False. + If True, the leading module names of typehints of function signatures are + removed (ex. ``io.StringIO`` -> ``StringIO``). Defaults to False. .. versionadded:: 4.4 From 2416cde19c6bfa8f12a2f52eba5ca8530ac69b0f Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 19 Dec 2021 00:12:31 +0000 Subject: [PATCH 097/192] Update message catalogs --- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80983 -> 80635 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 189 +++++++++--------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 48 ++--- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63473 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 2 +- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41839 -> 41839 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 2 +- 67 files changed, 948 insertions(+), 1018 deletions(-) diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index aa929cafe2dad73aa01f0e5b50146c6ac8808542..27fb475a2767e288d3f2d4887481c1c72c17bb67 100644 GIT binary patch delta 28 kcmbPjKihu84qhfhqshB?)i?}|6buZk3=KEG;N2_;0Ele~0ssI2 delta 28 kcmbPjKihu84qhe$)5*Jd)i?}H6$}il42?Fw;N2_;0En*%2LJ#7 diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index a81f9deeba6..41a67c7774d 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "ইনডেক্স" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "প্যারামিটার" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "রিটার্নস" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "ফাংশন" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "ক্লাস" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -2015,7 +2008,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "এ্যট্রিবিউট" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "মডিউল" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "অপারেটর" msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "এক্সেপশন" @@ -2085,92 +2078,92 @@ msgstr "স্ট্যাটমেন্ট" msgid "built-in function" msgstr "বিল্ট-ইন ফাংশন" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2838,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2890,44 +2883,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3543,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3605,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "পাদটীকা" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3639,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "[ছবি]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 3a4cfa35aa3d6a6035339783444f3c5da1479b5a..cccff9abdac265ddf7871d0e7a92a717fd575b31 100644 GIT binary patch delta 21 dcmaDU^ipWUTviT4BLxEkD?`K0OIeRF0{~Ma2J`>` delta 21 dcmaDU^ipWUTviSPQw0M9D?_8rOIeRF0{~M%2KN8} diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 6e99c7aa955..7d5c4b73ab6 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index b2613563474d323bb7a0ed14777cd8c526f3e626..d62ce30d1aa380aa5c7997ab10c93d0ca49fc635 100644 GIT binary patch delta 18 ZcmZo@V{K?--QdwQS)qw\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 80204f53c4f7aba9e7450427021833c63eaa2c0e..8fe3692ae45253edea30b64343d671bffc351786 100644 GIT binary patch delta 13 Vcmcb?e1mzyhKU_~8}~^u0st$&1*iZ3 delta 19 acmcb?e1mzy1`Y#L1p@;sL!*s56c_\n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 774a07f673028224cd68ffcfa75b874a64ec6064..f90e25d6903b73326a584e499d4ec1284c597f63 100644 GIT binary patch delta 25 gcmZo=X=Rzv!DMJOu}h7^&`80+z{=2Y;|^a&09@Ax4*&oF delta 25 gcmZo=X=Rzv!DL`Mu}h7^z*ND&z{=2Q;|^a&09_IX6aWAK diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 80ce9475203..a71d111bf58 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: en_HK\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2837,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2889,44 +2882,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3542,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3604,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3638,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 83dee9d7647331f56879584d4740961e15c28d31..3c78e9dc237bd66f79f1f292da00ca1d43f22b03 100644 GIT binary patch delta 28 jcmX@WcYtq$5et){(PR@AH4Z}~1p@;sL&MEUEcciIZWRYv delta 28 jcmX@WcYtq$5et)n>0}cYH4Xz)1p@;sL!-?}EcciIZdV6h diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index c90e71a2714..8f7bdb16c66 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" @@ -20,130 +20,123 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Ne povas trovi fontan dosierujon (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -151,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -795,12 +788,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -918,7 +911,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1102,7 +1095,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1879,7 +1872,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroj" @@ -1888,12 +1881,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1906,7 +1899,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcio" @@ -1984,7 +1977,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klaso" @@ -2001,7 +1994,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2016,7 +2009,7 @@ msgstr "%s() (klaso)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2030,20 +2023,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2057,7 +2050,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2074,7 +2067,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "escepto" @@ -2086,92 +2079,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2839,7 +2832,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2891,44 +2884,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3544,12 +3537,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3606,27 +3599,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3640,16 +3633,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index b1badd1810a54ce7cc9ffb3fc4e8bd385e9da3c6..84a1feba7ad5dc845efdbec6b9d88e4dd0a84057 100644 GIT binary patch delta 30 lcmX@t$#kxhX+xS1lcCY%3?DTPLn8$P11m$r&C`4=EC8X{33C7d delta 30 lcmX@t$#kxhX+xS1lY!~v3?DTP15*V911m$L&C`4=EC8Y!33vbi diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 57bc1fd1234..35494b10345 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" @@ -22,130 +22,123 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Lähtekataloogi (%s) pole võimalik leida" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "Väljundkataloog (%s) ei ole kataloog" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Lähtekataloog ja sihtkataloog ei tohi olla identsed" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s käitamine" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võimalik käesoleva versiooniga ehitada." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "väljundkataloogi loomine" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "valmis" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "serialiseeritud keskkonna laadimine" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -153,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -166,12 +159,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -797,12 +790,12 @@ msgstr "Otsi vigu ülalolevast väljundist või failist %(outdir)s/output.txt" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -920,7 +913,7 @@ msgstr "Viga ehitamise infofaili lugemisel: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" @@ -1104,7 +1097,7 @@ msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Indeks" @@ -1881,7 +1874,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameetrid" @@ -1890,12 +1883,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Tagastab" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tagastustüüp" @@ -1908,7 +1901,7 @@ msgid "variable" msgstr "muutuja" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funktsioon" @@ -1986,7 +1979,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klass" @@ -2003,7 +1996,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" @@ -2018,7 +2011,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" @@ -2032,20 +2025,20 @@ msgstr "Argumendid" msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "moodul" @@ -2059,7 +2052,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "võrrandil %s on topeltsilt, teine instants on %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Vigane math_eqref_format: %r" @@ -2076,7 +2069,7 @@ msgstr "operaator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "erind" @@ -2088,92 +2081,92 @@ msgstr "lause" msgid "built-in function" msgstr "sisseehitatud funktsioon" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Muutujad" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (iganenud)" @@ -2841,7 +2834,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,44 +2886,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3546,12 +3539,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3608,27 +3601,27 @@ msgstr ":maxdepth: on liiga suur ja seda eiratakse." msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Joonealused märkused" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3642,16 +3635,16 @@ msgstr "[pilt: %s]" msgid "[image]" msgstr "[pilt]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 2ec0bddfe71befd1ed92263279598b1267386110..2dbec3364fa43515308bc625219db85d6fe0d4c4 100644 GIT binary patch delta 28 kcmaDL_CRdI88#+Eqsiyk)Hn={6buZk3=KE`VM}2F0FX@y1poj5 delta 28 kcmaDL_CRdI88#*Z)5+)9)Hn=G6$}il42?GbVM}2F0FaLf3IG5A diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index a421c530070..f121a26e4e6 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Sisällysluettelo" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2008,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "moduuli" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2085,92 +2078,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (poistettu)" @@ -2838,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2890,44 +2883,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3543,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3605,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3639,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index e59ca647c34e996f0e6ac0f124c51a524dd8f79d..4942ba0ab3f1a6dbbb8aecdeda78eebb173631b1 100644 GIT binary patch delta 13 UcmZo*X<(VKVPXg0#(hqV03+oEA^-pY delta 19 acmZo*X<(VKfy2O5!N9=E&}ich4@LktJq3jT diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 6a7e07a5081..60b3323d80b 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 4943376adef1051133e76bf254ae1219338aaab9..7c9bb18907b4f753c10309e18cdadf92dea405df 100644 GIT binary patch delta 28 kcmZ3YzC?Y)5iTY}qshm()Hn={6buZk3=KDb;o86f0EYPp^8f$< delta 28 kcmZ3YzC?Y)5iTYJ)5*uU)Hn=G6$}il42?E_;o86f0EasW_y7O^ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index cc57ad55e0b..5eb26a3dc5d 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" @@ -19,130 +19,123 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -794,12 +787,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -917,7 +910,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1101,7 +1094,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "אינדקס" @@ -1878,7 +1871,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "פרמטרים" @@ -1887,12 +1880,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1905,7 +1898,7 @@ msgid "variable" msgstr "משתנה" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "פונקציה" @@ -1983,7 +1976,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "מחלקה" @@ -2000,7 +1993,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2015,7 +2008,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2029,20 +2022,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "מודול" @@ -2056,7 +2049,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2073,7 +2066,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2085,92 +2078,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "משתנים" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2838,7 +2831,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2890,44 +2883,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3543,12 +3536,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3605,27 +3598,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "הערות שוליים" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3639,16 +3632,16 @@ msgstr "" msgid "[image]" msgstr "[תמונה]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 51cb0e70ba179cfb4b1e35da9c81c76bd376b0ad..639f52c0332c9dcc78a60300e4c05af626356346 100644 GIT binary patch delta 13 Vcmey*{GWNkhKU_~8}~Uf0st?y1|0wZ delta 19 acmey*{GWNk1`Y#L1p@;sL!*s5+!+B#^#*_d diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 158790c20e9..e59ae861baa 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 00ea0a0288818c93e04ea310e621f53bc1d7caaf..4c11a965a52552e00d7f73c2c1b2b0821f3239a9 100644 GIT binary patch delta 23 fcmeCV%iMF9dBdqT4nrda0|P5V!_Al4cBKOVbX5tA delta 23 fcmeCV%iMF9dBdqT4g*sK0|P5Vqs^DvcBKOVbaDxg diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index cc6b6e05f4c..470d49f6274 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 7d1e6d23a6c5ff3b2c684223823862388cfab584..b5c2aed5c299f7789d4bff203cddd4f07df9f309 100644 GIT binary patch delta 16 YcmX@hf0lm(Bg^EQ%zT^qS@tml05i`8asU7T delta 21 ccmX@hf0lm(BMXOtse*xlm7&pQPL?Cg075JUe*gdg diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 6d06c8cc5d3..af2fe699975 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 0f6d3a8fb561ed3aa68d58ca387f4b8973b8097c..e99be27f3061d2d20f9f1b149263d69230f5a8f0 100644 GIT binary patch delta 16 XcmX?TdeC%(z2IbVLB7qtf+d^)G@b=S delta 21 ccmX?TdeC%(yyse*xlm7&pQcfl%7081nW1poj5 diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index befed8a9674..5b6ac2bcdb5 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 61fc467f56bdb0619a019f5167918b913211cf29..9b7933f6b30736c6ed2d13d930d7cc6079778c6d 100644 GIT binary patch delta 16 YcmbQ~Hq&jxJAui^1o$@p5s(!E06@wH(f|Me delta 21 ccmbQ~Hq&jxI{^*@Qw0M9D?_8r-vpF}090QF\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 69c8bb9b454b4d8e0cfdca2f6addc6e2dabadf1d..00bd13c86d2537d41a4b30d4abc228779ab825cf 100644 GIT binary patch delta 12195 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 delta 12493 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\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -24,130 +24,123 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "Não foi possível encontrar o diretório de origem (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "O diretório de saída (%s) não é um diretório" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "Diretório de origem e o diretório de destino não podem ser idênticos" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "Executando Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "Por motivo de segurança, o modo paralelo está desabilitado no macOS e python3.8 e acima. Para mais detalhes, leia https://github.com/sphinx-doc/sphinx/issues/6803" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser compilado com esta versão." -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "criando o diretório de saída" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "enquanto definia a extensão %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocável do Python. Modifique sua definição para torná-la uma função que pode ser chamada. Isso é necessário para o conf.py se comportar como uma extensão do Sphinx." -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "feito" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "não disponível para mensagens internas" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "carregando ambiente com pickle" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "falha: %s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "Nenhum compilador selecionado, usando padrão: html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "bem-sucedida" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "finalizada com problemas" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "compilação %s, %s aviso. (com avisos tratados como erros)." -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "compilação %s, %s avisos (com avisos tratados como erros)." -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "compilação %s, %s aviso." -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "compilação %s, %s avisos." -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "compilação %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "classe de nodo %r já está registrada, seus visitantes serão sobrescritos" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "diretiva %r já está registrada, ela será sobrescrita" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -155,12 +148,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -168,12 +161,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" @@ -799,12 +792,12 @@ msgstr "Procure por quaisquer erros na saída acima ou em %(outdir)s/output.txt" msgid "broken link: %s (%s)" msgstr "link quebrado: %s (%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "Âncora “%s” não encontrada" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "Falha ao compilar regex em linkcheck_allowed_redirects: %r %s" @@ -922,7 +915,7 @@ msgstr "Falha ao ler o arquivo de informações de compilação: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" @@ -1106,7 +1099,7 @@ msgstr "o valor da configuração “latex_documents” faz referência a um doc #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Índice" @@ -1883,7 +1876,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" @@ -1892,12 +1885,12 @@ msgid "Return values" msgstr "Valores de retorno" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo de retorno" @@ -1910,7 +1903,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "função" @@ -1988,7 +1981,7 @@ msgid "Throws" msgstr "Lança" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" @@ -2005,7 +1998,7 @@ msgstr "parâmetro de modelo" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -2020,7 +2013,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2034,20 +2027,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "módulo" @@ -2061,7 +2054,7 @@ msgstr "descrição duplicada de %s de %s, outro %s em %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "rótulo duplicado da equação %s, outra instância em %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format inválido: %r" @@ -2078,7 +2071,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "exceção" @@ -2090,92 +2083,92 @@ msgstr "comando" msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "propriedade" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noindex: para um deles" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "mais de um alvo localizado para referência cruzada %r: %s" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2843,7 +2836,7 @@ msgstr "assinatura inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erro ao formatar argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "faltando atributo %s no objeto %s" @@ -2895,44 +2888,44 @@ msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" -#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Falha ao obter uma assinatura de construtor para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "apelido de %s" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "apelido de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3548,12 +3541,12 @@ msgid "" "it directly: %s" msgstr "Formato de data inválido. Envolva a string com aspas simples se desejar emiti-la diretamente: %s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contém referência ao arquivo inexistente %r" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" @@ -3610,27 +3603,27 @@ msgstr ":maxdepth: grande demais, ignorado." msgid "document title is not a single Text node" msgstr "título do documento não é um nó único em Text" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "nó de título encontrado não na section, topic, table, admonition ou sidebar" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "tabularcolumns e opção :widths: foram fornecidas. :widths: foi ignorada." -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "a unidade de dimensão %s é inválida. Ignorada." -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "tipo desconhecido de entrada de índice %s encontrado" @@ -3644,16 +3637,16 @@ msgstr "[imagem: %s]" msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "legenda não dentro de uma imagem." -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nó não implementado: %r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "tipo de nó desconhecido: %r" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 1c480e1a03f53b3808375bd4c934de1859e3b196..7309466c6940c8659f6017ea5724ba159d4b6e9e 100644 GIT binary patch delta 16 XcmbQ^Fvnp-yYS?AVZO~%h1+=mI7J2o delta 21 ccmbQ^Fvnp-yD*1=se*xlm7&q*e&Jpo08Hx!djJ3c diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index e1a461f945c..b2f04d9b673 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 3918e869bfd7791a73cbe43b8524e9722cd5fd19..831c0545caf3a60bb8bf56007f7af4d79ea8005a 100644 GIT binary patch delta 16 XcmX@)cF1i*hUjDmQNGP(qGxykJ4*&j delta 21 ccmX@)cF1i*hA4-Dse*xlm7&q*0?|vn08#=5-v9sr diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index ee35fc89609..abf80c1afc6 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index fcafe3543787f08d4549d31efc601d608470e84e..0bc6719a906fb866bff1252cc09002300efb4d47 100644 GIT binary patch delta 18 ZcmX@s#CWWUaYLf~WJ`Iz&H3`z6#+(@2K4{{ delta 23 ecmX@s#CWWUaYLd!hk>brfq|8w(dJC~yNUo`-3NvM diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index eea61065d30..8846548d8e7 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 52ceca38ad33fa3fc7fe0f5120daa4980a8bd9be..d08f9f5971a123b7c8829669d6bce5e5c6c718f5 100644 GIT binary patch delta 18 acmX>yi{;2HmJLc%C;ytlx7lE-NCf~>@d#f4 delta 23 fcmX>yi{;2HmJLc%ISfn{3=FIcjW%mdm8t*$W(5bj diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 62e7d7ff38d..87898e12feb 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 4410363e2a32259fd7bcd9cda313d7392691955c..62f71c76e3f546b02cb0add118e2a6e770a37497 100644 GIT binary patch delta 16 XcmeyM^+9VxJnv+4UcSw_yv!T`I++D- delta 21 ccmeyM^+9VxJTHfVse*xlm7&q*bY4yl08%do6951J diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 269a73e9537..7f5871760f3 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 677dbece380..63aee654002 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-19 00:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1875,75 +1875,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1972,36 +1972,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 0ba41d10aedb4ef0b1296e70a24f5757897975da..f876b5b913581df62569e78f0fbb56a9d2818d2f 100644 GIT binary patch delta 16 YcmX@$dBAhSSE0#gh4?lz3-1*K07JV5;Q#;t delta 21 dcmX@$dBAhSS0N4qQw0M9D?_8re}xVU0svgt2kHO- diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 49e0ebed501..185c8e65469 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index fbc2403304868a1f214b04bdb965b89b774f81c9..17c23e2bc20b054729533e7bd1fd6e56a46c4457 100644 GIT binary patch delta 13 VcmX@Za)xEXhKU_~8~61w0st$W1_l5C delta 19 bcmX@Za)xEX1`Y#L1p@;sL!*s5rZ55kLWKrt diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 970ab3c96e8..e144df6d19a 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index cb2ade2e09abd42ac233a643f519af399b2e7032..64a9e2991947d7d4f3abaa8dcd81a3ed5362a0a8 100644 GIT binary patch delta 28 kcmdmFy2*6IPXQ)FqshMo)Hn={6buZk3=KDH3U+b=0FsRew*UYD delta 28 kcmdmFy2*6IPXQ(a)5*UD)Hn=G6$}il42?Ex3U+b=0FuuLyZ`_I diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 487cb808486..c6a638948b6 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/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-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "Index" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrar" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returnerar" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "Returtyp" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funktion" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "Kastar" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "klass" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -2014,7 +2007,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2028,20 +2021,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "modul" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "undantag" @@ -2084,92 +2077,92 @@ msgstr "uttryck" msgid "built-in function" msgstr "inbyggda funktioner" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2837,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2889,44 +2882,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3542,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3604,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3638,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 7f1dfb43383252fad59b620a615552f1c97163e5..bc604e46f40e768521184cd728f21e507a4ca259 100644 GIT binary patch delta 13 Vcmey)@||VEy@}iSHooa*1OPIv2IBw# delta 19 bcmey)@||VEJq`m?1p@;sL!*t)CNcs5OPL24 diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index be00762c827..5658aad8347 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 158c627060d479ee41121ac1fa4fea4e008c302a..071344681208d191a2a57f1b25d2cdd37ce08546 100644 GIT binary patch delta 13 Vcmeyw{E2zOhKU_~8~2$o0st;!1@-^{ delta 19 acmeyw{E2zO1`Y#L1p@;sL!*s5tQY}D2L@RH diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index e88210d3554..b8224396d5c 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 5777c796fb7d7e30a3457cd237faabc6d76dd214..0b1b7ef95781f18e2261fd142dc70a7a902b1339 100644 GIT binary patch delta 16 XcmeA-?Kj;Z#yj~P58q}L-fUg~GOh(v delta 21 ccmeA-?Kj;Z#>-(~s$gJXWoWcnj<=8(06)qFLI3~& diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 5f52bb1e714..ad3d4d095e6 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 2e740153ffa79f36bcfe189927239ff3335c4daa..68c024d621d48e3144744850ddf22cf9427c6e9b 100644 GIT binary patch delta 13 Vcmeys{DFDGhKU_~8}}J80st;A1@Hg> delta 19 acmeys{DFDG1`Y#L1p@;sL!*s5EEoYsy9QGL diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index e8bd80790ef..a230f1a7982 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index a02e19e97277f13255de908fa32592ba3986e26a..97d300cc1ab72c30fbcc900dc5f459d6ea5861c3 100644 GIT binary patch delta 13 Vcmeys{DFDGhKU_~8}}J80st;A1@Hg> delta 19 acmeys{DFDG1`Y#L1p@;sL!*s5EEoYsy9QGL diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index d4c17aa8dd0..64a4cb8f2c8 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index bd4d39d73508802f51dd17c5c3d2f8ca8edd0984..e323dec432a334fa782849f6bc27fd4cbe28b302 100644 GIT binary patch delta 30 mcmezPp84Z@<_)TonGB64t4~(rFf>vyFt9Q-+#EW2P6`0P=?f_U delta 30 mcmezPp84Z@<_)TonG8%Pt4~(rFfdgxFt9Q-+8jE0P6`0QD+?|F diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 0a4af63b983..4fbb63273ed 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,8 +22,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-05 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -33,130 +33,123 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "无法找到源码目录 (%s)" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "源文件目录和目标目录不能是同一目录" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "正在运行 Sphinx v%s" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "该项目需要 Sphinx v%s 及以上版本,使用现有版本不能构建文档。" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "创建输出目录" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "同时设置扩展名 %s:" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对象。请把其定义改为一个可调用的函数。Sphinx 扩展的 conf.py 必须这样配置。" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "正在加载翻译 [%s]... " -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "完成" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "没有内置信息的翻译" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "加载 pickled环境" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "失败:%s" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "未选择构建程序,默认使用:html" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "完成但存在问题" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "构建 %s,%s 警告(将警告视为错误)。" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "构建 %s, %s 警告。" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "构建 %s,%s 警告。" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "构建 %s." -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "节点类 %r 已注册,其访问者将被覆盖" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "指令 %r 已注册,将被覆盖" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "角色 %r 已注册,将被覆盖" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -164,12 +157,12 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "扩展 %s 不是并行读取安全的" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -177,12 +170,12 @@ msgid "" "explicit" msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "扩展 %s 不是并行写入安全的" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "执行顺序 %s" @@ -808,12 +801,12 @@ msgstr "在上述输出或 %(outdir)s/output.txt 中检查错误" msgid "broken link: %s (%s)" msgstr "损坏的链接:%s(%s)" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "锚点“%s”未找到" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -931,7 +924,7 @@ msgstr "读取构建信息文件失败:%r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" @@ -1115,7 +1108,7 @@ msgstr "配置项“latex_documents”引用了未知文档 %s" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "索引" @@ -1892,7 +1885,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "参数" @@ -1901,12 +1894,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "返回" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "返回类型" @@ -1919,7 +1912,7 @@ msgid "variable" msgstr "变量" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "函数" @@ -1997,7 +1990,7 @@ msgid "Throws" msgstr "抛出" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "类" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" @@ -2029,7 +2022,7 @@ msgstr "%s() (类)" msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" @@ -2043,20 +2036,20 @@ msgstr "参数" msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "属性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "模块" @@ -2070,7 +2063,7 @@ msgstr "对%s重复的描述 %s,其它的%s出现在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重复的公式标签 %s,另一实例出现在 %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "无效的 math_eqref_format:%r" @@ -2087,7 +2080,7 @@ msgstr "运算符" msgid "object" msgstr "对象" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "例外" @@ -2099,92 +2092,92 @@ msgstr "语句" msgid "built-in function" msgstr "內置函数" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "变量" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "重复的对象描述%s ,另一实例出现在使用 noindex 中:对它们其中的一个 %s" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr " (已移除)" @@ -2852,7 +2845,7 @@ msgstr "无效的 auto%s 签名(%r)" msgid "error while formatting arguments for %s: %s" msgstr "格式化 %s 参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "属性 %s 不存在,在对象 %s 上" @@ -2904,44 +2897,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3557,12 +3550,12 @@ msgid "" "it directly: %s" msgstr "无效的日期格式。如果你想直接输出日期字符串,请用单引号:%s" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "目录树引用的文件 %r 不存在" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only 指令表达式求值时抛出异常:%s" @@ -3619,27 +3612,27 @@ msgstr "过大的 :mathdepth:,已忽略。" msgid "document title is not a single Text node" msgstr "文档标题不是一个单纯文本节点" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "在节、话题、表格、警示或边栏以外的位置发现标题节点" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "脚注" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "给出了表格列和 :width:选项。:宽度:被忽略。" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "无效的量纲单位 %s,已忽略。" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "发现未知的索引条目类型 %s" @@ -3653,16 +3646,16 @@ msgstr "[图片: %s]" msgid "[image]" msgstr "[图片]" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "在图示之外发现了图示标题。" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "未实现的节点类型:%r" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "未知节点类型:%r" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index 25e016ca7a9ee34a446c56b5d1b6a3ea075eedfb..ae30b37e7ea3aa6b76e5c34eaafe20592b32dd18 100644 GIT binary patch delta 13 Vcmeyz{EvCUhKU_~8}~Ud0st?Y1{weW delta 19 acmeyz{EvCU1`Y#L1p@;sL!*s5+!z5!&jx(} diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 3cac25bd642..fa89e5eb5b4 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index f630ad67e8759ad91cf5760f3aad433bcb50b641..bc882f98b71c5a6770a9e16147adf9d3701465f1 100644 GIT binary patch delta 25 gcmeBW>1CPF!DMJOu}h7^&`80+z{=2Y1CPF!DL`Mu}h7^z*ND&z{=2Q\n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" @@ -18,130 +18,123 @@ msgstr "" "Language: zh_TW.Big5\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:157 +#: sphinx/application.py:156 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:161 +#: sphinx/application.py:160 #, python-format msgid "Output directory (%s) is not a directory" msgstr "" -#: sphinx/application.py:165 +#: sphinx/application.py:164 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:196 +#: sphinx/application.py:195 #, python-format msgid "Running Sphinx v%s" msgstr "" -#: sphinx/application.py:200 -msgid "" -"For security reasons, parallel mode is disabled on macOS and python3.8 and " -"above. For more details, please read https://github.com/sphinx-" -"doc/sphinx/issues/6803" -msgstr "" - -#: sphinx/application.py:228 +#: sphinx/application.py:221 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." msgstr "" -#: sphinx/application.py:243 +#: sphinx/application.py:236 msgid "making output directory" msgstr "" -#: sphinx/application.py:248 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:426 #, python-format msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:254 +#: sphinx/application.py:247 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "" -#: sphinx/application.py:279 +#: sphinx/application.py:272 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:297 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:539 msgid "done" msgstr "" -#: sphinx/application.py:299 +#: sphinx/application.py:292 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:308 +#: sphinx/application.py:301 msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:313 +#: sphinx/application.py:306 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:321 +#: sphinx/application.py:314 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:342 msgid "succeeded" msgstr "" -#: sphinx/application.py:350 +#: sphinx/application.py:343 msgid "finished with problems" msgstr "" -#: sphinx/application.py:354 +#: sphinx/application.py:347 #, python-format msgid "build %s, %s warning (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:356 +#: sphinx/application.py:349 #, python-format msgid "build %s, %s warnings (with warnings treated as errors)." msgstr "" -#: sphinx/application.py:359 +#: sphinx/application.py:352 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:361 +#: sphinx/application.py:354 #, python-format msgid "build %s, %s warnings." msgstr "" -#: sphinx/application.py:365 +#: sphinx/application.py:358 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:595 +#: sphinx/application.py:588 #, python-format msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:673 +#: sphinx/application.py:666 #, python-format msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:694 sphinx/application.py:715 +#: sphinx/application.py:687 sphinx/application.py:708 #, python-format msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1239 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1243 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1253 +#: sphinx/application.py:1246 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1257 +#: sphinx/application.py:1250 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1265 sphinx/application.py:1269 +#: sphinx/application.py:1258 sphinx/application.py:1262 #, python-format msgid "doing serial %s" msgstr "" @@ -793,12 +786,12 @@ msgstr "" msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:454 +#: sphinx/builders/linkcheck.py:456 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:690 +#: sphinx/builders/linkcheck.py:701 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -916,7 +909,7 @@ msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 -#: sphinx/writers/texinfo.py:233 +#: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" msgstr "" @@ -1100,7 +1093,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34 #: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147 -#: sphinx/writers/texinfo.py:498 +#: sphinx/writers/texinfo.py:499 msgid "Index" msgstr "" @@ -1877,7 +1870,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 -#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1886,12 +1879,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:446 +#: sphinx/domains/python.py:460 msgid "Return type" msgstr "" @@ -1904,7 +1897,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" @@ -1982,7 +1975,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1192 +#: sphinx/domains/python.py:1206 msgid "class" msgstr "" @@ -1999,7 +1992,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2014,7 +2007,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2028,20 +2021,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1199 +#: sphinx/domains/python.py:1213 msgid "module" msgstr "" @@ -2055,7 +2048,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2072,7 +2065,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 msgid "exception" msgstr "" @@ -2084,92 +2077,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:437 +#: sphinx/domains/python.py:451 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:441 +#: sphinx/domains/python.py:455 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:674 sphinx/domains/python.py:818 +#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:734 sphinx/domains/python.py:910 -#: sphinx/domains/python.py:961 +#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 +#: sphinx/domains/python.py:975 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:736 +#: sphinx/domains/python.py:750 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:761 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:762 +#: sphinx/domains/python.py:776 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:823 +#: sphinx/domains/python.py:837 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:825 sphinx/domains/python.py:965 +#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:827 +#: sphinx/domains/python.py:841 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1119 +#: sphinx/domains/python.py:1133 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1120 +#: sphinx/domains/python.py:1134 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1169 +#: sphinx/domains/python.py:1183 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1195 +#: sphinx/domains/python.py:1209 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1196 +#: sphinx/domains/python.py:1210 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1198 +#: sphinx/domains/python.py:1212 msgid "property" msgstr "" -#: sphinx/domains/python.py:1256 +#: sphinx/domains/python.py:1270 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1376 +#: sphinx/domains/python.py:1390 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1430 +#: sphinx/domains/python.py:1444 msgid " (deprecated)" msgstr "" @@ -2837,7 +2830,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2889,44 +2882,44 @@ 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:2753 +#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 +#: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1569 +#: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1670 +#: sphinx/ext/autodoc/__init__.py:1680 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 -#: sphinx/ext/autodoc/__init__.py:1856 +#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 +#: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1898 +#: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226 +#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2357 +#: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2796 +#: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3542,12 +3535,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:424 +#: sphinx/util/nodes.py:429 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:610 +#: sphinx/util/nodes.py:615 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" @@ -3604,27 +3597,27 @@ msgstr "" msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622 +#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247 -#: sphinx/writers/texinfo.py:637 +#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247 +#: sphinx/writers/texinfo.py:641 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:907 +#: sphinx/writers/latex.py:905 msgid "" "both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1238 +#: sphinx/writers/latex.py:1236 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1551 +#: sphinx/writers/latex.py:1549 #, python-format msgid "unknown index entry type %s found" msgstr "" @@ -3638,16 +3631,16 @@ msgstr "" msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1181 +#: sphinx/writers/texinfo.py:1193 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1265 +#: sphinx/writers/texinfo.py:1281 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1269 +#: sphinx/writers/texinfo.py:1285 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 06bc18b580949013f9444b24f4cd18c66a03461a..ca8ecbff4d810af6a7a65820aee2be0c18a40ad9 100644 GIT binary patch delta 18 acmaEVjOqO`rVUpTC$CB5+x#f8*AW0?MhV6M delta 23 fcmaEVjOqO`rVUpTISfn{3=FIcjW*v&oa_hye)kEY diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index c1eb6ff87fd..0b5f252dd3f 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -16,7 +16,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-05 00:12+0000\n" +"PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" From a87d0359c01972c8a3eb01b7ff887399626efae3 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Dec 2021 12:41:04 +0900 Subject: [PATCH 098/192] Close #9961: html: Support nested HTML elements in other HTML builders --- CHANGES | 1 + sphinx/builders/html/transforms.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 9d57f8349ab..ebe3aba0759 100644 --- a/CHANGES +++ b/CHANGES @@ -22,6 +22,7 @@ Features added this behavior with the ``--respect-module-all`` switch. * #9800: extlinks: Emit warning if a hardcoded link is replaceable by an extlink, suggesting a replacement. +* #9961: html: Support nested HTML elements in other HTML builders * #9815: html theme: Wrap sidebar components in div to allow customizing their layout via CSS * #9899: py domain: Allows to specify cross-reference specifier (``.`` and diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index cb9af5f2895..338c87b7f99 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -36,7 +36,7 @@ class KeyboardTransform(SphinxPostTransform): x """ default_priority = 400 - builders = ('html',) + formats = ('html',) pattern = re.compile(r'(?<=.)(-|\+|\^|\s+)(?=.)') multiwords_keys = (('caps', 'lock'), ('page' 'down'), From e7e08d2a784d1e87aded58186bff776d6de42213 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 18 Dec 2021 15:22:10 +0900 Subject: [PATCH 099/192] Fix #9968: autodoc: ivars are not shown if __init__ has posonlyargs --- CHANGES | 2 ++ sphinx/pycode/parser.py | 4 ++++ tests/test_pycode.py | 15 +++++++++++++++ 3 files changed, 21 insertions(+) diff --git a/CHANGES b/CHANGES index 9d57f8349ab..309d9bff8dc 100644 --- a/CHANGES +++ b/CHANGES @@ -41,6 +41,8 @@ Bugs fixed * #9883: autodoc: doccomment for the alias to mocked object was ignored * #9908: autodoc: debug message is shown on building document using NewTypes with Python 3.10 +* #9968: autodoc: instance variables are not shown if __init__ method has + position-only-arguments * #9947: i18n: topic directive having a bullet list can't be translatable * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url diff --git a/sphinx/pycode/parser.py b/sphinx/pycode/parser.py index cad9a6e7176..6b566c4c496 100644 --- a/sphinx/pycode/parser.py +++ b/sphinx/pycode/parser.py @@ -312,6 +312,10 @@ def get_self(self) -> Optional[ast.arg]: """Returns the name of the first argument if in a function.""" if self.current_function and self.current_function.args.args: return self.current_function.args.args[0] + elif (self.current_function and + getattr(self.current_function.args, 'posonlyargs', None)): + # for py38+ + return self.current_function.args.posonlyargs[0] # type: ignore else: return None diff --git a/tests/test_pycode.py b/tests/test_pycode.py index bbcc42a52f2..e0e0fdb1125 100644 --- a/tests/test_pycode.py +++ b/tests/test_pycode.py @@ -191,3 +191,18 @@ def test_ModuleAnalyzer_find_attr_docs(): 'Qux': 15, 'Qux.attr1': 16, 'Qux.attr2': 17} + + +@pytest.mark.skipif(sys.version_info < (3, 8), + reason='posonlyargs are available since python3.8.') +def test_ModuleAnalyzer_find_attr_docs_for_posonlyargs_method(): + code = ('class Foo(object):\n' + ' def __init__(self, /):\n' + ' self.attr = None #: attribute comment\n') + analyzer = ModuleAnalyzer.for_string(code, 'module') + docs = analyzer.find_attr_docs() + assert set(docs) == {('Foo', 'attr')} + assert docs[('Foo', 'attr')] == ['attribute comment', ''] + assert analyzer.tagorder == {'Foo': 0, + 'Foo.__init__': 1, + 'Foo.attr': 2} From bbee8e16b732887fefb17d34afc0243fa6610ab9 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Dec 2021 17:39:23 +0900 Subject: [PATCH 100/192] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 9f4d12ae9bd..23acd1d014b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 4.3.3 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 4.3.2 (released Dec 19, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 8d90f733a81..83bbad8379b 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,8 +27,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.3.2' -__released__ = '4.3.2' # used when Sphinx builds its own docs +__version__ = '4.3.3+' +__released__ = '4.3.3' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -38,7 +38,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 3, 2, 'final', 0) +version_info = (4, 3, 3, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From 627d73a683c749a85019ead70f8f147e24b4a124 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Dec 2021 18:15:56 +0900 Subject: [PATCH 101/192] test: Remove debug print --- tests/test_domain_py.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index dbd594f8384..f6af3e9af4a 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -314,7 +314,6 @@ def test_parse_annotation(app): [desc_sig_punctuation, "]"])) doctree = _parse_annotation("Callable[[int, int], int]", app.env) - print(doctree) assert_node(doctree, ([pending_xref, "Callable"], [desc_sig_punctuation, "["], [desc_sig_punctuation, "["], From e3ee8b378a37958f48d97d74a5c264f1f02e153e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 21 Dec 2021 02:51:59 +0900 Subject: [PATCH 102/192] Close #9993: std domain: Allow to refer an inline target via ref role --- CHANGES | 2 ++ sphinx/domains/std.py | 8 +++++--- tests/test_domain_std.py | 9 +++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index d34034f8ca2..f18e78cd633 100644 --- a/CHANGES +++ b/CHANGES @@ -30,6 +30,8 @@ Features added checking in matched documents. * #9793: sphinx-build: Allow to use the parallel build feature in macOS on macOS and Python3.8+ +* #9993: std domain: Allow to refer an inline target (ex. ``_`target name```) + via :rst:role:`ref` role * #9391: texinfo: improve variable in ``samp`` role * #9578: texinfo: Add :confval:`texinfo_cross_references` to disable cross references for readability with standalone readers diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 7660f84c9b9..d08c65668e6 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -770,10 +770,11 @@ def process_doc(self, env: "BuildEnvironment", docname: str, document: nodes.doc sectname = clean_astext(title) elif node.tagname == 'rubric': sectname = clean_astext(node) + elif node.tagname == 'target' and len(node) > 0: + # inline target (ex: blah _`blah` blah) + sectname = clean_astext(node) elif self.is_enumerable_node(node): sectname = self.get_numfig_title(node) - if not sectname: - continue else: toctree = next(iter(node.traverse(addnodes.toctree)), None) if toctree and toctree.get('caption'): @@ -781,7 +782,8 @@ def process_doc(self, env: "BuildEnvironment", docname: str, document: nodes.doc else: # anonymous-only labels continue - self.labels[name] = docname, labelid, sectname + if sectname: + self.labels[name] = docname, labelid, sectname def add_program_option(self, program: str, name: str, docname: str, labelid: str) -> None: self.progoptions[program, name] = (docname, labelid) diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 011c82f6aba..c464ea00841 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -452,3 +452,12 @@ def test_labeled_rubric(app): domain = app.env.get_domain("std") assert 'label' in domain.labels assert domain.labels['label'] == ('index', 'label', 'blah blah blah') + + +def test_inline_target(app): + text = "blah _`inline target` blah\n" + restructuredtext.parse(app, text) + + domain = app.env.get_domain("std") + assert 'inline target' in domain.labels + assert domain.labels['inline target'] == ('index', 'inline-target', 'inline target') From 6c5c66bbb19cb2dcfdc25da97d4d839eec139db7 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Wed, 22 Dec 2021 18:13:19 +0000 Subject: [PATCH 103/192] Replace pkg_resources with importlib.metadata --- setup.py | 3 +-- sphinx/registry.py | 13 ++++++++----- sphinx/theming.py | 13 ++++++++----- 3 files changed, 17 insertions(+), 12 deletions(-) diff --git a/setup.py b/setup.py index 8245aacefac..31089da18cd 100644 --- a/setup.py +++ b/setup.py @@ -29,8 +29,8 @@ 'alabaster>=0.7,<0.8', 'imagesize', 'requests>=2.5.0', - 'setuptools', 'packaging', + "importlib-metadata>=4.4; python_version < '3.10'", ] extras_require = { @@ -47,7 +47,6 @@ 'mypy>=0.920', 'docutils-stubs', "types-typed-ast", - "types-pkg_resources", "types-requests", ], 'test': [ diff --git a/sphinx/registry.py b/sphinx/registry.py index 543e5802bb2..cc2db06e598 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -21,7 +21,10 @@ from docutils.parsers import Parser from docutils.parsers.rst import Directive from docutils.transforms import Transform -from pkg_resources import iter_entry_points +try: + from importlib_metadata import entry_points +except ImportError: + from importlib.metadata import entry_points from sphinx.builders import Builder from sphinx.config import Config @@ -143,14 +146,14 @@ def preload_builder(self, app: "Sphinx", name: str) -> None: return if name not in self.builders: - entry_points = iter_entry_points('sphinx.builders', name) + builder_eps = entry_points(group='sphinx.builders') try: - entry_point = next(entry_points) - except StopIteration as exc: + entry_point = builder_eps[name] + except KeyError as exc: raise SphinxError(__('Builder name %s not registered or available' ' through entry point') % name) from exc - self.load_extension(app, entry_point.module_name) + self.load_extension(app, entry_point.module) def create_builder(self, app: "Sphinx", name: str) -> Builder: if name not in self.builders: diff --git a/sphinx/theming.py b/sphinx/theming.py index f5004022d5e..763a657fb86 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -16,7 +16,10 @@ from typing import TYPE_CHECKING, Any, Dict, List from zipfile import ZipFile -import pkg_resources +try: # Python < 3.10 (backport) + from importlib_metadata import entry_points +except ImportError: + from importlib.metadata import entry_points from sphinx import package_dir from sphinx.errors import ThemeError @@ -201,12 +204,12 @@ def load_external_theme(self, name: str) -> None: Sphinx refers to ``sphinx_themes`` entry_points. """ # look up for new styled entry_points at first - entry_points = pkg_resources.iter_entry_points('sphinx.html_themes', name) + theme_eps = entry_points(group='sphinx.html_themes') try: - entry_point = next(entry_points) - self.app.registry.load_extension(self.app, entry_point.module_name) + entry_point = theme_eps[name] + self.app.registry.load_extension(self.app, entry_point.module) return - except StopIteration: + except KeyError: pass def find_themes(self, theme_path: str) -> Dict[str, str]: From e257533ea7c9ba15283e1c03bafe56371a56dffc Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Wed, 22 Dec 2021 18:18:22 +0000 Subject: [PATCH 104/192] Add comment about import options --- sphinx/registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/registry.py b/sphinx/registry.py index cc2db06e598..f6dc2771fbb 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -21,7 +21,7 @@ from docutils.parsers import Parser from docutils.parsers.rst import Directive from docutils.transforms import Transform -try: +try: # Python < 3.10 (backport) from importlib_metadata import entry_points except ImportError: from importlib.metadata import entry_points From 71b3e2c822143e1f9657bbd2c3c52180cdc851b4 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Wed, 22 Dec 2021 18:27:13 +0000 Subject: [PATCH 105/192] Run isort --- sphinx/registry.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sphinx/registry.py b/sphinx/registry.py index f6dc2771fbb..c8c6b8b5a5e 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -21,6 +21,7 @@ from docutils.parsers import Parser from docutils.parsers.rst import Directive from docutils.transforms import Transform + try: # Python < 3.10 (backport) from importlib_metadata import entry_points except ImportError: From 565152301fb2b771f52c40926c37ce6b1713d09a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 24 Dec 2021 00:15:11 +0900 Subject: [PATCH 106/192] Fix mypy violations (with mypy-0.930) --- setup.py | 2 +- sphinx/environment/__init__.py | 2 +- sphinx/util/inspect.py | 12 ++++++------ sphinx/writers/manpage.py | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 8245aacefac..44da14d094d 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ 'lint': [ 'flake8>=3.5.0', 'isort', - 'mypy>=0.920', + 'mypy>=0.930', 'docutils-stubs', "types-typed-ast", "types-pkg_resources", diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index 478db40e672..0b677cac44a 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -621,7 +621,7 @@ def traverse_toctree(parent: str, docname: str) -> Iterator[Tuple[str, str]]: def check_consistency(self) -> None: """Do consistency checks.""" - included = set().union(*self.included.values()) # type: ignore + included = set().union(*self.included.values()) for docname in sorted(self.all_docs): if docname not in self.files_to_rebuild: if docname == self.config.root_doc: diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 8a735b4808a..c67369e8935 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -134,7 +134,7 @@ def unwrap_all(obj: Any, *, stop: Callable = None) -> Any: elif ispartial(obj): obj = obj.func elif inspect.isroutine(obj) and hasattr(obj, '__wrapped__'): - obj = obj.__wrapped__ + obj = obj.__wrapped__ # type: ignore elif isclassmethod(obj): obj = obj.__func__ elif isstaticmethod(obj): @@ -692,7 +692,7 @@ def signature(subject: Callable, bound_method: bool = False, follow_wrapped: boo # # For example, this helps a function having a default value `inspect._empty`. # refs: https://github.com/sphinx-doc/sphinx/issues/7935 - return inspect.Signature(parameters, return_annotation=return_annotation, # type: ignore + return inspect.Signature(parameters, return_annotation=return_annotation, __validate_parameters__=False) @@ -820,14 +820,14 @@ def signature_from_ast(node: ast.FunctionDef, code: str = '') -> inspect.Signatu positionals = len(args.args) for _ in range(len(defaults), positionals): - defaults.insert(0, Parameter.empty) + defaults.insert(0, Parameter.empty) # type: ignore if hasattr(args, "posonlyargs"): for i, arg in enumerate(args.posonlyargs): # type: ignore if defaults[i] is Parameter.empty: default = Parameter.empty else: - default = DefaultValue(ast_unparse(defaults[i], code)) + default = DefaultValue(ast_unparse(defaults[i], code)) # type: ignore annotation = ast_unparse(arg.annotation, code) or Parameter.empty params.append(Parameter(arg.arg, Parameter.POSITIONAL_ONLY, @@ -837,7 +837,7 @@ def signature_from_ast(node: ast.FunctionDef, code: str = '') -> inspect.Signatu if defaults[i + posonlyargs] is Parameter.empty: default = Parameter.empty else: - default = DefaultValue(ast_unparse(defaults[i + posonlyargs], code)) + default = DefaultValue(ast_unparse(defaults[i + posonlyargs], code)) # type: ignore # NOQA annotation = ast_unparse(arg.annotation, code) or Parameter.empty params.append(Parameter(arg.arg, Parameter.POSITIONAL_OR_KEYWORD, @@ -849,7 +849,7 @@ def signature_from_ast(node: ast.FunctionDef, code: str = '') -> inspect.Signatu annotation=annotation)) for i, arg in enumerate(args.kwonlyargs): - default = ast_unparse(args.kw_defaults[i], code) or Parameter.empty + default = ast_unparse(args.kw_defaults[i], code) or Parameter.empty # type: ignore annotation = ast_unparse(arg.annotation, code) or Parameter.empty params.append(Parameter(arg.arg, Parameter.KEYWORD_ONLY, default=default, annotation=annotation)) diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index da5f4c24123..bcf4e98b352 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -107,7 +107,7 @@ def __init__(self, document: nodes.document, builder: Builder) -> None: # Overwrite admonition label translations with our own for label, translation in admonitionlabels.items(): - self.language.labels[label] = self.deunicode(translation) # type: ignore + self.language.labels[label] = self.deunicode(translation) # overwritten -- added quotes around all .TH arguments def header(self) -> str: From 6c6fed5e55117a9da8a37bdeffcb5a14d040c62e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 24 Dec 2021 01:48:22 +0900 Subject: [PATCH 107/192] Fix #10009: autodoc: Crashes if subject raises an error on getdoc() --- CHANGES | 1 + sphinx/ext/autodoc/__init__.py | 174 +++++++++++++++++---------------- 2 files changed, 89 insertions(+), 86 deletions(-) diff --git a/CHANGES b/CHANGES index 77a901e853c..03cd39ba7a4 100644 --- a/CHANGES +++ b/CHANGES @@ -46,6 +46,7 @@ Bugs fixed with Python 3.10 * #9968: autodoc: instance variables are not shown if __init__ method has position-only-arguments +* #10009: autodoc: Crashes if target object raises an error on getting docstring * #9947: i18n: topic directive having a bullet list can't be translatable * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 5ada06a6a50..16f75e1d39e 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -711,109 +711,111 @@ def is_filtered_inherited_member(name: str, obj: Any) -> bool: # process members and determine which to skip for obj in members: - membername, member = obj - # if isattr is True, the member is documented as an attribute - if member is INSTANCEATTR: - isattr = True - elif (namespace, membername) in attr_docs: - isattr = True - else: - isattr = False - - doc = getdoc(member, self.get_attr, self.config.autodoc_inherit_docstrings, - self.object, membername) - if not isinstance(doc, str): - # Ignore non-string __doc__ - doc = None - - # if the member __doc__ is the same as self's __doc__, it's just - # inherited and therefore not the member's doc - cls = self.get_attr(member, '__class__', None) - if cls: - cls_doc = self.get_attr(cls, '__doc__', None) - if cls_doc == doc: - doc = None - - if isinstance(obj, ObjectMember) and obj.docstring: - # hack for ClassDocumenter to inject docstring via ObjectMember - doc = obj.docstring + try: + membername, member = obj + # if isattr is True, the member is documented as an attribute + if member is INSTANCEATTR: + isattr = True + elif (namespace, membername) in attr_docs: + isattr = True + else: + isattr = False - doc, metadata = separate_metadata(doc) - has_doc = bool(doc) + doc = getdoc(member, self.get_attr, self.config.autodoc_inherit_docstrings, + self.object, membername) + if not isinstance(doc, str): + # Ignore non-string __doc__ + doc = None - if 'private' in metadata: - # consider a member private if docstring has "private" metadata - isprivate = True - elif 'public' in metadata: - # consider a member public if docstring has "public" metadata - isprivate = False - else: - isprivate = membername.startswith('_') + # if the member __doc__ is the same as self's __doc__, it's just + # inherited and therefore not the member's doc + cls = self.get_attr(member, '__class__', None) + if cls: + cls_doc = self.get_attr(cls, '__doc__', None) + if cls_doc == doc: + doc = None + + if isinstance(obj, ObjectMember) and obj.docstring: + # hack for ClassDocumenter to inject docstring via ObjectMember + doc = obj.docstring + + doc, metadata = separate_metadata(doc) + has_doc = bool(doc) + + if 'private' in metadata: + # consider a member private if docstring has "private" metadata + isprivate = True + elif 'public' in metadata: + # consider a member public if docstring has "public" metadata + isprivate = False + else: + isprivate = membername.startswith('_') - keep = False - if ismock(member) and (namespace, membername) not in attr_docs: - # mocked module or object - pass - elif self.options.exclude_members and membername in self.options.exclude_members: - # remove members given by exclude-members keep = False - elif want_all and special_member_re.match(membername): - # special __methods__ - if self.options.special_members and membername in self.options.special_members: - if membername == '__doc__': - keep = False - elif is_filtered_inherited_member(membername, obj): - keep = False - else: - keep = has_doc or self.options.undoc_members - else: + if ismock(member) and (namespace, membername) not in attr_docs: + # mocked module or object + pass + elif (self.options.exclude_members and + membername in self.options.exclude_members): + # remove members given by exclude-members keep = False - elif (namespace, membername) in attr_docs: - if want_all and isprivate: - if self.options.private_members is None: + elif want_all and special_member_re.match(membername): + # special __methods__ + if (self.options.special_members and + membername in self.options.special_members): + if membername == '__doc__': + keep = False + elif is_filtered_inherited_member(membername, obj): + keep = False + else: + keep = has_doc or self.options.undoc_members + else: keep = False + elif (namespace, membername) in attr_docs: + if want_all and isprivate: + if self.options.private_members is None: + keep = False + else: + keep = membername in self.options.private_members + else: + # keep documented attributes + keep = True + elif want_all and isprivate: + if has_doc or self.options.undoc_members: + if self.options.private_members is None: + keep = False + elif is_filtered_inherited_member(membername, obj): + keep = False + else: + keep = membername in self.options.private_members else: - keep = membername in self.options.private_members - else: - # keep documented attributes - keep = True - elif want_all and isprivate: - if has_doc or self.options.undoc_members: - if self.options.private_members is None: keep = False - elif is_filtered_inherited_member(membername, obj): + else: + if (self.options.members is ALL and + is_filtered_inherited_member(membername, obj)): keep = False else: - keep = membername in self.options.private_members - else: - keep = False - else: - if (self.options.members is ALL and - is_filtered_inherited_member(membername, obj)): - keep = False - else: - # ignore undocumented members if :undoc-members: is not given - keep = has_doc or self.options.undoc_members + # ignore undocumented members if :undoc-members: is not given + keep = has_doc or self.options.undoc_members - if isinstance(obj, ObjectMember) and obj.skipped: - # forcedly skipped member (ex. a module attribute not defined in __all__) - keep = False + if isinstance(obj, ObjectMember) and obj.skipped: + # forcedly skipped member (ex. a module attribute not defined in __all__) + keep = False - # give the user a chance to decide whether this member - # should be skipped - if self.env.app: - # let extensions preprocess docstrings - try: + # give the user a chance to decide whether this member + # should be skipped + if self.env.app: + # let extensions preprocess docstrings skip_user = self.env.app.emit_firstresult( 'autodoc-skip-member', self.objtype, membername, member, not keep, self.options) if skip_user is not None: keep = not skip_user - except Exception as exc: - logger.warning(__('autodoc: failed to determine %r to be documented, ' - 'the following exception was raised:\n%s'), - member, exc, type='autodoc') - keep = False + except Exception as exc: + logger.warning(__('autodoc: failed to determine %r to be documented, ' + 'the following exception was raised:\n%s'), + member, exc, type='autodoc') + keep = False if keep: ret.append((membername, member, isattr)) From f2dc8a999a589bc7a9a85f6f0dd5691aabc17062 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 24 Dec 2021 01:54:30 +0900 Subject: [PATCH 108/192] Fix flake8 warnings --- sphinx/writers/manpage.py | 2 +- sphinx/writers/text.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index db8c1b1d3c5..a5d1e2b192e 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -11,7 +11,7 @@ from typing import Any, Dict, Iterable, cast from docutils import nodes -from docutils.nodes import Element, Node, TextElement +from docutils.nodes import Element, TextElement from docutils.writers.manpage import Translator as BaseTranslator from docutils.writers.manpage import Writer diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index a016f693f95..e7ccf30b8df 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -16,7 +16,7 @@ Union, cast) from docutils import nodes, writers -from docutils.nodes import Element, Node, Text +from docutils.nodes import Element, Text from docutils.utils import column_width from sphinx import addnodes From a87153c018758a49b7dd601545c044576564652c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 24 Dec 2021 10:14:19 +0900 Subject: [PATCH 109/192] autodoc: Rename autodoc_unqualified_typehints to autodoc_typehints_format (refs: #9931) --- CHANGES | 2 +- doc/usage/extensions/autodoc.rst | 11 ++++++++--- sphinx/ext/autodoc/__init__.py | 15 ++++++++------- tests/test_ext_autodoc_configs.py | 4 ++-- 4 files changed, 19 insertions(+), 13 deletions(-) diff --git a/CHANGES b/CHANGES index 77a901e853c..653223e0b22 100644 --- a/CHANGES +++ b/CHANGES @@ -13,7 +13,7 @@ Deprecated Features added -------------- -* #9075: autodoc: Add a config variable :confval:`autodoc_unqualified_typehints` +* #9075: autodoc: Add a config variable :confval:`autodoc_typehints_format` to suppress the leading module names of typehints of function signatures (ex. ``io.StringIO`` -> ``StringIO``) * #9831: Autosummary now documents only the members specified in a module's diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index d775ddee8e8..dfb08e688e7 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -662,10 +662,15 @@ There are also config values that you can set: .. __: https://mypy.readthedocs.io/en/latest/kinds_of_types.html#type-aliases .. versionadded:: 3.3 -.. confval:: autodoc_unqualified_typehints +.. confval:: autodoc_typehints_format - If True, the leading module names of typehints of function signatures are - removed (ex. ``io.StringIO`` -> ``StringIO``). Defaults to False. + This value controls the format of typehints. The setting takes the + following values: + + * ``'fully-qualified'`` -- Show the module name and its name of typehints + (default) + * ``'short'`` -- Suppress the leading module names of the typehints + (ex. ``io.StringIO`` -> ``StringIO``) .. versionadded:: 4.4 diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 5ada06a6a50..21e0a11cfe2 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1295,7 +1295,7 @@ def can_document_member(cls, member: Any, membername: str, isattr: bool, parent: def format_args(self, **kwargs: Any) -> str: if self.config.autodoc_typehints in ('none', 'description'): kwargs.setdefault('show_annotation', False) - if self.config.autodoc_unqualified_typehints: + if self.config.autodoc_typehints_format == "short": kwargs.setdefault('unqualified_typehints', True) try: @@ -1325,7 +1325,7 @@ def add_directive_header(self, sig: str) -> None: self.add_line(' :async:', sourcename) def format_signature(self, **kwargs: Any) -> str: - if self.config.autodoc_unqualified_typehints: + if self.config.autodoc_typehints_format == "short": kwargs.setdefault('unqualified_typehints', True) sigs = [] @@ -1566,7 +1566,7 @@ def get_user_defined_function_or_method(obj: Any, attr: str) -> Any: def format_args(self, **kwargs: Any) -> str: if self.config.autodoc_typehints in ('none', 'description'): kwargs.setdefault('show_annotation', False) - if self.config.autodoc_unqualified_typehints: + if self.config.autodoc_typehints_format == "short": kwargs.setdefault('unqualified_typehints', True) try: @@ -1589,7 +1589,7 @@ def format_signature(self, **kwargs: Any) -> str: # do not show signatures return '' - if self.config.autodoc_unqualified_typehints: + if self.config.autodoc_typehints_format == "short": kwargs.setdefault('unqualified_typehints', True) sig = super().format_signature() @@ -2120,7 +2120,7 @@ def import_object(self, raiseerror: bool = False) -> bool: def format_args(self, **kwargs: Any) -> str: if self.config.autodoc_typehints in ('none', 'description'): kwargs.setdefault('show_annotation', False) - if self.config.autodoc_unqualified_typehints: + if self.config.autodoc_typehints_format == "short": kwargs.setdefault('unqualified_typehints', True) try: @@ -2172,7 +2172,7 @@ def document_members(self, all_members: bool = False) -> None: pass def format_signature(self, **kwargs: Any) -> str: - if self.config.autodoc_unqualified_typehints: + if self.config.autodoc_typehints_format == "short": kwargs.setdefault('unqualified_typehints', True) sigs = [] @@ -2848,7 +2848,8 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('autodoc_typehints_description_target', 'all', True, ENUM('all', 'documented')) app.add_config_value('autodoc_type_aliases', {}, True) - app.add_config_value('autodoc_unqualified_typehints', False, 'env') + app.add_config_value('autodoc_typehints_format', "fully-qualified", 'env', + ENUM("fully-qualified", "short")) app.add_config_value('autodoc_warningiserror', True, True) app.add_config_value('autodoc_inherit_docstrings', True, True) app.add_event('autodoc-before-process-signature') diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index f3bcd6a97a1..3159e8a8ff9 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1143,8 +1143,8 @@ def test_autodoc_typehints_description_and_type_aliases(app): @pytest.mark.sphinx('html', testroot='ext-autodoc', - confoverrides={'autodoc_unqualified_typehints': True}) -def test_autodoc_unqualified_typehints(app): + confoverrides={'autodoc_typehints_format': "short"}) +def test_autodoc_typehints_format_short(app): if sys.version_info < (3, 7): Any = 'Any' else: From 49f576569c6e4a63e762707a7fdf6a6ec31de985 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 20 Dec 2021 01:52:50 +0900 Subject: [PATCH 110/192] Fix autodoc: Failed to parse Literal type in py36 and py37 --- sphinx/domains/python.py | 8 +++++++- tests/test_domain_py.py | 9 +++++++++ 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 5402ce37a8a..67b52c187e2 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -203,10 +203,16 @@ def unparse(node: ast.AST) -> List[Node]: return result else: if sys.version_info < (3, 8): - if isinstance(node, ast.Ellipsis): + if isinstance(node, ast.Bytes): + return [addnodes.desc_sig_literal_string('', repr(node.s))] + elif isinstance(node, ast.Ellipsis): return [addnodes.desc_sig_punctuation('', "...")] elif isinstance(node, ast.NameConstant): return [nodes.Text(node.value)] + elif isinstance(node, ast.Num): + return [addnodes.desc_sig_literal_string('', repr(node.n))] + elif isinstance(node, ast.Str): + return [addnodes.desc_sig_literal_string('', repr(node.s))] raise SyntaxError # unsupported syntax diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index f6af3e9af4a..eeb4f78a643 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -348,6 +348,15 @@ def test_parse_annotation(app): assert_node(doctree, ([pending_xref, "None"],)) assert_node(doctree[0], pending_xref, refdomain="py", reftype="obj", reftarget="None") + doctree = _parse_annotation("typing.Literal['a', 'b']", app.env) + assert_node(doctree, ([pending_xref, "typing.Literal"], + [desc_sig_punctuation, "["], + [desc_sig_literal_string, "'a'"], + [desc_sig_punctuation, ","], + desc_sig_space, + [desc_sig_literal_string, "'b'"], + [desc_sig_punctuation, "]"])) + def test_parse_annotation_suppress(app): doctree = _parse_annotation("~typing.Dict[str, str]", app.env) From 94cbce69daec2f12b131ea7463c0ab1bf8fdb03f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 20 Dec 2021 01:53:20 +0900 Subject: [PATCH 111/192] Fix #9194: autodoc: types in typing module are not hyperlinked This converts types in typing module to valid references when `autodoc_unqualified_typehints` option enabled. --- CHANGES | 1 + sphinx/domains/python.py | 3 ++- tests/test_domain_py.py | 4 +++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 77a901e853c..c363a75b204 100644 --- a/CHANGES +++ b/CHANGES @@ -46,6 +46,7 @@ Bugs fixed with Python 3.10 * #9968: autodoc: instance variables are not shown if __init__ method has position-only-arguments +* #9194: autodoc: types under the "typing" module are not hyperlinked * #9947: i18n: topic directive having a bullet list can't be translatable * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 67b52c187e2..55545f4d274 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -83,7 +83,8 @@ class ModuleEntry(NamedTuple): def type_to_xref(target: str, env: BuildEnvironment = None, suppress_prefix: bool = False ) -> addnodes.pending_xref: """Convert a type string to a cross reference node.""" - if target == 'None': + if target == 'None' or target.startswith('typing.'): + # typing module provides non-class types. Obj reference is good to refer them. reftype = 'obj' else: reftype = 'class' diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index eeb4f78a643..d986b62f334 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -348,6 +348,7 @@ def test_parse_annotation(app): assert_node(doctree, ([pending_xref, "None"],)) assert_node(doctree[0], pending_xref, refdomain="py", reftype="obj", reftarget="None") + # Literal type makes an object-reference (not a class reference) doctree = _parse_annotation("typing.Literal['a', 'b']", app.env) assert_node(doctree, ([pending_xref, "typing.Literal"], [desc_sig_punctuation, "["], @@ -356,6 +357,7 @@ def test_parse_annotation(app): desc_sig_space, [desc_sig_literal_string, "'b'"], [desc_sig_punctuation, "]"])) + assert_node(doctree[0], pending_xref, refdomain="py", reftype="obj", reftarget="typing.Literal") def test_parse_annotation_suppress(app): @@ -367,7 +369,7 @@ def test_parse_annotation_suppress(app): desc_sig_space, [pending_xref, "str"], [desc_sig_punctuation, "]"])) - assert_node(doctree[0], pending_xref, refdomain="py", reftype="class", reftarget="typing.Dict") + assert_node(doctree[0], pending_xref, refdomain="py", reftype="obj", reftarget="typing.Dict") @pytest.mark.skipif(sys.version_info < (3, 8), reason='python 3.8+ is required.') From 0a5783f75b7ecf1aaa27a9e1b2b2c8a573a2bfb5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 24 Dec 2021 10:21:11 +0900 Subject: [PATCH 112/192] py domain: Suppress the leading "typing." module from typehints To support creating hyperlinks to container types naturally, py domain should take fully-qualified typehints for them. But nobody wants to show "typing." module name on the signature. So this suppresses them automatically. --- sphinx/domains/python.py | 4 +++- tests/test_domain_py.py | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 55545f4d274..240db309b4e 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -105,6 +105,8 @@ def type_to_xref(target: str, env: BuildEnvironment = None, suppress_prefix: boo text = target.split('.')[-1] elif suppress_prefix: text = target.split('.')[-1] + elif target.startswith('typing.'): + text = target[7:] else: text = target @@ -1488,7 +1490,7 @@ def istyping(s: str) -> bool: return None elif node.get('reftype') in ('class', 'obj') and node.get('reftarget') == 'None': return contnode - elif node.get('reftype') in ('class', 'exc'): + elif node.get('reftype') in ('class', 'obj', 'exc'): reftarget = node.get('reftarget') if inspect.isclass(getattr(builtins, reftarget, None)): # built-in class diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index d986b62f334..ca0148cbb86 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -350,7 +350,7 @@ def test_parse_annotation(app): # Literal type makes an object-reference (not a class reference) doctree = _parse_annotation("typing.Literal['a', 'b']", app.env) - assert_node(doctree, ([pending_xref, "typing.Literal"], + assert_node(doctree, ([pending_xref, "Literal"], [desc_sig_punctuation, "["], [desc_sig_literal_string, "'a'"], [desc_sig_punctuation, ","], @@ -384,7 +384,7 @@ def test_parse_annotation_Literal(app): [desc_sig_punctuation, "]"])) doctree = _parse_annotation("typing.Literal[0, 1, 'abc']", app.env) - assert_node(doctree, ([pending_xref, "typing.Literal"], + assert_node(doctree, ([pending_xref, "Literal"], [desc_sig_punctuation, "["], [desc_sig_literal_number, "0"], [desc_sig_punctuation, ","], From c7e34936ffb197988b6dfd74227cb73bad05b345 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Fri, 24 Dec 2021 18:13:17 +0000 Subject: [PATCH 113/192] Rename variables for clarity --- sphinx/registry.py | 4 ++-- sphinx/theming.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sphinx/registry.py b/sphinx/registry.py index c8c6b8b5a5e..3d70f8d9f02 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -147,9 +147,9 @@ def preload_builder(self, app: "Sphinx", name: str) -> None: return if name not in self.builders: - builder_eps = entry_points(group='sphinx.builders') + builder_entry_points = entry_points(group='sphinx.builders') try: - entry_point = builder_eps[name] + entry_point = builder_entry_points[name] except KeyError as exc: raise SphinxError(__('Builder name %s not registered or available' ' through entry point') % name) from exc diff --git a/sphinx/theming.py b/sphinx/theming.py index 763a657fb86..7a002201a0c 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -204,9 +204,9 @@ def load_external_theme(self, name: str) -> None: Sphinx refers to ``sphinx_themes`` entry_points. """ # look up for new styled entry_points at first - theme_eps = entry_points(group='sphinx.html_themes') + theme_entry_points = entry_points(group='sphinx.html_themes') try: - entry_point = theme_eps[name] + entry_point = theme_entry_points[name] self.app.registry.load_extension(self.app, entry_point.module) return except KeyError: From 4f9b4c2124680e99ab52e2251d0f28553efd8cb4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 25 Dec 2021 12:54:43 +0900 Subject: [PATCH 114/192] Update CHANGES for PR #10007 --- CHANGES | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 77a901e853c..4f46de25540 100644 --- a/CHANGES +++ b/CHANGES @@ -4,6 +4,9 @@ Release 4.4.0 (in development) Dependencies ------------ +* #10007: Use ``importlib_metadata`` for python-3.9 or older +* #10007: Drop ``setuptools`` + Incompatible changes -------------------- From e8b3c9cf186dbd5d8aacb88adaadd81fbccb9be4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 25 Dec 2021 18:42:36 +0900 Subject: [PATCH 115/192] refactor: docs: Use :param: fields for add_js_file() and add_css_file() --- sphinx/application.py | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/sphinx/application.py b/sphinx/application.py index 475f08853e8..a26c3d659eb 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -933,14 +933,18 @@ def add_post_transform(self, transform: Type[Transform]) -> None: def add_js_file(self, filename: str, priority: int = 500, **kwargs: Any) -> None: """Register a JavaScript file to include in the HTML output. - Add *filename* to the list of JavaScript files that the default HTML - template will include in order of *priority* (ascending). The filename - must be relative to the HTML static path , or a full URI with scheme. - If the priority of the JavaScript file is the same as others, the JavaScript - files will be included in order of registration. If the keyword - argument ``body`` is given, its value will be added between the - `` - app.add_js_file('example.js', async="async") + app.add_js_file('example.js', loading_method="async") # => app.add_js_file(None, body="var myVariable = 'foo';") @@ -980,7 +983,15 @@ def add_js_file(self, filename: str, priority: int = 500, **kwargs: Any) -> None .. versionchanged:: 3.5 Take priority argument. Allow to add a JavaScript file to the specific page. + .. versionchanged:: 4.4 + Take loading_method argument. Allow to change the loading method of the + JavaScript file. """ + if loading_method == 'async': + kwargs['async'] = 'async' + elif loading_method == 'defer': + kwargs['defer'] = 'defer' + self.registry.add_js_file(filename, priority=priority, **kwargs) if hasattr(self.builder, 'add_js_file'): self.builder.add_js_file(filename, priority=priority, **kwargs) # type: ignore diff --git a/tests/test_build_html.py b/tests/test_build_html.py index a1d4717e77d..d2437a4dd11 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -1195,6 +1195,20 @@ def test_assets_order(app): assert re.search(pattern, content, re.S) +@pytest.mark.sphinx('html', testroot='html_assets') +def test_javscript_loading_method(app): + app.add_js_file('normal.js') + app.add_js_file('early.js', loading_method='async') + app.add_js_file('late.js', loading_method='defer') + + app.builder.build_all() + content = (app.outdir / 'index.html').read_text() + + assert '' in content + assert '' in content + assert '' in content + + @pytest.mark.sphinx('html', testroot='basic', confoverrides={'html_copy_source': False}) def test_html_copy_source(app): app.builder.build_all() From bdbad40f579bd7db7f837bfa998320658add3b89 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 24 Dec 2021 10:50:04 +0900 Subject: [PATCH 118/192] Fix #9194: autodoc: Prepend the "typing" module name on the signature To create hyperlinks to container types automatically, this prepends the module names for the types under "typing" module. --- sphinx/util/inspect.py | 4 +- sphinx/util/typing.py | 52 ++++++++++++--------- tests/test_ext_autodoc_autofunction.py | 2 +- tests/test_ext_autodoc_automodule.py | 2 +- tests/test_ext_autodoc_configs.py | 5 +- tests/test_ext_autodoc_preserve_defaults.py | 8 ++-- tests/test_util_inspect.py | 42 +++++++++-------- tests/test_util_typing.py | 26 +++++++++++ 8 files changed, 90 insertions(+), 51 deletions(-) diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index c67369e8935..d5c555afb8a 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -774,7 +774,7 @@ def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, if show_annotation and param.annotation is not param.empty: arg.write(': ') - arg.write(stringify_annotation(param.annotation, unqualified_typehints)) + arg.write(stringify_annotation(param.annotation, unqualified_typehints, True)) if param.default is not param.empty: if show_annotation and param.annotation is not param.empty: arg.write(' = ') @@ -794,7 +794,7 @@ def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, show_return_annotation is False): return '(%s)' % ', '.join(args) else: - annotation = stringify_annotation(sig.return_annotation, unqualified_typehints) + annotation = stringify_annotation(sig.return_annotation, unqualified_typehints, True) return '(%s) -> %s' % (', '.join(args), annotation) diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index 259384ec70f..d00c3ba09b7 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -299,11 +299,12 @@ def _restify_py36(cls: Optional[Type]) -> str: return ':py:obj:`%s.%s`' % (cls.__module__, qualname) -def stringify(annotation: Any, smartref: bool = False) -> str: +def stringify(annotation: Any, smartref: bool = False, show_typing: bool = False) -> str: """Stringify type annotation object. :param smartref: If true, add "~" prefix to the result to remove the leading module and class names from the reference text + :param show_typing: If true, do not suppress the "typing" module name """ from sphinx.util import inspect # lazy loading @@ -319,7 +320,7 @@ def stringify(annotation: Any, smartref: bool = False) -> str: else: return annotation elif isinstance(annotation, TypeVar): - if annotation.__module__ == 'typing': + if show_typing is False and annotation.__module__ == 'typing': return annotation.__name__ else: return prefix + '.'.join([annotation.__module__, annotation.__name__]) @@ -347,12 +348,12 @@ def stringify(annotation: Any, smartref: bool = False) -> str: return '...' if sys.version_info >= (3, 7): # py37+ - return _stringify_py37(annotation, smartref) + return _stringify_py37(annotation, smartref, show_typing) else: - return _stringify_py36(annotation, smartref) + return _stringify_py36(annotation, smartref, show_typing) -def _stringify_py37(annotation: Any, smartref: bool = False) -> str: +def _stringify_py37(annotation: Any, smartref: bool = False, show_typing: bool = False) -> str: """stringify() for py37+.""" module = getattr(annotation, '__module__', None) modprefix = '' @@ -364,10 +365,12 @@ def _stringify_py37(annotation: Any, smartref: bool = False) -> str: elif getattr(annotation, '__qualname__', None): qualname = annotation.__qualname__ else: - qualname = stringify(annotation.__origin__) # ex. Union + qualname = stringify(annotation.__origin__).replace('typing.', '') # ex. Union if smartref: modprefix = '~%s.' % module + elif show_typing: + modprefix = '%s.' % module elif hasattr(annotation, '__qualname__'): if smartref: modprefix = '~%s.' % module @@ -376,7 +379,7 @@ def _stringify_py37(annotation: Any, smartref: bool = False) -> str: qualname = annotation.__qualname__ elif hasattr(annotation, '__origin__'): # instantiated generic provided by a user - qualname = stringify(annotation.__origin__, smartref) + qualname = stringify(annotation.__origin__, smartref, show_typing) elif UnionType and isinstance(annotation, UnionType): # types.Union (for py3.10+) qualname = 'types.Union' else: @@ -391,13 +394,15 @@ def _stringify_py37(annotation: Any, smartref: bool = False) -> str: elif qualname in ('Optional', 'Union'): if len(annotation.__args__) > 1 and annotation.__args__[-1] is NoneType: if len(annotation.__args__) > 2: - args = ', '.join(stringify(a, smartref) for a in annotation.__args__[:-1]) + args = ', '.join(stringify(a, smartref, show_typing) for a + in annotation.__args__[:-1]) return '%sOptional[%sUnion[%s]]' % (modprefix, modprefix, args) else: - return '%sOptional[%s]' % (modprefix, - stringify(annotation.__args__[0], smartref)) + return '%sOptional[%s]' % (modprefix, stringify(annotation.__args__[0], + smartref, show_typing)) else: - args = ', '.join(stringify(a, smartref) for a in annotation.__args__) + args = ', '.join(stringify(a, smartref, show_typing) for a + in annotation.__args__) return '%sUnion[%s]' % (modprefix, args) elif qualname == 'types.Union': if len(annotation.__args__) > 1 and None in annotation.__args__: @@ -406,25 +411,27 @@ def _stringify_py37(annotation: Any, smartref: bool = False) -> str: else: return ' | '.join(stringify(a) for a in annotation.__args__) elif qualname == 'Callable': - args = ', '.join(stringify(a, smartref) for a in annotation.__args__[:-1]) - returns = stringify(annotation.__args__[-1], smartref) + args = ', '.join(stringify(a, smartref, show_typing) for a + in annotation.__args__[:-1]) + returns = stringify(annotation.__args__[-1], smartref, show_typing) return '%s%s[[%s], %s]' % (modprefix, qualname, args, returns) elif qualname == 'Literal': args = ', '.join(repr(a) for a in annotation.__args__) return '%s%s[%s]' % (modprefix, qualname, args) elif str(annotation).startswith('typing.Annotated'): # for py39+ - return stringify(annotation.__args__[0], smartref) + return stringify(annotation.__args__[0], smartref, show_typing) elif all(is_system_TypeVar(a) for a in annotation.__args__): # Suppress arguments if all system defined TypeVars (ex. Dict[KT, VT]) return modprefix + qualname else: - args = ', '.join(stringify(a, smartref) for a in annotation.__args__) + args = ', '.join(stringify(a, smartref, show_typing) for a + in annotation.__args__) return '%s%s[%s]' % (modprefix, qualname, args) return modprefix + qualname -def _stringify_py36(annotation: Any, smartref: bool = False) -> str: +def _stringify_py36(annotation: Any, smartref: bool = False, show_typing: bool = False) -> str: """stringify() for py36.""" module = getattr(annotation, '__module__', None) modprefix = '' @@ -442,6 +449,8 @@ def _stringify_py36(annotation: Any, smartref: bool = False) -> str: if smartref: modprefix = '~%s.' % module + elif show_typing: + modprefix = '%s.' % module elif hasattr(annotation, '__qualname__'): if smartref: modprefix = '~%s.' % module @@ -455,7 +464,7 @@ def _stringify_py36(annotation: Any, smartref: bool = False) -> str: not hasattr(annotation, '__tuple_params__')): # for Python 3.6 params = annotation.__args__ if params: - param_str = ', '.join(stringify(p, smartref) for p in params) + param_str = ', '.join(stringify(p, smartref, show_typing) for p in params) return '%s%s[%s]' % (modprefix, qualname, param_str) else: return modprefix + qualname @@ -466,12 +475,12 @@ def _stringify_py36(annotation: Any, smartref: bool = False) -> str: elif annotation.__origin__ == Generator: # type: ignore params = annotation.__args__ # type: ignore else: # typing.Callable - args = ', '.join(stringify(arg, smartref) for arg + args = ', '.join(stringify(arg, smartref, show_typing) for arg in annotation.__args__[:-1]) # type: ignore result = stringify(annotation.__args__[-1]) # type: ignore return '%s%s[[%s], %s]' % (modprefix, qualname, args, result) if params is not None: - param_str = ', '.join(stringify(p, smartref) for p in params) + param_str = ', '.join(stringify(p, smartref, show_typing) for p in params) return '%s%s[%s]' % (modprefix, qualname, param_str) elif (hasattr(annotation, '__origin__') and annotation.__origin__ is typing.Union): @@ -479,12 +488,13 @@ def _stringify_py36(annotation: Any, smartref: bool = False) -> str: if params is not None: if len(params) > 1 and params[-1] is NoneType: if len(params) > 2: - param_str = ", ".join(stringify(p, smartref) for p in params[:-1]) + param_str = ", ".join(stringify(p, smartref, show_typing) for p + in params[:-1]) return '%sOptional[%sUnion[%s]]' % (modprefix, modprefix, param_str) else: return '%sOptional[%s]' % (modprefix, stringify(params[0])) else: - param_str = ', '.join(stringify(p, smartref) for p in params) + param_str = ', '.join(stringify(p, smartref, show_typing) for p in params) return '%sUnion[%s]' % (modprefix, param_str) return modprefix + qualname diff --git a/tests/test_ext_autodoc_autofunction.py b/tests/test_ext_autodoc_autofunction.py index 52af51abbfc..e3db8ca0d7e 100644 --- a/tests/test_ext_autodoc_autofunction.py +++ b/tests/test_ext_autodoc_autofunction.py @@ -162,7 +162,7 @@ def test_wrapped_function_contextmanager(app): actual = do_autodoc(app, 'function', 'target.wrappedfunction.feeling_good') assert list(actual) == [ '', - '.. py:function:: feeling_good(x: int, y: int) -> Generator', + '.. py:function:: feeling_good(x: int, y: int) -> typing.Generator', ' :module: target.wrappedfunction', '', " You'll feel better in this context!", diff --git a/tests/test_ext_autodoc_automodule.py b/tests/test_ext_autodoc_automodule.py index 59296a981a3..1f4d590793f 100644 --- a/tests/test_ext_autodoc_automodule.py +++ b/tests/test_ext_autodoc_automodule.py @@ -130,4 +130,4 @@ def test_subclass_of_mocked_object(app): options = {'members': None} actual = do_autodoc(app, 'module', 'target.need_mocks', options) - assert '.. py:class:: Inherited(*args: Any, **kwargs: Any)' in actual + assert '.. py:class:: Inherited(*args: typing.Any, **kwargs: typing.Any)' in actual diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index f3bcd6a97a1..899bf9ff024 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -612,7 +612,7 @@ def test_autodoc_typehints_signature(app): ' :type: int', '', '', - '.. py:class:: Math(s: str, o: Optional[Any] = None)', + '.. py:class:: Math(s: str, o: typing.Optional[typing.Any] = None)', ' :module: target.typehints', '', '', @@ -677,7 +677,8 @@ def test_autodoc_typehints_signature(app): ' :module: target.typehints', '', '', - '.. py:function:: tuple_args(x: Tuple[int, Union[int, str]]) -> Tuple[int, int]', + '.. py:function:: tuple_args(x: typing.Tuple[int, typing.Union[int, str]]) ' + '-> typing.Tuple[int, int]', ' :module: target.typehints', '', ] diff --git a/tests/test_ext_autodoc_preserve_defaults.py b/tests/test_ext_autodoc_preserve_defaults.py index 955c60aa4bf..b9634eef871 100644 --- a/tests/test_ext_autodoc_preserve_defaults.py +++ b/tests/test_ext_autodoc_preserve_defaults.py @@ -36,15 +36,15 @@ def test_preserve_defaults(app): ' docstring', '', '', - ' .. py:method:: Class.meth(name: str = CONSTANT, sentinel: Any = SENTINEL, ' - 'now: datetime.datetime = datetime.now(), color: int = %s) -> None' % color, + ' .. py:method:: Class.meth(name: str = CONSTANT, sentinel: typing.Any = ' + 'SENTINEL, now: datetime.datetime = datetime.now(), color: int = %s) -> None' % color, ' :module: target.preserve_defaults', '', ' docstring', '', '', - '.. py:function:: foo(name: str = CONSTANT, sentinel: Any = SENTINEL, now: ' - 'datetime.datetime = datetime.now(), color: int = %s) -> None' % color, + '.. py:function:: foo(name: str = CONSTANT, sentinel: typing.Any = SENTINEL, ' + 'now: datetime.datetime = datetime.now(), color: int = %s) -> None' % color, ' :module: target.preserve_defaults', '', ' docstring', diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index f331acb233e..25709a37f61 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -157,21 +157,22 @@ def test_signature_annotations(): # Generic types with concrete parameters sig = inspect.signature(f1) - assert stringify_signature(sig) == '(x: List[int]) -> List[int]' + assert stringify_signature(sig) == '(x: typing.List[int]) -> typing.List[int]' # TypeVars and generic types with TypeVars sig = inspect.signature(f2) if sys.version_info < (3, 7): - assert stringify_signature(sig) == '(x: List[T], y: List[T_co], z: T) -> List[T_contra]' + assert stringify_signature(sig) == ('(x: typing.List[T], y: typing.List[T_co], z: T) ' + '-> typing.List[T_contra]') else: - assert stringify_signature(sig) == ('(x: List[tests.typing_test_data.T],' - ' y: List[tests.typing_test_data.T_co],' + assert stringify_signature(sig) == ('(x: typing.List[tests.typing_test_data.T],' + ' y: typing.List[tests.typing_test_data.T_co],' ' z: tests.typing_test_data.T' - ') -> List[tests.typing_test_data.T_contra]') + ') -> typing.List[tests.typing_test_data.T_contra]') # Union types sig = inspect.signature(f3) - assert stringify_signature(sig) == '(x: Union[str, numbers.Integral]) -> None' + assert stringify_signature(sig) == '(x: typing.Union[str, numbers.Integral]) -> None' # Quoted annotations sig = inspect.signature(f4) @@ -187,18 +188,18 @@ def test_signature_annotations(): # Space around '=' for defaults sig = inspect.signature(f7) - assert stringify_signature(sig) == '(x: Optional[int] = None, y: dict = {}) -> None' + assert stringify_signature(sig) == '(x: typing.Optional[int] = None, y: dict = {}) -> None' # Callable types sig = inspect.signature(f8) - assert stringify_signature(sig) == '(x: Callable[[int, str], int]) -> None' + assert stringify_signature(sig) == '(x: typing.Callable[[int, str], int]) -> None' sig = inspect.signature(f9) - assert stringify_signature(sig) == '(x: Callable) -> None' + assert stringify_signature(sig) == '(x: typing.Callable) -> None' # Tuple types sig = inspect.signature(f10) - assert stringify_signature(sig) == '(x: Tuple[int, str], y: Tuple[int, ...]) -> None' + assert stringify_signature(sig) == '(x: typing.Tuple[int, str], y: typing.Tuple[int, ...]) -> None' # Instance annotations sig = inspect.signature(f11) @@ -206,24 +207,24 @@ def test_signature_annotations(): # tuple with more than two items sig = inspect.signature(f12) - assert stringify_signature(sig) == '() -> Tuple[int, str, int]' + assert stringify_signature(sig) == '() -> typing.Tuple[int, str, int]' # optional sig = inspect.signature(f13) - assert stringify_signature(sig) == '() -> Optional[str]' + assert stringify_signature(sig) == '() -> typing.Optional[str]' # optional union sig = inspect.signature(f20) - assert stringify_signature(sig) in ('() -> Optional[Union[int, str]]', - '() -> Optional[Union[str, int]]') + assert stringify_signature(sig) in ('() -> typing.Optional[typing.Union[int, str]]', + '() -> typing.Optional[typing.Union[str, int]]') # Any sig = inspect.signature(f14) - assert stringify_signature(sig) == '() -> Any' + assert stringify_signature(sig) == '() -> typing.Any' # ForwardRef sig = inspect.signature(f15) - assert stringify_signature(sig) == '(x: Unknown, y: int) -> Any' + assert stringify_signature(sig) == '(x: Unknown, y: int) -> typing.Any' # keyword only arguments (1) sig = inspect.signature(f16) @@ -234,7 +235,8 @@ def test_signature_annotations(): assert stringify_signature(sig) == '(*, arg3, arg4)' sig = inspect.signature(f18) - assert stringify_signature(sig) == '(self, arg1: Union[int, Tuple] = 10) -> List[Dict]' + assert stringify_signature(sig) == ('(self, arg1: typing.Union[int, typing.Tuple] = 10) -> ' + 'typing.List[typing.Dict]') # annotations for variadic and keyword parameters sig = inspect.signature(f19) @@ -246,10 +248,10 @@ def test_signature_annotations(): # type hints by string sig = inspect.signature(Node.children) - assert stringify_signature(sig) == '(self) -> List[tests.typing_test_data.Node]' + assert stringify_signature(sig) == '(self) -> typing.List[tests.typing_test_data.Node]' sig = inspect.signature(Node.__init__) - assert stringify_signature(sig) == '(self, parent: Optional[tests.typing_test_data.Node]) -> None' + assert stringify_signature(sig) == '(self, parent: typing.Optional[tests.typing_test_data.Node]) -> None' # show_annotation is False sig = inspect.signature(f7) @@ -257,7 +259,7 @@ def test_signature_annotations(): # show_return_annotation is False sig = inspect.signature(f7) - assert stringify_signature(sig, show_return_annotation=False) == '(x: Optional[int] = None, y: dict = {})' + assert stringify_signature(sig, show_return_annotation=False) == '(x: typing.Optional[int] = None, y: dict = {})' # unqualified_typehints is True sig = inspect.signature(f7) diff --git a/tests/test_util_typing.py b/tests/test_util_typing.py index 0b2324e294b..f17221458e7 100644 --- a/tests/test_util_typing.py +++ b/tests/test_util_typing.py @@ -197,41 +197,53 @@ def test_stringify(): assert stringify(TracebackType, True) == "~types.TracebackType" assert stringify(Any, False) == "Any" + assert stringify(Any, False, True) == "typing.Any" assert stringify(Any, True) == "~typing.Any" def test_stringify_type_hints_containers(): assert stringify(List, False) == "List" + assert stringify(List, False, True) == "typing.List" assert stringify(List, True) == "~typing.List" assert stringify(Dict, False) == "Dict" + assert stringify(Dict, False, True) == "typing.Dict" assert stringify(Dict, True) == "~typing.Dict" assert stringify(List[int], False) == "List[int]" + assert stringify(List[int], False, True) == "typing.List[int]" assert stringify(List[int], True) == "~typing.List[int]" assert stringify(List[str], False) == "List[str]" + assert stringify(List[str], False, True) == "typing.List[str]" assert stringify(List[str], True) == "~typing.List[str]" assert stringify(Dict[str, float], False) == "Dict[str, float]" + assert stringify(Dict[str, float], False, True) == "typing.Dict[str, float]" assert stringify(Dict[str, float], True) == "~typing.Dict[str, float]" assert stringify(Tuple[str, str, str], False) == "Tuple[str, str, str]" + assert stringify(Tuple[str, str, str], False, True) == "typing.Tuple[str, str, str]" assert stringify(Tuple[str, str, str], True) == "~typing.Tuple[str, str, str]" assert stringify(Tuple[str, ...], False) == "Tuple[str, ...]" + assert stringify(Tuple[str, ...], False, True) == "typing.Tuple[str, ...]" assert stringify(Tuple[str, ...], True) == "~typing.Tuple[str, ...]" assert stringify(Tuple[()], False) == "Tuple[()]" + assert stringify(Tuple[()], False, True) == "typing.Tuple[()]" assert stringify(Tuple[()], True) == "~typing.Tuple[()]" assert stringify(List[Dict[str, Tuple]], False) == "List[Dict[str, Tuple]]" + assert stringify(List[Dict[str, Tuple]], False, True) == "typing.List[typing.Dict[str, typing.Tuple]]" assert stringify(List[Dict[str, Tuple]], True) == "~typing.List[~typing.Dict[str, ~typing.Tuple]]" assert stringify(MyList[Tuple[int, int]], False) == "tests.test_util_typing.MyList[Tuple[int, int]]" + assert stringify(MyList[Tuple[int, int]], False, True) == "tests.test_util_typing.MyList[typing.Tuple[int, int]]" assert stringify(MyList[Tuple[int, int]], True) == "~tests.test_util_typing.MyList[~typing.Tuple[int, int]]" assert stringify(Generator[None, None, None], False) == "Generator[None, None, None]" + assert stringify(Generator[None, None, None], False, True) == "typing.Generator[None, None, None]" assert stringify(Generator[None, None, None], True) == "~typing.Generator[None, None, None]" @@ -288,45 +300,58 @@ def test_stringify_type_hints_string(): def test_stringify_type_hints_Callable(): assert stringify(Callable, False) == "Callable" + assert stringify(Callable, False, True) == "typing.Callable" assert stringify(Callable, True) == "~typing.Callable" if sys.version_info >= (3, 7): assert stringify(Callable[[str], int], False) == "Callable[[str], int]" + assert stringify(Callable[[str], int], False, True) == "typing.Callable[[str], int]" assert stringify(Callable[[str], int], True) == "~typing.Callable[[str], int]" assert stringify(Callable[..., int], False) == "Callable[[...], int]" + assert stringify(Callable[..., int], False, True) == "typing.Callable[[...], int]" assert stringify(Callable[..., int], True) == "~typing.Callable[[...], int]" else: assert stringify(Callable[[str], int], False) == "Callable[str, int]" + assert stringify(Callable[[str], int], False, True) == "typing.Callable[str, int]" assert stringify(Callable[[str], int], True) == "~typing.Callable[str, int]" assert stringify(Callable[..., int], False) == "Callable[..., int]" + assert stringify(Callable[..., int], False, True) == "typing.Callable[..., int]" assert stringify(Callable[..., int], True) == "~typing.Callable[..., int]" def test_stringify_type_hints_Union(): assert stringify(Optional[int], False) == "Optional[int]" + assert stringify(Optional[int], False, True) == "typing.Optional[int]" assert stringify(Optional[int], True) == "~typing.Optional[int]" assert stringify(Union[str, None], False) == "Optional[str]" + assert stringify(Union[str, None], False, True) == "typing.Optional[str]" assert stringify(Union[str, None], True) == "~typing.Optional[str]" assert stringify(Union[int, str], False) == "Union[int, str]" + assert stringify(Union[int, str], False, True) == "typing.Union[int, str]" assert stringify(Union[int, str], True) == "~typing.Union[int, str]" if sys.version_info >= (3, 7): assert stringify(Union[int, Integral], False) == "Union[int, numbers.Integral]" + assert stringify(Union[int, Integral], False, True) == "typing.Union[int, numbers.Integral]" assert stringify(Union[int, Integral], True) == "~typing.Union[int, ~numbers.Integral]" assert (stringify(Union[MyClass1, MyClass2], False) == "Union[tests.test_util_typing.MyClass1, tests.test_util_typing.]") + assert (stringify(Union[MyClass1, MyClass2], False, True) == + "typing.Union[tests.test_util_typing.MyClass1, tests.test_util_typing.]") assert (stringify(Union[MyClass1, MyClass2], True) == "~typing.Union[~tests.test_util_typing.MyClass1, ~tests.test_util_typing.]") else: assert stringify(Union[int, Integral], False) == "numbers.Integral" + assert stringify(Union[int, Integral], False, True) == "numbers.Integral" assert stringify(Union[int, Integral], True) == "~numbers.Integral" assert stringify(Union[MyClass1, MyClass2], False) == "tests.test_util_typing.MyClass1" + assert stringify(Union[MyClass1, MyClass2], False, True) == "tests.test_util_typing.MyClass1" assert stringify(Union[MyClass1, MyClass2], True) == "~tests.test_util_typing.MyClass1" @@ -391,6 +416,7 @@ def test_stringify_type_hints_alias(): def test_stringify_type_Literal(): from typing import Literal # type: ignore assert stringify(Literal[1, "2", "\r"], False) == "Literal[1, '2', '\\r']" + assert stringify(Literal[1, "2", "\r"], False, True) == "typing.Literal[1, '2', '\\r']" assert stringify(Literal[1, "2", "\r"], True) == "~typing.Literal[1, '2', '\\r']" From 2ea9118181df74ea6a8371d72b2a4ac7da658438 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 26 Dec 2021 02:03:59 +0900 Subject: [PATCH 119/192] refactor: Merge arguments of sphinx.util.typing:stringify() --- sphinx/util/inspect.py | 9 +- sphinx/util/typing.py | 84 +++++----- tests/test_util_inspect.py | 6 +- tests/test_util_typing.py | 306 ++++++++++++++++++------------------- 4 files changed, 207 insertions(+), 198 deletions(-) diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index d5c555afb8a..8543c9ee8da 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -752,6 +752,11 @@ def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, :param unqualified_typehints: Show annotations as unqualified (ex. io.StringIO -> StringIO) """ + if unqualified_typehints: + mode = 'smart' + else: + mode = 'fully-qualified' + args = [] last_kind = None for param in sig.parameters.values(): @@ -774,7 +779,7 @@ def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, if show_annotation and param.annotation is not param.empty: arg.write(': ') - arg.write(stringify_annotation(param.annotation, unqualified_typehints, True)) + arg.write(stringify_annotation(param.annotation, mode)) if param.default is not param.empty: if show_annotation and param.annotation is not param.empty: arg.write(' = ') @@ -794,7 +799,7 @@ def stringify_signature(sig: inspect.Signature, show_annotation: bool = True, show_return_annotation is False): return '(%s)' % ', '.join(args) else: - annotation = stringify_annotation(sig.return_annotation, unqualified_typehints, True) + annotation = stringify_annotation(sig.return_annotation, mode) return '(%s) -> %s' % (', '.join(args), annotation) diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index d00c3ba09b7..005599f79f9 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -299,19 +299,25 @@ def _restify_py36(cls: Optional[Type]) -> str: return ':py:obj:`%s.%s`' % (cls.__module__, qualname) -def stringify(annotation: Any, smartref: bool = False, show_typing: bool = False) -> str: +def stringify(annotation: Any, mode: str = 'fully-qualified-except-typing') -> str: """Stringify type annotation object. - :param smartref: If true, add "~" prefix to the result to remove the leading - module and class names from the reference text - :param show_typing: If true, do not suppress the "typing" module name + :param mode: Specify a method how annotations will be stringified. + + 'fully-qualified-except-typing' + Show the module name and qualified name of the annotation except + the "typing" module. + 'smart' + Show the name of the annotation. + 'fully-qualified' + Show the module name and qualified name of the annotation. """ from sphinx.util import inspect # lazy loading - if smartref: - prefix = '~' + if mode == 'smart': + modprefix = '~' else: - prefix = '' + modprefix = '' if isinstance(annotation, str): if annotation.startswith("'") and annotation.endswith("'"): @@ -320,14 +326,15 @@ def stringify(annotation: Any, smartref: bool = False, show_typing: bool = False else: return annotation elif isinstance(annotation, TypeVar): - if show_typing is False and annotation.__module__ == 'typing': + if (annotation.__module__ == 'typing' and + mode in ('fully-qualified-except-typing', 'smart')): return annotation.__name__ else: - return prefix + '.'.join([annotation.__module__, annotation.__name__]) + return modprefix + '.'.join([annotation.__module__, annotation.__name__]) elif inspect.isNewType(annotation): if sys.version_info > (3, 10): # newtypes have correct module info since Python 3.10+ - return prefix + '%s.%s' % (annotation.__module__, annotation.__name__) + return modprefix + '%s.%s' % (annotation.__module__, annotation.__name__) else: return annotation.__name__ elif not annotation: @@ -335,7 +342,7 @@ def stringify(annotation: Any, smartref: bool = False, show_typing: bool = False elif annotation is NoneType: return 'None' elif annotation in INVALID_BUILTIN_CLASSES: - return prefix + INVALID_BUILTIN_CLASSES[annotation] + return modprefix + INVALID_BUILTIN_CLASSES[annotation] elif str(annotation).startswith('typing.Annotated'): # for py310+ pass elif (getattr(annotation, '__module__', None) == 'builtins' and @@ -348,12 +355,12 @@ def stringify(annotation: Any, smartref: bool = False, show_typing: bool = False return '...' if sys.version_info >= (3, 7): # py37+ - return _stringify_py37(annotation, smartref, show_typing) + return _stringify_py37(annotation, mode) else: - return _stringify_py36(annotation, smartref, show_typing) + return _stringify_py36(annotation, mode) -def _stringify_py37(annotation: Any, smartref: bool = False, show_typing: bool = False) -> str: +def _stringify_py37(annotation: Any, mode: str = 'fully-qualified-except-typing') -> str: """stringify() for py37+.""" module = getattr(annotation, '__module__', None) modprefix = '' @@ -367,19 +374,19 @@ def _stringify_py37(annotation: Any, smartref: bool = False, show_typing: bool = else: qualname = stringify(annotation.__origin__).replace('typing.', '') # ex. Union - if smartref: + if mode == 'smart': modprefix = '~%s.' % module - elif show_typing: + elif mode == 'fully-qualified': modprefix = '%s.' % module elif hasattr(annotation, '__qualname__'): - if smartref: + if mode == 'smart': modprefix = '~%s.' % module else: modprefix = '%s.' % module qualname = annotation.__qualname__ elif hasattr(annotation, '__origin__'): # instantiated generic provided by a user - qualname = stringify(annotation.__origin__, smartref, show_typing) + qualname = stringify(annotation.__origin__, mode) elif UnionType and isinstance(annotation, UnionType): # types.Union (for py3.10+) qualname = 'types.Union' else: @@ -394,15 +401,13 @@ def _stringify_py37(annotation: Any, smartref: bool = False, show_typing: bool = elif qualname in ('Optional', 'Union'): if len(annotation.__args__) > 1 and annotation.__args__[-1] is NoneType: if len(annotation.__args__) > 2: - args = ', '.join(stringify(a, smartref, show_typing) for a - in annotation.__args__[:-1]) + args = ', '.join(stringify(a, mode) for a in annotation.__args__[:-1]) return '%sOptional[%sUnion[%s]]' % (modprefix, modprefix, args) else: - return '%sOptional[%s]' % (modprefix, stringify(annotation.__args__[0], - smartref, show_typing)) + return '%sOptional[%s]' % (modprefix, + stringify(annotation.__args__[0], mode)) else: - args = ', '.join(stringify(a, smartref, show_typing) for a - in annotation.__args__) + args = ', '.join(stringify(a, mode) for a in annotation.__args__) return '%sUnion[%s]' % (modprefix, args) elif qualname == 'types.Union': if len(annotation.__args__) > 1 and None in annotation.__args__: @@ -411,27 +416,25 @@ def _stringify_py37(annotation: Any, smartref: bool = False, show_typing: bool = else: return ' | '.join(stringify(a) for a in annotation.__args__) elif qualname == 'Callable': - args = ', '.join(stringify(a, smartref, show_typing) for a - in annotation.__args__[:-1]) - returns = stringify(annotation.__args__[-1], smartref, show_typing) + args = ', '.join(stringify(a, mode) for a in annotation.__args__[:-1]) + returns = stringify(annotation.__args__[-1], mode) return '%s%s[[%s], %s]' % (modprefix, qualname, args, returns) elif qualname == 'Literal': args = ', '.join(repr(a) for a in annotation.__args__) return '%s%s[%s]' % (modprefix, qualname, args) elif str(annotation).startswith('typing.Annotated'): # for py39+ - return stringify(annotation.__args__[0], smartref, show_typing) + return stringify(annotation.__args__[0], mode) elif all(is_system_TypeVar(a) for a in annotation.__args__): # Suppress arguments if all system defined TypeVars (ex. Dict[KT, VT]) return modprefix + qualname else: - args = ', '.join(stringify(a, smartref, show_typing) for a - in annotation.__args__) + args = ', '.join(stringify(a, mode) for a in annotation.__args__) return '%s%s[%s]' % (modprefix, qualname, args) return modprefix + qualname -def _stringify_py36(annotation: Any, smartref: bool = False, show_typing: bool = False) -> str: +def _stringify_py36(annotation: Any, mode: str = 'fully-qualified-except-typing') -> str: """stringify() for py36.""" module = getattr(annotation, '__module__', None) modprefix = '' @@ -447,12 +450,12 @@ def _stringify_py36(annotation: Any, smartref: bool = False, show_typing: bool = else: qualname = repr(annotation).replace('typing.', '') - if smartref: + if mode == 'smart': modprefix = '~%s.' % module - elif show_typing: + elif mode == 'fully-qualified': modprefix = '%s.' % module elif hasattr(annotation, '__qualname__'): - if smartref: + if mode == 'smart': modprefix = '~%s.' % module else: modprefix = '%s.' % module @@ -464,7 +467,7 @@ def _stringify_py36(annotation: Any, smartref: bool = False, show_typing: bool = not hasattr(annotation, '__tuple_params__')): # for Python 3.6 params = annotation.__args__ if params: - param_str = ', '.join(stringify(p, smartref, show_typing) for p in params) + param_str = ', '.join(stringify(p, mode) for p in params) return '%s%s[%s]' % (modprefix, qualname, param_str) else: return modprefix + qualname @@ -475,12 +478,12 @@ def _stringify_py36(annotation: Any, smartref: bool = False, show_typing: bool = elif annotation.__origin__ == Generator: # type: ignore params = annotation.__args__ # type: ignore else: # typing.Callable - args = ', '.join(stringify(arg, smartref, show_typing) for arg + args = ', '.join(stringify(arg, mode) for arg in annotation.__args__[:-1]) # type: ignore result = stringify(annotation.__args__[-1]) # type: ignore return '%s%s[[%s], %s]' % (modprefix, qualname, args, result) if params is not None: - param_str = ', '.join(stringify(p, smartref, show_typing) for p in params) + param_str = ', '.join(stringify(p, mode) for p in params) return '%s%s[%s]' % (modprefix, qualname, param_str) elif (hasattr(annotation, '__origin__') and annotation.__origin__ is typing.Union): @@ -488,13 +491,12 @@ def _stringify_py36(annotation: Any, smartref: bool = False, show_typing: bool = if params is not None: if len(params) > 1 and params[-1] is NoneType: if len(params) > 2: - param_str = ", ".join(stringify(p, smartref, show_typing) for p - in params[:-1]) + param_str = ", ".join(stringify(p, mode) for p in params[:-1]) return '%sOptional[%sUnion[%s]]' % (modprefix, modprefix, param_str) else: - return '%sOptional[%s]' % (modprefix, stringify(params[0])) + return '%sOptional[%s]' % (modprefix, stringify(params[0], mode)) else: - param_str = ', '.join(stringify(p, smartref, show_typing) for p in params) + param_str = ', '.join(stringify(p, mode) for p in params) return '%sUnion[%s]' % (modprefix, param_str) return modprefix + qualname diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index 25709a37f61..8662fab12ef 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -162,8 +162,10 @@ def test_signature_annotations(): # TypeVars and generic types with TypeVars sig = inspect.signature(f2) if sys.version_info < (3, 7): - assert stringify_signature(sig) == ('(x: typing.List[T], y: typing.List[T_co], z: T) ' - '-> typing.List[T_contra]') + assert stringify_signature(sig) == ('(x: typing.List[typing.T],' + ' y: typing.List[typing.T_co],' + ' z: typing.T' + ') -> typing.List[typing.T_contra]') else: assert stringify_signature(sig) == ('(x: typing.List[tests.typing_test_data.T],' ' y: typing.List[tests.typing_test_data.T_co],' diff --git a/tests/test_util_typing.py b/tests/test_util_typing.py index f17221458e7..9ee217f96bb 100644 --- a/tests/test_util_typing.py +++ b/tests/test_util_typing.py @@ -178,181 +178,181 @@ def test_restify_mock(): def test_stringify(): - assert stringify(int, False) == "int" - assert stringify(int, True) == "int" + assert stringify(int) == "int" + assert stringify(int, "smart") == "int" - assert stringify(str, False) == "str" - assert stringify(str, True) == "str" + assert stringify(str) == "str" + assert stringify(str, "smart") == "str" - assert stringify(None, False) == "None" - assert stringify(None, True) == "None" + assert stringify(None) == "None" + assert stringify(None, "smart") == "None" - assert stringify(Integral, False) == "numbers.Integral" - assert stringify(Integral, True) == "~numbers.Integral" + assert stringify(Integral) == "numbers.Integral" + assert stringify(Integral, "smart") == "~numbers.Integral" - assert stringify(Struct, False) == "struct.Struct" - assert stringify(Struct, True) == "~struct.Struct" + assert stringify(Struct) == "struct.Struct" + assert stringify(Struct, "smart") == "~struct.Struct" - assert stringify(TracebackType, False) == "types.TracebackType" - assert stringify(TracebackType, True) == "~types.TracebackType" + assert stringify(TracebackType) == "types.TracebackType" + assert stringify(TracebackType, "smart") == "~types.TracebackType" - assert stringify(Any, False) == "Any" - assert stringify(Any, False, True) == "typing.Any" - assert stringify(Any, True) == "~typing.Any" + assert stringify(Any) == "Any" + assert stringify(Any, "fully-qualified") == "typing.Any" + assert stringify(Any, "smart") == "~typing.Any" def test_stringify_type_hints_containers(): - assert stringify(List, False) == "List" - assert stringify(List, False, True) == "typing.List" - assert stringify(List, True) == "~typing.List" + assert stringify(List) == "List" + assert stringify(List, "fully-qualified") == "typing.List" + assert stringify(List, "smart") == "~typing.List" - assert stringify(Dict, False) == "Dict" - assert stringify(Dict, False, True) == "typing.Dict" - assert stringify(Dict, True) == "~typing.Dict" + assert stringify(Dict) == "Dict" + assert stringify(Dict, "fully-qualified") == "typing.Dict" + assert stringify(Dict, "smart") == "~typing.Dict" - assert stringify(List[int], False) == "List[int]" - assert stringify(List[int], False, True) == "typing.List[int]" - assert stringify(List[int], True) == "~typing.List[int]" + assert stringify(List[int]) == "List[int]" + assert stringify(List[int], "fully-qualified") == "typing.List[int]" + assert stringify(List[int], "smart") == "~typing.List[int]" - assert stringify(List[str], False) == "List[str]" - assert stringify(List[str], False, True) == "typing.List[str]" - assert stringify(List[str], True) == "~typing.List[str]" + assert stringify(List[str]) == "List[str]" + assert stringify(List[str], "fully-qualified") == "typing.List[str]" + assert stringify(List[str], "smart") == "~typing.List[str]" - assert stringify(Dict[str, float], False) == "Dict[str, float]" - assert stringify(Dict[str, float], False, True) == "typing.Dict[str, float]" - assert stringify(Dict[str, float], True) == "~typing.Dict[str, float]" + assert stringify(Dict[str, float]) == "Dict[str, float]" + assert stringify(Dict[str, float], "fully-qualified") == "typing.Dict[str, float]" + assert stringify(Dict[str, float], "smart") == "~typing.Dict[str, float]" - assert stringify(Tuple[str, str, str], False) == "Tuple[str, str, str]" - assert stringify(Tuple[str, str, str], False, True) == "typing.Tuple[str, str, str]" - assert stringify(Tuple[str, str, str], True) == "~typing.Tuple[str, str, str]" + assert stringify(Tuple[str, str, str]) == "Tuple[str, str, str]" + assert stringify(Tuple[str, str, str], "fully-qualified") == "typing.Tuple[str, str, str]" + assert stringify(Tuple[str, str, str], "smart") == "~typing.Tuple[str, str, str]" - assert stringify(Tuple[str, ...], False) == "Tuple[str, ...]" - assert stringify(Tuple[str, ...], False, True) == "typing.Tuple[str, ...]" - assert stringify(Tuple[str, ...], True) == "~typing.Tuple[str, ...]" + assert stringify(Tuple[str, ...]) == "Tuple[str, ...]" + assert stringify(Tuple[str, ...], "fully-qualified") == "typing.Tuple[str, ...]" + assert stringify(Tuple[str, ...], "smart") == "~typing.Tuple[str, ...]" - assert stringify(Tuple[()], False) == "Tuple[()]" - assert stringify(Tuple[()], False, True) == "typing.Tuple[()]" - assert stringify(Tuple[()], True) == "~typing.Tuple[()]" + assert stringify(Tuple[()]) == "Tuple[()]" + assert stringify(Tuple[()], "fully-qualified") == "typing.Tuple[()]" + assert stringify(Tuple[()], "smart") == "~typing.Tuple[()]" - assert stringify(List[Dict[str, Tuple]], False) == "List[Dict[str, Tuple]]" - assert stringify(List[Dict[str, Tuple]], False, True) == "typing.List[typing.Dict[str, typing.Tuple]]" - assert stringify(List[Dict[str, Tuple]], True) == "~typing.List[~typing.Dict[str, ~typing.Tuple]]" + assert stringify(List[Dict[str, Tuple]]) == "List[Dict[str, Tuple]]" + assert stringify(List[Dict[str, Tuple]], "fully-qualified") == "typing.List[typing.Dict[str, typing.Tuple]]" + assert stringify(List[Dict[str, Tuple]], "smart") == "~typing.List[~typing.Dict[str, ~typing.Tuple]]" - assert stringify(MyList[Tuple[int, int]], False) == "tests.test_util_typing.MyList[Tuple[int, int]]" - assert stringify(MyList[Tuple[int, int]], False, True) == "tests.test_util_typing.MyList[typing.Tuple[int, int]]" - assert stringify(MyList[Tuple[int, int]], True) == "~tests.test_util_typing.MyList[~typing.Tuple[int, int]]" + assert stringify(MyList[Tuple[int, int]]) == "tests.test_util_typing.MyList[Tuple[int, int]]" + assert stringify(MyList[Tuple[int, int]], "fully-qualified") == "tests.test_util_typing.MyList[typing.Tuple[int, int]]" + assert stringify(MyList[Tuple[int, int]], "smart") == "~tests.test_util_typing.MyList[~typing.Tuple[int, int]]" - assert stringify(Generator[None, None, None], False) == "Generator[None, None, None]" - assert stringify(Generator[None, None, None], False, True) == "typing.Generator[None, None, None]" - assert stringify(Generator[None, None, None], True) == "~typing.Generator[None, None, None]" + assert stringify(Generator[None, None, None]) == "Generator[None, None, None]" + assert stringify(Generator[None, None, None], "fully-qualified") == "typing.Generator[None, None, None]" + assert stringify(Generator[None, None, None], "smart") == "~typing.Generator[None, None, None]" @pytest.mark.skipif(sys.version_info < (3, 9), reason='python 3.9+ is required.') def test_stringify_type_hints_pep_585(): - assert stringify(list[int], False) == "list[int]" - assert stringify(list[int], True) == "list[int]" + assert stringify(list[int]) == "list[int]" + assert stringify(list[int], "smart") == "list[int]" - assert stringify(list[str], False) == "list[str]" - assert stringify(list[str], True) == "list[str]" + assert stringify(list[str]) == "list[str]" + assert stringify(list[str], "smart") == "list[str]" - assert stringify(dict[str, float], False) == "dict[str, float]" - assert stringify(dict[str, float], True) == "dict[str, float]" + assert stringify(dict[str, float]) == "dict[str, float]" + assert stringify(dict[str, float], "smart") == "dict[str, float]" - assert stringify(tuple[str, str, str], False) == "tuple[str, str, str]" - assert stringify(tuple[str, str, str], True) == "tuple[str, str, str]" + assert stringify(tuple[str, str, str]) == "tuple[str, str, str]" + assert stringify(tuple[str, str, str], "smart") == "tuple[str, str, str]" - assert stringify(tuple[str, ...], False) == "tuple[str, ...]" - assert stringify(tuple[str, ...], True) == "tuple[str, ...]" + assert stringify(tuple[str, ...]) == "tuple[str, ...]" + assert stringify(tuple[str, ...], "smart") == "tuple[str, ...]" - assert stringify(tuple[()], False) == "tuple[()]" - assert stringify(tuple[()], True) == "tuple[()]" + assert stringify(tuple[()]) == "tuple[()]" + assert stringify(tuple[()], "smart") == "tuple[()]" - assert stringify(list[dict[str, tuple]], False) == "list[dict[str, tuple]]" - assert stringify(list[dict[str, tuple]], True) == "list[dict[str, tuple]]" + assert stringify(list[dict[str, tuple]]) == "list[dict[str, tuple]]" + assert stringify(list[dict[str, tuple]], "smart") == "list[dict[str, tuple]]" - assert stringify(type[int], False) == "type[int]" - assert stringify(type[int], True) == "type[int]" + assert stringify(type[int]) == "type[int]" + assert stringify(type[int], "smart") == "type[int]" @pytest.mark.skipif(sys.version_info < (3, 9), reason='python 3.9+ is required.') def test_stringify_Annotated(): from typing import Annotated # type: ignore - assert stringify(Annotated[str, "foo", "bar"], False) == "str" # NOQA - assert stringify(Annotated[str, "foo", "bar"], True) == "str" # NOQA + assert stringify(Annotated[str, "foo", "bar"]) == "str" # NOQA + assert stringify(Annotated[str, "foo", "bar"], "smart") == "str" # NOQA def test_stringify_type_hints_string(): - assert stringify("int", False) == "int" - assert stringify("int", True) == "int" + assert stringify("int") == "int" + assert stringify("int", "smart") == "int" - assert stringify("str", False) == "str" - assert stringify("str", True) == "str" + assert stringify("str") == "str" + assert stringify("str", "smart") == "str" - assert stringify(List["int"], False) == "List[int]" - assert stringify(List["int"], True) == "~typing.List[int]" + assert stringify(List["int"]) == "List[int]" + assert stringify(List["int"], "smart") == "~typing.List[int]" - assert stringify("Tuple[str]", False) == "Tuple[str]" - assert stringify("Tuple[str]", True) == "Tuple[str]" + assert stringify("Tuple[str]") == "Tuple[str]" + assert stringify("Tuple[str]", "smart") == "Tuple[str]" - assert stringify("unknown", False) == "unknown" - assert stringify("unknown", True) == "unknown" + assert stringify("unknown") == "unknown" + assert stringify("unknown", "smart") == "unknown" def test_stringify_type_hints_Callable(): - assert stringify(Callable, False) == "Callable" - assert stringify(Callable, False, True) == "typing.Callable" - assert stringify(Callable, True) == "~typing.Callable" + assert stringify(Callable) == "Callable" + assert stringify(Callable, "fully-qualified") == "typing.Callable" + assert stringify(Callable, "smart") == "~typing.Callable" if sys.version_info >= (3, 7): - assert stringify(Callable[[str], int], False) == "Callable[[str], int]" - assert stringify(Callable[[str], int], False, True) == "typing.Callable[[str], int]" - assert stringify(Callable[[str], int], True) == "~typing.Callable[[str], int]" + assert stringify(Callable[[str], int]) == "Callable[[str], int]" + assert stringify(Callable[[str], int], "fully-qualified") == "typing.Callable[[str], int]" + assert stringify(Callable[[str], int], "smart") == "~typing.Callable[[str], int]" - assert stringify(Callable[..., int], False) == "Callable[[...], int]" - assert stringify(Callable[..., int], False, True) == "typing.Callable[[...], int]" - assert stringify(Callable[..., int], True) == "~typing.Callable[[...], int]" + assert stringify(Callable[..., int]) == "Callable[[...], int]" + assert stringify(Callable[..., int], "fully-qualified") == "typing.Callable[[...], int]" + assert stringify(Callable[..., int], "smart") == "~typing.Callable[[...], int]" else: - assert stringify(Callable[[str], int], False) == "Callable[str, int]" - assert stringify(Callable[[str], int], False, True) == "typing.Callable[str, int]" - assert stringify(Callable[[str], int], True) == "~typing.Callable[str, int]" + assert stringify(Callable[[str], int]) == "Callable[str, int]" + assert stringify(Callable[[str], int], "fully-qualified") == "typing.Callable[str, int]" + assert stringify(Callable[[str], int], "smart") == "~typing.Callable[str, int]" - assert stringify(Callable[..., int], False) == "Callable[..., int]" - assert stringify(Callable[..., int], False, True) == "typing.Callable[..., int]" - assert stringify(Callable[..., int], True) == "~typing.Callable[..., int]" + assert stringify(Callable[..., int]) == "Callable[..., int]" + assert stringify(Callable[..., int], "fully-qualified") == "typing.Callable[..., int]" + assert stringify(Callable[..., int], "smart") == "~typing.Callable[..., int]" def test_stringify_type_hints_Union(): - assert stringify(Optional[int], False) == "Optional[int]" - assert stringify(Optional[int], False, True) == "typing.Optional[int]" - assert stringify(Optional[int], True) == "~typing.Optional[int]" + assert stringify(Optional[int]) == "Optional[int]" + assert stringify(Optional[int], "fully-qualified") == "typing.Optional[int]" + assert stringify(Optional[int], "smart") == "~typing.Optional[int]" - assert stringify(Union[str, None], False) == "Optional[str]" - assert stringify(Union[str, None], False, True) == "typing.Optional[str]" - assert stringify(Union[str, None], True) == "~typing.Optional[str]" + assert stringify(Union[str, None]) == "Optional[str]" + assert stringify(Union[str, None], "fully-qualified") == "typing.Optional[str]" + assert stringify(Union[str, None], "smart") == "~typing.Optional[str]" - assert stringify(Union[int, str], False) == "Union[int, str]" - assert stringify(Union[int, str], False, True) == "typing.Union[int, str]" - assert stringify(Union[int, str], True) == "~typing.Union[int, str]" + assert stringify(Union[int, str]) == "Union[int, str]" + assert stringify(Union[int, str], "fully-qualified") == "typing.Union[int, str]" + assert stringify(Union[int, str], "smart") == "~typing.Union[int, str]" if sys.version_info >= (3, 7): - assert stringify(Union[int, Integral], False) == "Union[int, numbers.Integral]" - assert stringify(Union[int, Integral], False, True) == "typing.Union[int, numbers.Integral]" - assert stringify(Union[int, Integral], True) == "~typing.Union[int, ~numbers.Integral]" + assert stringify(Union[int, Integral]) == "Union[int, numbers.Integral]" + assert stringify(Union[int, Integral], "fully-qualified") == "typing.Union[int, numbers.Integral]" + assert stringify(Union[int, Integral], "smart") == "~typing.Union[int, ~numbers.Integral]" - assert (stringify(Union[MyClass1, MyClass2], False) == + assert (stringify(Union[MyClass1, MyClass2]) == "Union[tests.test_util_typing.MyClass1, tests.test_util_typing.]") - assert (stringify(Union[MyClass1, MyClass2], False, True) == + assert (stringify(Union[MyClass1, MyClass2], "fully-qualified") == "typing.Union[tests.test_util_typing.MyClass1, tests.test_util_typing.]") - assert (stringify(Union[MyClass1, MyClass2], True) == + assert (stringify(Union[MyClass1, MyClass2], "smart") == "~typing.Union[~tests.test_util_typing.MyClass1, ~tests.test_util_typing.]") else: - assert stringify(Union[int, Integral], False) == "numbers.Integral" - assert stringify(Union[int, Integral], False, True) == "numbers.Integral" - assert stringify(Union[int, Integral], True) == "~numbers.Integral" + assert stringify(Union[int, Integral]) == "numbers.Integral" + assert stringify(Union[int, Integral], "fully-qualified") == "numbers.Integral" + assert stringify(Union[int, Integral], "smart") == "~numbers.Integral" - assert stringify(Union[MyClass1, MyClass2], False) == "tests.test_util_typing.MyClass1" - assert stringify(Union[MyClass1, MyClass2], False, True) == "tests.test_util_typing.MyClass1" - assert stringify(Union[MyClass1, MyClass2], True) == "~tests.test_util_typing.MyClass1" + assert stringify(Union[MyClass1, MyClass2]) == "tests.test_util_typing.MyClass1" + assert stringify(Union[MyClass1, MyClass2], "fully-qualified") == "tests.test_util_typing.MyClass1" + assert stringify(Union[MyClass1, MyClass2], "smart") == "~tests.test_util_typing.MyClass1" def test_stringify_type_hints_typevars(): @@ -361,84 +361,84 @@ def test_stringify_type_hints_typevars(): T_contra = TypeVar('T_contra', contravariant=True) if sys.version_info < (3, 7): - assert stringify(T, False) == "T" - assert stringify(T, True) == "T" + assert stringify(T) == "T" + assert stringify(T, "smart") == "T" - assert stringify(T_co, False) == "T_co" - assert stringify(T_co, True) == "T_co" + assert stringify(T_co) == "T_co" + assert stringify(T_co, "smart") == "T_co" - assert stringify(T_contra, False) == "T_contra" - assert stringify(T_contra, True) == "T_contra" + assert stringify(T_contra) == "T_contra" + assert stringify(T_contra, "smart") == "T_contra" - assert stringify(List[T], False) == "List[T]" - assert stringify(List[T], True) == "~typing.List[T]" + assert stringify(List[T]) == "List[T]" + assert stringify(List[T], "smart") == "~typing.List[T]" else: - assert stringify(T, False) == "tests.test_util_typing.T" - assert stringify(T, True) == "~tests.test_util_typing.T" + assert stringify(T) == "tests.test_util_typing.T" + assert stringify(T, "smart") == "~tests.test_util_typing.T" - assert stringify(T_co, False) == "tests.test_util_typing.T_co" - assert stringify(T_co, True) == "~tests.test_util_typing.T_co" + assert stringify(T_co) == "tests.test_util_typing.T_co" + assert stringify(T_co, "smart") == "~tests.test_util_typing.T_co" - assert stringify(T_contra, False) == "tests.test_util_typing.T_contra" - assert stringify(T_contra, True) == "~tests.test_util_typing.T_contra" + assert stringify(T_contra) == "tests.test_util_typing.T_contra" + assert stringify(T_contra, "smart") == "~tests.test_util_typing.T_contra" - assert stringify(List[T], False) == "List[tests.test_util_typing.T]" - assert stringify(List[T], True) == "~typing.List[~tests.test_util_typing.T]" + assert stringify(List[T]) == "List[tests.test_util_typing.T]" + assert stringify(List[T], "smart") == "~typing.List[~tests.test_util_typing.T]" if sys.version_info >= (3, 10): - assert stringify(MyInt, False) == "tests.test_util_typing.MyInt" - assert stringify(MyInt, True) == "~tests.test_util_typing.MyInt" + assert stringify(MyInt) == "tests.test_util_typing.MyInt" + assert stringify(MyInt, "smart") == "~tests.test_util_typing.MyInt" else: - assert stringify(MyInt, False) == "MyInt" - assert stringify(MyInt, True) == "MyInt" + assert stringify(MyInt) == "MyInt" + assert stringify(MyInt, "smart") == "MyInt" def test_stringify_type_hints_custom_class(): - assert stringify(MyClass1, False) == "tests.test_util_typing.MyClass1" - assert stringify(MyClass1, True) == "~tests.test_util_typing.MyClass1" + assert stringify(MyClass1) == "tests.test_util_typing.MyClass1" + assert stringify(MyClass1, "smart") == "~tests.test_util_typing.MyClass1" - assert stringify(MyClass2, False) == "tests.test_util_typing." - assert stringify(MyClass2, True) == "~tests.test_util_typing." + assert stringify(MyClass2) == "tests.test_util_typing." + assert stringify(MyClass2, "smart") == "~tests.test_util_typing." def test_stringify_type_hints_alias(): MyStr = str MyTuple = Tuple[str, str] - assert stringify(MyStr, False) == "str" - assert stringify(MyStr, True) == "str" + assert stringify(MyStr) == "str" + assert stringify(MyStr, "smart") == "str" - assert stringify(MyTuple, False) == "Tuple[str, str]" # type: ignore - assert stringify(MyTuple, True) == "~typing.Tuple[str, str]" # type: ignore + assert stringify(MyTuple) == "Tuple[str, str]" # type: ignore + assert stringify(MyTuple, "smart") == "~typing.Tuple[str, str]" # type: ignore @pytest.mark.skipif(sys.version_info < (3, 8), reason='python 3.8+ is required.') def test_stringify_type_Literal(): from typing import Literal # type: ignore - assert stringify(Literal[1, "2", "\r"], False) == "Literal[1, '2', '\\r']" - assert stringify(Literal[1, "2", "\r"], False, True) == "typing.Literal[1, '2', '\\r']" - assert stringify(Literal[1, "2", "\r"], True) == "~typing.Literal[1, '2', '\\r']" + assert stringify(Literal[1, "2", "\r"]) == "Literal[1, '2', '\\r']" + assert stringify(Literal[1, "2", "\r"], "fully-qualified") == "typing.Literal[1, '2', '\\r']" + assert stringify(Literal[1, "2", "\r"], "smart") == "~typing.Literal[1, '2', '\\r']" @pytest.mark.skipif(sys.version_info < (3, 10), reason='python 3.10+ is required.') def test_stringify_type_union_operator(): - assert stringify(int | None, False) == "int | None" # type: ignore - assert stringify(int | None, True) == "int | None" # type: ignore + assert stringify(int | None) == "int | None" # type: ignore + assert stringify(int | None, "smart") == "int | None" # type: ignore - assert stringify(int | str, False) == "int | str" # type: ignore - assert stringify(int | str, True) == "int | str" # type: ignore + assert stringify(int | str) == "int | str" # type: ignore + assert stringify(int | str, "smart") == "int | str" # type: ignore - assert stringify(int | str | None, False) == "int | str | None" # type: ignore - assert stringify(int | str | None, True) == "int | str | None" # type: ignore + assert stringify(int | str | None) == "int | str | None" # type: ignore + assert stringify(int | str | None, "smart") == "int | str | None" # type: ignore def test_stringify_broken_type_hints(): - assert stringify(BrokenType, False) == 'tests.test_util_typing.BrokenType' - assert stringify(BrokenType, True) == '~tests.test_util_typing.BrokenType' + assert stringify(BrokenType) == 'tests.test_util_typing.BrokenType' + assert stringify(BrokenType, "smart") == '~tests.test_util_typing.BrokenType' def test_stringify_mock(): with mock(['unknown']): import unknown - assert stringify(unknown.secret.Class, False) == 'unknown.secret.Class' - assert stringify(unknown.secret.Class, True) == 'unknown.secret.Class' + assert stringify(unknown.secret.Class) == 'unknown.secret.Class' + assert stringify(unknown.secret.Class, "smart") == 'unknown.secret.Class' From 082c876619ab1637ebc8a3d8c5f999350d74abbe Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 26 Dec 2021 00:13:06 +0000 Subject: [PATCH 120/192] Update message catalogs --- sphinx/locale/.tx/config | 1 - sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70589 -> 70589 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101386 -> 101386 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 76339 -> 76339 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 79373 -> 86421 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 243 +++++++++--------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83458 -> 83458 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19643 -> 19643 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80635 -> 80635 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/sphinx.pot | 102 ++++---- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78631 -> 78631 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63473 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 148 +++++------ .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 148 +++++------ sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41839 -> 41839 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 148 +++++------ 126 files changed, 4687 insertions(+), 4687 deletions(-) diff --git a/sphinx/locale/.tx/config b/sphinx/locale/.tx/config index 06c5142d599..598089e9f32 100644 --- a/sphinx/locale/.tx/config +++ b/sphinx/locale/.tx/config @@ -5,4 +5,3 @@ host = https://www.transifex.com file_filter = /LC_MESSAGES/sphinx.po source_file = sphinx.pot source_lang = en - diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 44efd3f30c2d597d74d87cb1526f23b1aaa36282..795f0eb62f493b6ffd0bd0eb91305b87f3a10c42 100644 GIT binary patch delta 21 ccmZp)YqZ;-B*0;0reI)TWoWcnOW-;m06_@_zyJUM delta 16 XcmZp)YqZ;-Brw@afN!&bz(qa)E~*7C diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index e9fde5df604..4c15203d8f8 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -50,7 +50,7 @@ msgstr "يحتاج هذا المشروع على الاقل الى الاصدار msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "المستند غير قابل للقراءة. تجاهل." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "التصميم %r " -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "متغير" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "نوع" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "كائن" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "فشل" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 0ee6a9a81bbc924fefefd9da2afccdc782ea8944..481eacab81120dd2b709f4cc9d5d5a22fd381b3b 100644 GIT binary patch delta 19 acmey${FQk^2ZxcFf`NgRq0z<(sf++cLhuH0st;K1^)m5 diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 657a624a93b..54776b895c2 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 27fb475a2767e288d3f2d4887481c1c72c17bb67..c9c413e9b03cb575701abfad12d990d14cc37af4 100644 GIT binary patch delta 21 dcmbPjKihu84qgr;GX(\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "প্যারামিটার" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "রিটার্নস" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "রিটার্ন টাইপ" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index f551c0b3d1226be1ce876586a747f53aad486f1e..a50bcf73fc80644f5e7751778c7f41351299734a 100644 GIT binary patch delta 21 ccmbQMGgoKBVqOj-GX(\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paràmetres" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipus de retorn" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funció" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipus" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index cccff9abdac265ddf7871d0e7a92a717fd575b31..43b20d0f9e544f199e0fcc7793e11d953fcf4286 100644 GIT binary patch delta 21 ccmaDU^ipU;DJzGOnSz0Vm7&q*TGltr08o|&(f|Me delta 16 YcmaDU^ipU;DeL69tbCiBS)VZj06fA5hyVZp diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 7d5c4b73ab6..cddbf878b00 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Jalajöj" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "retal jalöj" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "Ruwäch" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 0afed9fba369db9ceb4b4e9eaaa92f43ddc729ad..836db0bef82c0a44636f33095adc52e6635ab087 100644 GIT binary patch delta 21 ccmbQ^G{OV delta 16 XcmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -50,7 +50,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vrací" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Typ návratové hodnoty" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "proměnná" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Vyvolá" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "třída" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 4bca21aebc58caf46c51df515073be1d7d946c40..41f70d9cdc6175b0a1eebebab17808d0be48c825 100644 GIT binary patch delta 21 ccmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -50,7 +50,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramedrau" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "aelod" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 717353f7abb47f9f5c6049530d11bff4e6b0febf..e1d9bddfd3f48c82c3bcc39dc6d7bde7eedd7242 100644 GIT binary patch delta 20 bcmdm)u`^?Xp#q1InSz0Vm7&pMO9c@CN{j{J delta 16 Xcmdm)u`^?Xp~B=y1-{Mp3crK_Ji-Qj diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 6bc52d89b76..6822a4ec253 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -52,7 +52,7 @@ msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med de msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -138,7 +138,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -330,127 +330,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domænet %s er allerede registreret" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Rollen %r er allerede registreret til domæne %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser for %r er allerede registreret" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Kunne ikke importere udvidelse %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Udvidelsen %s brugt af dette projekt kræver mindst Sphinx v%s; den kan derfor ikke bygges med denne version." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -462,42 +462,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1861,75 +1861,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returnerer" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Returtype" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "optæl" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1958,36 +1958,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Template-parametre" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2278,36 +2278,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3517,6 +3517,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3643,8 +3648,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index cd86dd51c3f78a886ea922657cb0fb3df266b7ed..986de00619dd5ff2787da33d4cf7c0041c5dd0e5 100644 GIT binary patch delta 21 dcmZ1)xioUaQYj82GX(\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -52,7 +52,7 @@ msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht ge msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -138,7 +138,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -330,127 +330,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Ursprüngliche Ausnahme:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -462,42 +462,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1861,75 +1861,75 @@ msgstr "" msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Rückgabe" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Rückgabetyp" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "Member" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "Variable" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "Typ" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1958,36 +1958,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Template Parameter" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Wirft" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "Klasse" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2278,36 +2278,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3517,6 +3517,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3643,8 +3648,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index d62ce30d1aa380aa5c7997ab10c93d0ca49fc635..c596d81e7db023ddb7859f181ae0c93f564ef87f 100644 GIT binary patch delta 23 ecmZo@V{K?--JsCKVPvLYU|?lvv{|F+#sL6V_y_9% delta 18 ZcmZo@V{K?--JsAk*`tYXvtHAs0{}yR2gv{c diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index e8363d5900f..7870646ba60 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -51,7 +51,7 @@ msgstr "Αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχ msgid "making output directory" msgstr "δημιουργία καταλόγου εξόδου" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "κατά τον καθορισμό της επέκτασης %s" @@ -137,7 +137,7 @@ msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσ msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,12 +158,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" @@ -329,127 +329,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "το έγγραφο δεν είναι αναγνωσιμό. Θα αγνοηθεί." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Η κλάση μεταγλώττισης %s δεν έχει χαρακτηριστικό \"name\" " -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Ο μεταγλωττιστής %r υφίσταται ήδη (στο δομοστοιχείο %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Το όνομα μεταγλωττιστή %s δεν είναι καταχωρημένο ή διαθέσιμο δια μέσου του σημείου εισαγωγής" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Το όνομα μεταγλωττιστή %sδεν είναι καταχορημένο" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "ο τομέας %s είναι ήδη καταχωρημένος" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "ο τομέας %s δεν έχει καταχωρηθεί ακόμη" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Η οδηγία %r είναι ήδη καταχωρημένη στον τομέα %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Ο ρόλος %r είναι ήδη καταχωρημένος στον τομέα %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Ο δείκτης %r είναι ήδη καταχωρημένος στον τομέα %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "Το object_type %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "Το crossref_type %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "το source_suffix %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "το source_parser για το %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Ο αναλυτής πηγής για το %s δεν είναι καταχωρημένος" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Ο μεταφραστής για το %r υφίσταται ήδη" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "το kwargs για το add_node() πρέπει να είναι μία (visit, depart) συνάρτηση πλειάδας: %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "το enumerable_node %r είναι ήδη καταχωρημένο" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "η επέκταση %r συγχωνεύθηκε ήδη με το Sphinx από την έκδοση %s; η επέκταση αυτή θα αγνοηθεί." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Αρχική εξαίρεση:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Δεν ήταν δυνατή η εισαγωγή της επέκτασης %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "η επέκταση %r δεν έχει συνάρτηση setup(); αποτελεί δομοστοιχείο επέκτασης του Sphinx;" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Η επέκταση %s η οποία χρησιμοποιείται από αυτό το έργο απαιτεί Sphinx έκδοσης τουλάχιστον %s: επομένως δεν είναι δυνατή η μεταγλώττιση με αυτή την έκδοση." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -461,42 +461,42 @@ msgstr "η επέκταση %r επιστρέφει ένα μη υποστηρι msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "το θέμα %r δεν έχει ρύθμιση \"theme\"" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "το θέμα %r δεν έχει ρύθμιση \"inherit\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "δεν βρέθηκε θέμα με το όνομα %r, το οποίο κληρονομήθηκε από το %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "η ρύθμιση %s.%s δεν εμφανίζεται από τις παραμετροποιήσεις θέματος που αναζητήθηκαν" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "δόθηκε μη υποστηριζόμενη επιλογή θέματος %r" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "το αρχείο %r στο μονοπάτι θέματος δεν αποτελεί ένα έγκυρο zipfile ή δεν περιλαμβάνει ένα θέμα" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "δεν βρέθηκε θέμα με όνομα %r (απουσιάζει το theme.conf;)" @@ -1860,75 +1860,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Παράμετροι" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Επιστρέφει" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "μέλος" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "ένωση" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "τύπος" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1957,36 +1957,36 @@ msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο % msgid "Citation [%s] is not referenced." msgstr "Η παραπομπή [%s] δεν αναφέρεται." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Παράμετροι Προτύπου" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Προκαλεί" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "κλάση" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "έννοια" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2277,36 +2277,36 @@ msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο % msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "το numfig έχει απενεργοποιηθεί. Το :numref: θα ανγοηθεί." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "ο σύνδεσμος δεν έχει λεζάντα: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "ανέγκυρο numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "ανέγκυρο numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3516,6 +3516,11 @@ msgstr "αποτυχία" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "άγνωστος τύπος κόμβου: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3642,8 +3647,3 @@ msgstr "η λεζάντα δεν βρίσκεται εντός μίας εικό #, python-format msgid "unimplemented node type: %r" msgstr "μη υλοποιημένος τύπος κόμβου: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "άγνωστος τύπος κόμβου: %r" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 8fe3692ae45253edea30b64343d671bffc351786..72435948f9efe887f525f1be020623fa23c1290c 100644 GIT binary patch delta 19 acmcb?e1myH2ZxcFf`NgRq0z<(9*h7$_66nu delta 13 Vcmcb?e1myH$HWbM8>cxj0st#V1*iZ3 diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 817b275a494..055d80c4eae 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 123ecdcdaf9435ae78b4e3d2eb3272a9abb5af35..6988b4f0be06be339da90038ff96ac9e73620691 100644 GIT binary patch delta 19 acmeBT>0+7C!C_>kU|?WnXtZ%c6(ayPgav*8 delta 13 UcmeBT>0+7CF>wRm#%U#t03>k*KmY&$ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index aa0b2fcb67e..03d6add59d5 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index f90e25d6903b73326a584e499d4ec1284c597f63..ddedc0431a39be5e3a984a882a27ebfa547394b1 100644 GIT binary patch delta 19 acmZo=X=Rzv!C_>kU|?WnXtZ%cDI)+i#szNx delta 13 UcmZo=X=RzvF>wRm#%cMC03+`OF#rGn diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index a71d111bf58..081f98162ce 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 3c78e9dc237bd66f79f1f292da00ca1d43f22b03..f0271340ad960ac4e8db3972c17ab6f2050c8214 100644 GIT binary patch delta 21 ccmX@WcYtq$5etWrnSz0Vm7&pQD;73p0785P3IG5A delta 15 WcmX@WcYtq$5zFK#7QV#}EX)8Z<^*g2 diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 8f7bdb16c66..d2c6321d32c 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -50,7 +50,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroj" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcio" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klaso" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 4f2a962386f184520ff53d54142710c9c58a19e5..d32fb0886931d8e824cdf888d9e8df81c74d1759 100644 GIT binary patch delta 23 fcmdnHoMrEFmJP9!IgHE{3=FIcjW(xFj%WY?Y!3*5 delta 23 fcmdnHoMrEFmJP9!ISh>y3=FIc4L7Gwj%WY?Ys?6H diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index aa0e3260953..255a94e8ae9 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -55,7 +55,7 @@ msgstr "Este proyecto necesita al menos Sphinx v%s y por lo tanto no se puede co msgid "making output directory" msgstr "creando directorio de salida" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "mientras configura la extensión %s:" @@ -141,7 +141,7 @@ msgstr "la directiva %r ya está registrada, esa se reemplazará" msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +162,12 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" @@ -333,127 +333,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "documento no legible. Ignorado." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Constructor clase %s no tiene ningún atributo \"name\"" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Constructor %r ya existe (en el módulo %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Nombre de constructor %s no registrados o disponibles a través del punto de entrada" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Nombre de constructor %s no registrado" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "dominio %s ya esta registrado" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "dominio %s no esta registrado" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "La directiva %r ya fue registrada en el dominio %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "El rol %r ya fue registrado en el dominio %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "El índice %r ya fue registrado en el dominio %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "El %r object_type ya está registrado" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "El %r crossref_type ya está registrado" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r ya está registrado" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser para %r ya está registrado" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Analizador de fuentes para %s no registrado" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Traductor para %r ya existe" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs para la función add_node() debe ser una tupla de función (visitar, salir): %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r ya esta registrado" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "la extensión %r ya se fusionó con Sphinx desde la versión %s; esta extensión se omite." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Excepción original:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "No puede importar la extensión %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "extensión %r no tiene ninguna función setup(); ¿es realmente un módulo de extensión de Sphinx?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "La extensión %s utilizada por este proyecto necesita al menos la versión de Sphinx v%s; por lo tanto no puede ser construido con esta versión." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -465,42 +465,42 @@ msgstr "extensión %r devuelve un objeto no soportado de su función setup(); de msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "tema %r no tiene configuraciones de \"tema\"" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "tema %r no tiene configuraciones de \"heredar\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "no encontrado ningún tema llamado %r, heredado por %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "configuración de %s.%s se produce en ninguna de las configuraciones de tema buscado" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "opción de tema no soportada %r fue dada" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "archivo %r o ruta del tema no es un archivo zip válido o no contiene ningún tema" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "sin tema llamado %r encontrado (¿falta el archivo theme.conf?)" @@ -1864,75 +1864,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Devuelve" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo del valor devuelto" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "miembro" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "función" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "unión" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1961,36 +1961,36 @@ msgstr "citación duplicada %s, otra instancia en %s" msgid "Citation [%s] is not referenced." msgstr "Citación [%s] no está referenciada." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parametros de Plantilla" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Lanzamientos" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "clase" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2281,36 +2281,36 @@ msgstr "etiqueta duplicada %s, otra instancia en %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicada %s descripción de %s, otra instancia en %s" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está deshabilitado. :numref: se ignora." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "el enlace no tiene subtítulo: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "inválido numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "inválido numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3520,6 +3520,11 @@ msgstr "fallado" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "tipo de nodo desconocido: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3646,8 +3651,3 @@ msgstr "subtítulo no dentro de una figura." #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nodo no implementado: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "tipo de nodo desconocido: %r" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 84a1feba7ad5dc845efdbec6b9d88e4dd0a84057..7591c040cfea31d0e7ac88b7f5e3f9d3c7032643 100644 GIT binary patch delta 23 ecmX@t$#kxhX+xS1hmo0rfq|8w(dIm#1PcIVOb4d` delta 18 ZcmX@t$#kxhX+xUN\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -52,7 +52,7 @@ msgstr "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võim msgid "making output directory" msgstr "väljundkataloogi loomine" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -138,7 +138,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -330,127 +330,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "dokument pole loetav ja seda eiratakse." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Ehitaja klassil %s puudub atribuut \"name\"" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Ehitaja %r on juba olemas (moodulis %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Ehitajat nimega %s pole registreeritud" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domeen %s on juba registreeritud" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domeen %s pole veel registreeritud" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser on %r jaoks juba registreeritud" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Lähtekoodi analüsaatorit pole %s jaoks registreeritud" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Algne erind:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Laiendust %s pole võimalik importida" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "erindil %r puudub funktsioon setup(); kas see on päriselt Sphinxi laiendusmoodul?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -462,42 +462,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Pythoni täiustusettepanekud; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "teemal %r puudub \"theme\" säte" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "teemal %r puudub \"inherit\" säte" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "fail %r teemarajal pole korrektni zip-fail või ei sisalda see teemat" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "teemat nimega %r ei leitud (kas theme.conf on puudu?)" @@ -1861,75 +1861,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Tagastab" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tagastustüüp" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "liige" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "muutuja" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "loend" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tüüp" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "funktsiooni parameeter" @@ -1958,36 +1958,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Malli parameetrid" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2278,36 +2278,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "vigane numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "vigane numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3517,6 +3517,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3643,8 +3648,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 50195e60b6cb52d7c6d07aff5f98d34e109bd0e0..c142874c64348a8e36a4e1a6f45c12585f579894 100644 GIT binary patch delta 21 ccmexw^50}bumFdVnSz0Vm7&q*XaN;209B_3Qvd(} delta 16 Xcmexw^50}bu)ySM0lv+N0&-jcKT`$r diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 2b40c555f7d..a184eb1e34f 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -50,7 +50,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Hobekuntza Proposamena; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroak" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Itzultzen du" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Itzulketa mota" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "partaidea" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "aldagaia" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funtzioa" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makroa" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "mota" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Jaurtitzen du" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klasea" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 63d04a14a7e4db938101ca4bcb33ca396a68b3d4..77a42149d9ae4aa5c7cf62bac8086124f7c0b186 100644 GIT binary patch delta 23 fcmeC0!PYf{ZG-y?4kI%K0|P5Vqs{&+c0UFHVo(Uh delta 18 acmeC0!PYf{ZG-!Y$@wezHixd*`WOIBb_nnQ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index f5e2b40cf6f..47577d8df67 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -52,7 +52,7 @@ msgstr "این پروژه دست که به افینکس نگارش%s نیاز د msgid "making output directory" msgstr "ایجاد پوشه ی برون داد" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "در حال راه اندازی افزونه‌ی%s:" @@ -138,7 +138,7 @@ msgstr "دستور %r از قبل ثبت شده که مقدار قبلی ناد msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" @@ -330,127 +330,127 @@ msgstr "برای سند \"%s\": %r پرونده های متعدد یافت شد msgid "document not readable. Ignored." msgstr "سند قابل خواندن نیست. نادیده گرفته شد." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "کلاس سازنده %s هیچ ویژگی‌ای به عنوان \"name\" ندارد" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "سازنده %r در حال حاضر وجود دارد (در پیمانه‌ی %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "نام سازنده %s یا ثبت شده نیست و یا فقط از طریق نقطه ورود در دسترس است" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "نام سازنده %s ثبت نشده است" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "دامنه ی %sپیش تر ثبت شده" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "دامنه %s هنوز ثبت نشده است" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "دستورالعمل %r قبلاً برای دامنه %s ثبت شده" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "نقش %r قبلاً برای دامنه %s ثبت شده" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "شاخص %r قبلاً برای دامنه %s ثبت شده" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "نوع شیئ (object_type) %r قبلاً برای دامنه ثبت شده" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "ارجاع متقابل (crossref_type) %r قبلاً ثبت شده" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "پسوند (source_suffix) %r قبلاً ثبت شده است" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "تحلیل‌گر منبع (source_parser) %r قبلاً ثبت شده است" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "تجزیه کننده مبدإ برای %s ثبت نشده است" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "در حال حاضر برای %r مترجم وجود دارد" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "مؤلّفه‌های کلیدی برای تابع add_node() باید تاپل تابعی (بازدید، خروج) باشند: %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "بست قابل شمارش (enumerable_node) %r قبلاً ثبت شده است" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "ترسیم‌گر ریاضی %s قبلاً ثبت شده" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "افزونه‌ی %r از نسخه‌ی %s اسفینکس به بعد، در آن ادغام شده؛ بنابراین نادیده گرفته می‌شود." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "ایراد اصلی:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "امکان وارد کردن افزونه‌ی %s نبود" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "افزونه‌ی %r هیچ تابع setup()ی ندارد؛ آیا این مورد واقعاً یک پیمانه‌ی افزونه‌ی اسفینکس است؟" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "افزونه‌ی %s که در این پروژه استفاده شده دست کم نیازمند اسفینکس نسخه‌ی %s است؛ بنابراین با این نسخه قابل ساخت نیست." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -462,42 +462,42 @@ msgstr "افزونه‌ی %r شیئ پشتیبانی نشده‌‌ای از ت msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "زمینه ی %r فاقد تنظیمات است" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "زمینه‌ی %r تنظیمات به ارث بری ندارد" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "هیچ زمینه‌ای به نام %r پیدا نشد، که با %r جایگزین شود" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "تنظیمات %s. %s در هیچ یک از پیکربندی‌های جستجو شده رخ نمی‌دهد" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "گزینه‌ی پشتیبانی نشده‌ی زمینه %r داده شده" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "پرونده‌ی %r که مسیر زمینه به آن اشاره دارد یا پرونده زیپ معتبری نیست یا هیچ زمینه‌ای درونش ندارد" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "زمینه‌ی خواندن مستندات اسفینکس (< 0.3.0) پیدا شد. از نسخه‌ی ۶/۰ اسفینکس این زمینه‌ دیگر در دسترس نخواهد بود" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "هیچ زمینه‌ای با نام %r پیدا نشد(آیا پرونده theme.conf گم شده؟)" @@ -1861,75 +1861,75 @@ msgstr "گزینه‌ی \":file:\" برای دستورالمعل جدول داد msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است." -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "بازگشت ها" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "نوع برگشتی" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "عضو" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "متغیّر" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "تابع" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "ماکرو" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "ساختار" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "اجتماع" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "شمارش" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "شمارنده" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "گونه" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "مؤلّفه‌ی تابع" @@ -1958,36 +1958,36 @@ msgstr "نقل‌قول %s تکراری، مورد دیگر در %s قرار د msgid "Citation [%s] is not referenced." msgstr "نقل [%s] قول ارجاع داده نشده." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "اعلان ++C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. cpp:%s:: %s' است." -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "پارامترهای قالب" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "ایجاد" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "کلاس" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "کانسپت" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "مؤلّفه‌ی قالب" @@ -2278,36 +2278,36 @@ msgstr "بر چسب تکراری %s، مورد دیگر در %s قرار دار msgid "duplicate %s description of %s, other instance in %s" msgstr "تکرار توضیح %s از %s، مورد دیگر در%s قرار دارد" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "شماره‌ی شکل غیر فعّال است. گزینه‌ی :numref: نادیده گرفته می‌شود." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "شکست در ایجاد ارجاع متقابل. هیچ شماره انتساب داده نشده: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "پیوند هیچ برچسبی ندارد: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "قالب شماره‌ی شکل نامعتبر: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "قالب شماره‌ی شکل نامعتبر: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "برچشب تعریف نشده: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "شکست در ایجاد ارجاع متقابل. عنوان یا زیرنویس پیدا نشد: %s" @@ -3517,6 +3517,11 @@ msgstr "شکست خورد" msgid "unknown directive or role name: %s:%s" msgstr "نام نقش یا دستورالعمل ناشناخته: %s:%s" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "بست از نوع ناشناخته: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3643,8 +3648,3 @@ msgstr "عنوان درون شکل نیست." #, python-format msgid "unimplemented node type: %r" msgstr "بست به کار نرفته: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "بست از نوع ناشناخته: %r" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 2dbec3364fa43515308bc625219db85d6fe0d4c4..9109a3bde51d4d3758c0e7c0b639ecfa3dc95c42 100644 GIT binary patch delta 21 ccmaDL_CRdI88!|hGX(BLxEkD?`K0SJ--309B#~6951J diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index f121a26e4e6..8f2fcf57adf 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 2aaffb6700bb7f23518b07839cb0d37eb76c3e0d..376ae106ea05c9136be1302c125c69012ead65d6 100644 GIT binary patch delta 23 fcmdmdg=O;\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -75,7 +75,7 @@ msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être constru msgid "making output directory" msgstr "création du dossier de destinataire" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "lors de l'initialisation de l'extension %s :" @@ -161,7 +161,7 @@ msgstr "la directive %r est déjà enregistrée, elle sera écrasée" msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -169,12 +169,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -182,12 +182,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" @@ -353,127 +353,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "document illisible, il sera ignoré." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "La classe Builder %s n'a pas d'attribut « name »" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Le constructeur %r existe déjà (dans le module %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Le nom de Constructeur %s n'est ni enregistré ni accessible par point d'entrée" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Constructeur %s non enregistré" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domaine %s déjà enregistré" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domaine 1%s pas encore enregistré" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "La directive %r est déjà enregistrée sur le domaine %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Le rôle %r est déjà enregistré sur le domaine %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "L'index %r est déjà enregistré sur le domaine %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "Le type de l'objet %r est déjà enregistré" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "Le type %r crossref_type est déjà enregistré" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "L'extension source %r est déjà enregistrée" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser pour %r est déjà enregistré" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "source_parser pour %s non enregistré" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Il existe déjà un traducteur pour %r" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "Les kwargs pour add_node() doivent être un tuple de fonction (visite, départ) : %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r est déjà enregistré" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "l'extension %r a été intégrée à Sphinx depuis la version %s ; cette extension est ignorée." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Exception initiale :\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "L'extension %s ne peut pas être importée" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "l'extension %r n'a pas de fonction setup(); est-elle réellement un module d'extension de Sphinx ?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "L'extension %s utilisée par ce projet nécessite au moins Sphinx v%s ; il ne peut donc pas être construit avec la version courante." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -485,42 +485,42 @@ msgstr "l'extension %r a renvoyé par sa fonction setup() un type d'objet non su msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "Le thème %r n'a pas de paramètre « theme »" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "Le thème %r n'a pas de paramètre « inherit »" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "Aucun thème nommé %r n'est trouvé, hérité de %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "le paramètre %s.%s n'apparaît dans aucune des configurations de thème recherchées" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "L'option %r n'est pas supportée pour ce thème" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "le fichier %r dans le dossier des thèmes n'est pas une archive zip valide ou ne contient aucun thème" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "Le thème nommé %r n'a pas été trouvé (le fichier theme.conf est-il bien présent ?)" @@ -1884,75 +1884,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Renvoie" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Type renvoyé" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "énumération" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1981,36 +1981,36 @@ msgstr "citation dupliquée %s, une autre instance dans %s" msgid "Citation [%s] is not referenced." msgstr "La citation [%s] n'est pas référencée" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Paramètres du modèle" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Déclenche" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "paramètre du modèle" @@ -2301,36 +2301,36 @@ msgstr "libellé dupliqué %s, l'autre instance se trouve dans %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "description %s dupliquée pour %s; l'autre instance se trouve dans %s" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "le paramètre numfig est désactivé : le paramètre :numref: est ignoré" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Impossible de créer une référence croisée. Aucun nombre n'est attribué: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "le lien n'a pas de légende : %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "format de numfig_format invalide : %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "format de numfig_format invalide : %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "lablel non défini: 1%s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Impossible de créer une référence croisée. Titre ou légende introuvable: %s" @@ -3540,6 +3540,11 @@ msgstr "échoué" msgid "unknown directive or role name: %s:%s" msgstr "nom de rôle ou de directive inconnu: %s:%s" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "type de node inconnu : %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3666,8 +3671,3 @@ msgstr "la légende n'est pas à l'intérieur de la figure." #, python-format msgid "unimplemented node type: %r" msgstr "type de node non-implémenté : %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "type de node inconnu : %r" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 4942ba0ab3f1a6dbbb8aecdeda78eebb173631b1..93a8881c647f71da59379d7eb7342079f6405ac7 100644 GIT binary patch delta 19 acmZo*X<(Vq!C_>kU|?WnXtZ%c0V4o42nApO delta 13 UcmZo*X<(VqF>wRm#%WoM03&S$A^-pY diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 60b3323d80b..4e1d912091f 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 7c9bb18907b4f753c10309e18cdadf92dea405df..3f276b90cbabdbd4f4e9a4a727d2da99ed8fba78 100644 GIT binary patch delta 21 dcmZ3YzC?Y)5iSlRGX(\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "פרמטרים" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "משתנה" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "פונקציה" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "מחלקה" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 7b560eb2ae10cf7f7ebef0314e2e0cbdbdb1cd98..02d4b455151eb2570205eaf2759aeeb021a047e3 100644 GIT binary patch delta 23 ecmaFZ&i1gKZ39Oqhmo0rfq|8w(Pn|pi@yM8T?oPe delta 18 acmaFZ&i1gKZ39Q=WP?t=&0?LWe*pka%m|MF diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 744c5f9f60f..e03c39a7ec1 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -52,7 +52,7 @@ msgstr "इस परियोजना में स्फिंक्स क msgid "making output directory" msgstr "परिणाम निर्देशिका बनाई जा रही है" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "%s आयाम को स्थापित करते हुए:" @@ -138,7 +138,7 @@ msgstr "निर्देश %r पहले से पंजीकृत ह msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" @@ -330,127 +330,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "लेखपत्र पठनीय नहीं है. उपेक्षित." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "निर्माण वर्ग %s का कोई \"नाम\" भाव नहीं है" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "निर्माता %r पहले से (%s प्रभाग में) उपलब्ध है" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "निर्माता नाम %s पंजीकृत नहीं है अथवा प्रवेश स्थान पर उपलब्ध नहीं है." -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "निर्माता नाम %s पंजीकृत नहीं है" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "अधिकारक्षेत्र %s पहले से पंजीकृत है" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "अधिकारक्षेत्र %s अभी पंजीकृत नहीं है" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r निर्देश पहले से अधिकार-क्षेत्र %s में पंजीकृत है, " -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r भूमिका पहले से अधिकार-क्षेत्र %s में पंजीकृत है, " -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r अनुक्रमणिका पहले से अधिकार-क्षेत्र %s में पंजीकृत है" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type पहले से पंजीकृत है" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type पहले से पंजीकृत है" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r पहले से पंजीकृत है" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "%r का source_parser पहले से पंजीकृत है" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "%s का स्रोत व्याख्याता पंजीकृत नहीं है" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "%r के लिए अनुवादक पहले से विद्यमान है" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() के kwargs एक (visit, depart) फंक्शन टपल #function tuple# होने चाहिए: %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r पहले से पंजीकृत है" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "%r आयाम को %sसंस्करण से स्फिंक्स में सम्मिलित किया जा चुका है; आयाम की उपेक्षा की गयी." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "मौलिक अपवाद:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "%s आयाम का आयात नहीं किया जा सका" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "आयाम %r में कोई सेटअप #setup()# कारक नहीं है; क्या यह वास्तव में स्फिंक्स का परिवर्धक प्रभाग है?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "इस परियोजना में प्रयुक्त %s परिवर्धक को स्फिंक्स का कम से कम %s संस्करण चाहिए; इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -462,42 +462,42 @@ msgstr "परिवर्धक %r के सेटअप() कर्म से msgid "Python Enhancement Proposals; PEP %s" msgstr "पाइथन अभिवृद्धि प्रस्ताव; पी.ई.पी. %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "रुपविन्यास %r में कोई \"रूप\" मान नहीं है" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "रुपविन्यास %r में कोई अनुगत मान नहीं है" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "%r नाम से कोई रूप नहीं मिला, %r द्वारा अनुगत" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "विन्यास मान %s.%s खोजे गए किसी भी रूप विन्यास में नहीं दिखा" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "विन्यास का असमर्थित रूप विकल्प %r दिया गया" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "रुपविन्यास के पथ में फाइल %r कोई प्रमाणिक ज़िप फाइल नहीं है या इसमें कोई रुपविन्यास नहीं सहेजा गया है" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "%r नामक कोई रूप विन्यास नहीं मिला (theme.conf अनुपस्थित?)" @@ -1861,75 +1861,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "मापदण्ड" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "प्रदत्त " -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "प्रदत्त प्रकार " -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "चर पद" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "फंक्शन" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "मैक्रो" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "युग्म" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "गणक" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "प्रगणक " -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "प्रकार" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1958,36 +1958,36 @@ msgstr "प्रतिरूप उद्धरण %s, दूसरी प् msgid "Citation [%s] is not referenced." msgstr "उद्धरण [%s] सन्दर्भ कहीं नहीं है" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "नमूना मानदण्ड " -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "देता है " -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "वर्ग" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "अवधारणा " -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2278,36 +2278,36 @@ msgstr "प्रतिरूप शीर्षक %s, दूसरी प् msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig असमर्थ है. :numref: उपेक्षित है." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "कड़ी का कोई शीर्षक नहीं है: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "अमान्य numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "अमान्य numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3517,6 +3517,11 @@ msgstr "असफल" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "अज्ञात बिंदु प्रकार: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3643,8 +3648,3 @@ msgstr "शीर्षक रेखाचित्र के भीतर न #, python-format msgid "unimplemented node type: %r" msgstr "अकार्यान्वित बिंदु प्रकार: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "अज्ञात बिंदु प्रकार: %r" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 639f52c0332c9dcc78a60300e4c05af626356346..4ce4497355742da387a96f004f82697b08437020 100644 GIT binary patch delta 19 acmey*{GWM32ZxcFf`NgRq0z<(`HTQYzy@0Y delta 13 Vcmey*{GWM3$HWbM8>eM50st>P1|0wZ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index e59ae861baa..2c8d914e1e9 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 092eec81a1c43f45c67fe0fbc9e26d9df8163bc3..7d1e3b4eebb2e28da83e4e634b37912793da7cbb 100644 GIT binary patch delta 23 ecmaFX&iJgIaf7Y~hmo0rfq|8w(PmSPjnV*OWCu$C delta 23 ecmaFX&iJgIaf7Y~hoO;zfq|8w;bv2fjnV*OAqPbO diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 82f16c09420..e7326881850 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -49,7 +49,7 @@ msgstr "Ovaj projekt se ne može izgraditi s instaliranom verzijom, potrebno je msgid "making output directory" msgstr "izrada izlazne mape" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa %s nema \"name\" svojstvo" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r već postoji (u modulu %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder imena %s nije registriran ili dostupan pomoću poziva" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Builder %s nije registriran" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domena %s je već registrirana" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nije još registrirana" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser za %r je već registriran" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "proširenje %r se već nalazi u Sphinxu od verzije %s; ovo proširenje se zanemaruje." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Izvorna iznimka:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Proširenje %s ne može biti uvezena" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "proširenje %r nema funkciju setup(); radi li se o ispravnom Sphinx modulu proširenja?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "%s proširenje traži Sphinx verzije v%s; stoga projekt ne može biti izgrađen s ovom verzijom." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "proširenje %r vratio je nepodržan objekt iz setup() funkcije; rezulta msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "tema %r nema postavku \"theme\"" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "tema %r nema postavku \"inherit\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "tema %r nije pronađena, nasljeđuje ju %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "postavka %s.%s ne pojavljuje se u pretraženim konfiguracijama tema" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "datoteka %r iz teme nije ispravna (zip) arhiva ili ne sadrži temu" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nema teme %r (nedostaje theme.conf?)" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vraća" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Vraća tip" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "član" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "varijabla" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parametri predloška" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Baca (iznimke)" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 28519112ecb6fa8354e26ec7d2bcd7e812104dc0..46ff664cb21f2b53e3d103b47c82240913e21e6f 100644 GIT binary patch delta 21 ccmewt{V#gMekl$kGX(\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -54,7 +54,7 @@ msgstr "Ez a projekt legalább a Sphinx %s verzióját igényli, és emiatt nem msgid "making output directory" msgstr "kimeneti könyvtár elkészítése" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "a(z) %s kiterjesztés beállításakor:" @@ -140,7 +140,7 @@ msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +161,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -332,127 +332,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -464,42 +464,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Fejlesztési Javaslatok; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1863,75 +1863,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paraméterek" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Visszatérési érték" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Visszatérés típusa" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "tag" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "változó" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "függvény" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makró" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "típus" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1960,36 +1960,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Sablonparaméterek" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Dob" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "osztály" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2280,36 +2280,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3519,6 +3519,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3645,8 +3650,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 4c11a965a52552e00d7f73c2c1b2b0821f3239a9..059f0d924f5b999c7f213ce46e0b9434d6f785ae 100644 GIT binary patch delta 23 fcmeCV%iMF9dBdVM4kI%K0|P5Vqs^<@9;E{SamWd3 delta 18 acmeCV%iMF9dBdW%$*0=*Hg9OVlMVn|6A8`$ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 470d49f6274..21d04d1ba17 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -53,7 +53,7 @@ msgstr "Proyek ini memerlukan sedikitnya Sphinx v%s dan maka itu tidak bisa diba msgid "making output directory" msgstr "membuat direktori keluaran" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "saat menyiapkan ekstensi %s:" @@ -139,7 +139,7 @@ msgstr "pengarahan %r sudah terdaftar, itu akan diganti" msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,12 +147,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -160,12 +160,12 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" @@ -331,127 +331,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "dokumen tidak dapat dibaca. Diabaikan." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Class Builder %s tidak punya atribut \"name\"" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r sudah ada (di modul %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Nama Builder %s todal terdaftar atau tersedia melalui entry point" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Nama Builder %s tidak terdaftar" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domain %s telah terdaftar" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domain %s belum didaftarkan" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Pengarahan %r sudah terdaftar di domain %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Peran %r sudah terdaftar di domain %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Indeks %r sudah terdaftar ke domain %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "object_type %r telah didaftarkan" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "crossref_type %r telah didaftarkan" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r telah didaftarkan" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser untuk %r telah didaftarkan" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Parser sumber untuk %s tidak terdaftar" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Penerjemah untuk %r sudah ada" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs untuk add_node() harus berupa (visit, depart) function tuple: %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r telah terdaftar" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "ekstensi %r telah digabungkan dengan Sphinx sejak versi %s; ekstensi diabaikan." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Eksepsi orisinal:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Tidak dapat mengimpor ekstensi %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "ekstensi %r tidak memiliki fungsi setup(); apa itu benar-benar sebuah modul ekstensi Sphinx?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Ekstensi %s yang digunakan proyek ini memerlukan sedikitnya Sphinx v%s; maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -463,42 +463,42 @@ msgstr "ekstensi %r mengembalikan objek yang tidak didukung dari fungsi setup() msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "tema %r tidak memiliki pengaturan \"tema\"" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "tema %r tidak memiliki pengaturan \"inherit\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "tema berjudul %r tidak ditemukan, inherited oleh %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "pengaturan %s.%s terjadi pada tak satupun konfigurasi tema yang dicari" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "opsi tema yang tidak didukung %r diberikan" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "berkas %r pada path tema merupakan berkas zip yang tidak valid atau tidak berisi tema" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "tema bernama %r tidak ditemukan (kehilangan theme.conf?)" @@ -1862,75 +1862,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Kembali" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "anggota" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "fungsi" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipe" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1959,36 +1959,36 @@ msgstr "kutipan rangkap %s, contoh lain dalam %s" msgid "Citation [%s] is not referenced." msgstr "Kutipan [%s] tidak dirujuk." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parameter Templat" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "konsep" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2279,36 +2279,36 @@ msgstr "label rangkap %s, contoh lain dalam %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig dinonaktifkan. :numref: diabaikan." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "tautan tidak memiliki teks: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format tidak valid: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format tidak valid: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3518,6 +3518,11 @@ msgstr "gagal" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "tipe simpul tidak dikenal: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3644,8 +3649,3 @@ msgstr "keterangan tidak di dalam gambar." #, python-format msgid "unimplemented node type: %r" msgstr "tipe simpul tidak diterapkan: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "tipe simpul tidak dikenal: %r" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index dba3150554fb99c30cc70ddb57e44efdc053f8f5..921ff6d019fc2538768b100b57331c3ce4bb4f72 100644 GIT binary patch delta 21 ccmaDY`C4*AIXj1unSz0Vm7&q*diESv08u^$ZU6uP delta 16 XcmaDY`C4*AIs4@K?0lPB+0$47JsJim diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index be82ca5ede4..8dcc93a63d8 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 02e4169a32eb9fd27315e3368c2c229f8a2daa6f..5caa0716508bec691db34a278f7cb5c3adbdf62e 100644 GIT binary patch delta 21 ccmaFq|I&Yhy99@knSz0Vm7&pQe~DTA09MKd&;S4c delta 16 XcmaFq|I&YhyTs&t3BJvt5>xmAKrjYt diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index c51a98803da..c531e4897e5 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -53,7 +53,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -139,7 +139,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,12 +147,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -160,12 +160,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -331,127 +331,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -463,42 +463,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1862,75 +1862,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Ritorna" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo di ritorno" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variabile" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1959,36 +1959,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parametri del modello" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Solleva" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "concetto" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2279,36 +2279,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3518,6 +3518,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3644,8 +3649,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 1a1f42d147234049e90c50678f93765db1bc4b29..a6c86fa592b9f2e807d6914fac9f7a14c8c510de 100644 GIT binary patch delta 17417 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 Id$Z5~0@S%5JOBUy diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 071c0a08f98..3c1326b582e 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -7,6 +7,7 @@ # Akitoshi Ohta , 2011 # tomo, 2018 # Hisahiro Ohmura, 2017 +# KaKkouo, 2021 # Komiya Takeshi , 2021 # Kouhei Sutou , 2011 # sutefu7, 2019-2020 @@ -23,9 +24,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" -"Last-Translator: Komiya Takeshi \n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"PO-Revision-Date: 2021-12-25 04:41+0000\n" +"Last-Translator: KaKkouo\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,7 +65,7 @@ msgstr "このプロジェクトはSphinx v%s以降のバージョンでなけ msgid "making output directory" msgstr "出力先ディレクトリを作成しています" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "拡張機能のセットアップ中 %s:" @@ -150,7 +151,7 @@ msgstr "ディレクティブ %r は既に登録されています。ディレ msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -158,12 +159,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -171,12 +172,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "直列で %sします" @@ -305,7 +306,7 @@ msgstr "不明なイベント名: %s" #: sphinx/events.py:109 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "イベント %r のハンドラ %r で例外が発生しました。" #: sphinx/extension.py:52 #, python-format @@ -336,133 +337,133 @@ msgstr "リテラルブロックを \"%s\" として解釈できませんでし msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "" +msgstr "ドキュメント \"%s\" で複数のファイルが見つかりました: %r\nビルドには %r を使用してください。" #: sphinx/project.py:59 msgid "document not readable. Ignored." msgstr "ドキュメントを読めません。無視します。" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "ビルダークラス %s には\"name\"属性がありません" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "ビルダー %r (モジュール %s) がすでに登録されています" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "ビルダー名 %s は登録されておらず、entry pointにもありません" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "ビルダー名 %s は登録されていません" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "ドメイン %s はすでに登録されています" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "ドメイン %s はまだ登録されていません" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "ディレクティブ %r は既に%sドメインに登録されています" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "ロール %r は既にドメイン%sに登録されています" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "インデックス %r はすでに%sドメインに登録されています" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "object_type %r はすでに登録されています" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "classref_type %r はすでに登録されています" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r はすでに登録されています" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "%r のsource_parserはすでに登録されています" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "%s のsource_parserは登録されていません" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "%r のTranslatorはすでに登録されています" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() のキーワード引数は (visit, depart) の形式で関数をタプルで指定してください: %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r はすでに登録されています" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "math renderer %s はすでに登録されています" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "拡張 %r はSphinxのバージョン%sでSphinxに統合されています。この拡張は無視されます。" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "元の例外:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "拡張 %s をimportできません" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "拡張 %r には setup() 関数がありません。これは本当にSphinx拡張ですか?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "このプロジェクトで使われている拡張 %s はSphinx v%s 以降が必要なため、現在のバージョンではビルドできません。" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -474,42 +475,42 @@ msgstr "拡張 %r のsetup()関数が、対応していないオブジェクト msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "テーマ %r に \"theme\" 設定がありません" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "テーマ %r に \"inherit\" 設定がありません" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "テーマ %r が %r から継承されていますが、見つかりませんでした" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s.%s がテーマ設定にありません" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "サポートされていないテーマオプション %r が指定されました" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "テーマパス上のファイル %r は正しいzipファイルではないか、テーマを含んでいません" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "sphinx_rtd_theme (< 0.3.0) が検出されました。Sphinx-6.0 以降では利用できなくなります。" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "テーマ %r がありません(theme.confが見つからない?)" @@ -1073,7 +1074,7 @@ msgstr "favicon ファイル %r がありません" msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." -msgstr "" +msgstr "html_add_permalinksはv3.5.0以降、非推奨となりました。代わりにhtml_permalinksとhtml_permalinks_iconを使用してください。" #: sphinx/builders/html/__init__.py:1317 #, python-format @@ -1186,7 +1187,7 @@ msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "" +msgstr "これは、非常に大きなソースファイルや深くネストされたソースファイルで発生する可能性があります。conf.py で、Python のデフォルトの再帰回数制限である 1000 を、例えば次のように慎重に増やすことができます: " #: sphinx/cmd/build.py:71 msgid "Exception occurred:" @@ -1211,7 +1212,7 @@ msgstr "ジョブ番号は正数でなければなりません" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." -msgstr "" +msgstr "詳しくは、を見てください。" #: sphinx/cmd/build.py:105 msgid "" @@ -1531,7 +1532,7 @@ msgstr "プロジェクトの言語" msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "ソースファイルのファイル名の拡張子。一般的には、\".txt\"または\".rst \"のどちらかです。この拡張子を持つファイルだけがドキュメントとみなされます。" #: sphinx/cmd/quickstart.py:284 msgid "Source file suffix" @@ -1657,7 +1658,7 @@ msgstr "記述した場合、ソースとビルドのディレクトリを分割 #: sphinx/cmd/quickstart.py:486 msgid "if specified, create build dir under source dir" -msgstr "" +msgstr "指定された場合、ソースディレクトリの下にビルドディレクトリを作成します。" #: sphinx/cmd/quickstart.py:488 msgid "replacement for dot in _templates etc." @@ -1774,7 +1775,7 @@ msgstr "無効なテンプレート変数: %s" #: sphinx/directives/code.py:64 msgid "non-whitespace stripped by dedent" -msgstr "" +msgstr "デデントによる空白の除去" #: sphinx/directives/code.py:83 #, python-format @@ -1821,7 +1822,7 @@ msgstr "指定された %r に一致する行がインクルードファイル % #: sphinx/directives/other.py:110 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "toctree グローブ・パターン %r はどのドキュメントにもマッチしませんでした。" #: sphinx/directives/other.py:131 sphinx/environment/adapters/toctree.py:176 #, python-format @@ -1836,7 +1837,7 @@ msgstr "toctree に存在しないドキュメントへの参照が含まれて #: sphinx/directives/other.py:144 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "" +msgstr "toctree で重複したエントリが見つかりました: %s" #: sphinx/directives/other.py:176 msgid "Section author: " @@ -1866,84 +1867,84 @@ msgstr "" msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." -msgstr "" +msgstr "csv-table ディレクティブの \":file:\" オプションは、絶対パスをソースディレクトリからの相対パスとして認識するようになりました。ドキュメントを更新してください。" #: sphinx/domains/__init__.py:394 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "パラメータ" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" -msgstr "" +msgstr "戻り値" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "戻り値" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "戻り値の型" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "のメンバ変数" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "変数" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "列挙型" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" -msgstr "" +msgstr "関数パラメータ" #: sphinx/domains/changeset.py:28 #, python-format @@ -1970,38 +1971,38 @@ msgstr "引用 %s はすでに %s で使われています" msgid "Citation [%s] is not referenced." msgstr "引用 [%s] は参照されていません。" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "テンプレートパラメータ" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "例外" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "クラス" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "コンセプト" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" -msgstr "" +msgstr "テンプレート・パラメータ" #: sphinx/domains/javascript.py:146 #, python-format @@ -2290,39 +2291,39 @@ msgstr "ラベル %s はすでに %s で使われています" msgid "duplicate %s description of %s, other instance in %s" msgstr "%s の記述 %s はすでに %s で使われています" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig は無効です。:numref: は無視されます。" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" -msgstr "" +msgstr "クロスリファレンスの作成に失敗しました。番号が割り当てられていません: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "リンクにキャプションがありません: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無効な numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "無効な numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" -msgstr "" +msgstr "未定義のラベル: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" -msgstr "" +msgstr "クロスリファレンスの作成に失敗しました。タイトルまたはキャプションが見つかりませんでした: %s" #: sphinx/environment/__init__.py:76 msgid "new config" @@ -2624,7 +2625,7 @@ msgstr "====================== 最も遅い読み取り時間 ================== #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "" +msgstr "ハードコードされたリンク %r は 拡張リンクに置き換えられる可能性があります (代わりに %r を使用してみてください)。" #: sphinx/ext/graphviz.py:132 msgid "Graphviz directive cannot have both content and a filename argument" @@ -2690,7 +2691,7 @@ msgstr "[グラフ]" #, python-format msgid "" "convert command %r cannot be run, check the image_converter setting: %s" -msgstr "" +msgstr "convert コマンド %r を実行できません。image_converter の設定を確認してください: %s" #: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:70 #, python-format @@ -2829,12 +2830,12 @@ msgstr "

全モジュールのうち、コードを読めるもの

" #: sphinx/ext/autodoc/__init__.py:132 #, python-format msgid "invalid value for member-order option: %s" -msgstr "" +msgstr "member-order オプションに無効な値があります: %s" #: sphinx/ext/autodoc/__init__.py:140 #, python-format msgid "invalid value for class-doc-from option: %s" -msgstr "" +msgstr "class-doc-from オプションに無効な値があります: %s" #: sphinx/ext/autodoc/__init__.py:401 #, python-format @@ -2869,12 +2870,12 @@ msgstr "ドキュメントの自動生成 %r のためにどのモジュール #: sphinx/ext/autodoc/__init__.py:950 #, python-format msgid "A mocked object is detected: %r" -msgstr "" +msgstr "モックオブジェクトが検出されました: %r" #: sphinx/ext/autodoc/__init__.py:969 #, python-format msgid "error while formatting signature for %s: %s" -msgstr "" +msgstr "%s のシグネチャをフォーマット中にエラーが発生しました: %s" #: sphinx/ext/autodoc/__init__.py:1019 msgid "\"::\" in automodule name doesn't make sense" @@ -2896,18 +2897,18 @@ msgstr "__all__ は文字列のリストでなければなりません。%r (%s #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" -msgstr "" +msgstr "members: オプションで指定された属性がありません: モジュール %s、属性 %s" #: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 #: sphinx/ext/autodoc/__init__.py:2768 #, python-format msgid "Failed to get a function signature for %s: %s" -msgstr "" +msgstr "%s の関数シグネチャの取得に失敗しました: %s" #: sphinx/ext/autodoc/__init__.py:1576 #, python-format msgid "Failed to get a constructor signature for %s: %s" -msgstr "" +msgstr "%s のコンストラクタ署名の取得に失敗しました: %s" #: sphinx/ext/autodoc/__init__.py:1680 #, python-format @@ -2918,38 +2919,38 @@ msgstr "ベースクラス: %s" #: sphinx/ext/autodoc/__init__.py:1866 #, python-format msgid "alias of %s" -msgstr "" +msgstr "%sの別名です。" #: sphinx/ext/autodoc/__init__.py:1908 #, python-format msgid "alias of TypeVar(%s)" -msgstr "" +msgstr "TypeVar(%s)のエイリアスです。" #: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 #, python-format msgid "Failed to get a method signature for %s: %s" -msgstr "" +msgstr "%s のメソッド・シグネチャの取得に失敗しました: %s" #: sphinx/ext/autodoc/__init__.py:2372 #, python-format msgid "Invalid __slots__ found on %s. Ignored." -msgstr "" +msgstr "無効な __slots__ が %s で見つかりました。無視されました。" #: sphinx/ext/autodoc/__init__.py:2811 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." -msgstr "" +msgstr "autodoc_member_order が \"alphabetic\" の代わりに \"alphabetical\" を受け入れるようになりました。設定を更新してください。" #: sphinx/ext/autodoc/preserve_defaults.py:106 #, python-format msgid "Failed to parse a default argument value for %r: %s" -msgstr "" +msgstr "%r の既定の引数値の解析に失敗しました: %s。" #: sphinx/ext/autodoc/type_comment.py:130 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" -msgstr "" +msgstr "%r のシグネチャの更新に失敗しました: パラメータが見つかりません: %s。" #: sphinx/ext/autodoc/type_comment.py:133 #, python-format @@ -2970,12 +2971,12 @@ msgstr "autosummary: stubファイルが見つかりません%r。autosummary_ge #: sphinx/ext/autosummary/__init__.py:301 msgid "A captioned autosummary requires :toctree: option. ignored." -msgstr "" +msgstr "キャプション付きオートサマリーには :toctree: オプションが必要です。" #: sphinx/ext/autosummary/__init__.py:348 #, python-format msgid "autosummary: failed to import %s" -msgstr "" +msgstr "autosummary: %s のインポートに失敗しました。" #: sphinx/ext/autosummary/__init__.py:362 #, python-format @@ -3064,7 +3065,7 @@ msgstr "インポートしたメンバーのドキュメント (デフォルト: msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "モジュール __all__ 属性に含まれるメンバーのみを対象としたドキュメントを作成します。(デフォルト: %(default)s)" #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" @@ -3088,7 +3089,7 @@ msgstr "その他のパラメータ" #: sphinx/ext/napoleon/docstring.py:763 msgid "Receives" -msgstr "" +msgstr "受け取る" #: sphinx/ext/napoleon/docstring.py:767 msgid "References" @@ -3105,22 +3106,22 @@ msgstr "列挙" #: sphinx/ext/napoleon/docstring.py:973 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "" +msgstr "無効な値セット (終了括弧がありません): %s" #: sphinx/ext/napoleon/docstring.py:980 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "" +msgstr "無効な値セット (開始括弧がありません): %s" #: sphinx/ext/napoleon/docstring.py:987 #, python-format msgid "malformed string literal (missing closing quote): %s" -msgstr "" +msgstr "不正な文字列リテラル (終了引用符がありません): %s" #: sphinx/ext/napoleon/docstring.py:994 #, python-format msgid "malformed string literal (missing opening quote): %s" -msgstr "" +msgstr "不正な文字列リテラル (開始引用符がありません): %s" #: sphinx/locale/__init__.py:252 msgid "Attention" @@ -3479,7 +3480,7 @@ msgstr "翻訳されたメッセージの用語参照が矛盾しています。 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "" +msgstr "相互参照用のフォールバックテキストを決定できませんでした。バグかもしれません。" #: sphinx/transforms/post_transforms/__init__.py:158 #, python-format @@ -3494,7 +3495,7 @@ msgstr "" #: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" -msgstr "" +msgstr "%r 参照先が見つかりません: %s" #: sphinx/transforms/post_transforms/images.py:83 #, python-format @@ -3527,7 +3528,12 @@ msgstr "失敗しました" #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" -msgstr "" +msgstr "不明なディレクティブまたはロール名: %s:%s" + +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "不明なノードタイプ: %r" #: sphinx/util/i18n.py:67 #, python-format @@ -3578,7 +3584,7 @@ msgstr "いくつかの ID が %s ノードに割り当てられていません" #: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" -msgstr "" +msgstr "この用語の解説へ" #: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" @@ -3655,8 +3661,3 @@ msgstr "キャプションは図の中にはありません。" #, python-format msgid "unimplemented node type: %r" msgstr "未実装のノードタイプ: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "不明なノードタイプ: %r" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index d8e1db1b729e14227807d1b737915f54fa6d415c..405bfbc3f5502317cee37a3829ee7fc0326253bf 100644 GIT binary patch delta 23 fcmZqbVQuPR-SBlKhmo0rfq|8w(dNG^S?2%%YTO9? delta 18 acmZqbVQuPR-SBngWZ6}Go0(VrpA7&`=?K>V diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index a8262b6a411..b8faa47360c 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -50,7 +50,7 @@ msgstr "이 프로젝트는 최소 Sphinx 버전 %s이(가) 필요하므로 현 msgid "making output directory" msgstr "출력 디렉토리 만드는 중" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "확장 기능 %s 설정 중:" @@ -136,7 +136,7 @@ msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" @@ -328,127 +328,127 @@ msgstr "문서 \"%s\"에 대해 여러 파일을 발견했습니다: %r\n빌드 msgid "document not readable. Ignored." msgstr "문서를 읽을 수 없습니다. 무시합니다." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "빌더 클래스 %s에 \"name\" 속성이 없습니다" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "%r 빌더가 이미 존재합니다 (%s 모듈에 있음)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "빌더 이름 %s이(가) 등록되지 않았거나 진입점을 통해서만 사용할 수 있습니다" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "빌더 이름 %s이(가) 등록되지 않았습니다" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "%s 영역이 이미 등록되었습니다" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "%s 영역이 아직 등록되지 않았습니다" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r 지시문이 %s 영역에 이미 등록되었습니다" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r 역할이 %s 영역에 이미 등록되었습니다" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r 색인이 %s 영역에 이미 등록되었습니다" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type이 이미 등록되었습니다" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type이 이미 등록되었습니다" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r이(가) 이미 등록되었습니다" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "%r에 대한 source_parser가 이미 등록되었습니다" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "%s에 대한 소스 해석기가 등록되지 않았습니다" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "%r에 대한 변환기가 이미 존재합니다" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node()에 대한 kwargs는 반드시 (visit, depart)의 함수 튜플이어야 합니다: %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r이(가) 이미 등록되었습니다" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "수식 렌더러 %s이(가) 이미 등록되었습니다" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "%r 확장 기능은 Sphinx에 버전 %s 이후로 이미 병합되었습니다. 이 확장 기능은 무시됩니다." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "원래 예외:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "확장 기능 %s을(를) 가져올 수 없습니다" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "확장 기능 %r에 setup() 함수가 없습니다. Sphinx 확장 모듈이 맞습니까?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "이 프로젝트에서 사용하는 %s 확장 기능에는 최소한 Sphinx v%s이(가) 필요합니다. 따라서 이 버전으로 빌드 할 수 없습니다." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "확장 기능 %r이(가) setup() 함수에서 지원되지 않는 개체 msgid "Python Enhancement Proposals; PEP %s" msgstr "Python 향상 제안; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "테마 %r에 \"theme\" 설정이 없습니다" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "테마 %r에 \"inherit\" 설정이 없습니다" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "이름이 %r인 테마가 없으며, %r에서 상속합니다" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "검색된 테마 구성에서 %s.%s 설정이 존재하지 않습니다" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "지원하지 않는 테마 옵션 %r을(를) 설정했습니다" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "테마 경로의 %r 파일이 유효한 ZIP 파일이 아니거나 테마를 포함하지 않습니다" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "sphinx_rtd_theme (< 0.3.0) 가 발견되었습니다. 이 테마는 Sphinx 6.0부터 사용할 수 없습니다." -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "이름이 %r인 테마를 찾을 수 없습니다 (theme.conf 파일 누락?)" @@ -1859,75 +1859,75 @@ msgstr "csv-table 지시문의 \":file:\" 옵션은 이제 절대 경로를 소 msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다." -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "매개변수" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "반환값" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "반환" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "반환 형식" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "멤버 변수" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "변수" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "구조체" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "공용체" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "열거형" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "열거자" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "자료형" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "함수 매개변수" @@ -1956,36 +1956,36 @@ msgstr "중복 인용 %s, 다른 인스턴스는 %s에 있음" msgid "Citation [%s] is not referenced." msgstr "인용 [%s]이(가) 참조되지 않았습니다." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "중복 C++ 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. cpp:%s:: %s' 입니다." -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "템플릿 매개변수" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "예외" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "클래스" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "콘셉트" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "템플릿 매개변수" @@ -2276,36 +2276,36 @@ msgstr "중복 레이블 %s, 다른 인스턴스는 %s에 있음" msgid "duplicate %s description of %s, other instance in %s" msgstr "중복된 %s 설명 (%s에 대한), 다른 인스턴스는 %s에 있음" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig가 비활성화되었습니다. :numref:는 무시됩니다." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "상호 참조를 생성하지 못했습니다. 어떤 번호도 할당되지 않았습니다: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "링크에 캡션이 없습니다: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "잘못된 numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "잘못된 numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "정의되지 않은 레이블: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s" @@ -3515,6 +3515,11 @@ msgstr "실패" msgid "unknown directive or role name: %s:%s" msgstr "알 수 없는 지시문 또는 역할 이름: %s:%s" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "알 수 없는 노드 유형: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "캡션이 그림 안에 있지 않습니다." #, python-format msgid "unimplemented node type: %r" msgstr "구현되지 않은 노드 유형: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "알 수 없는 노드 유형: %r" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index adfb5126ff0ff0d69b88b24d3011e1f2c7a1eea9..cd9c5e5da0e050f233fa5a1a8217256affd964ae 100644 GIT binary patch delta 21 ccmexk{>Oa70RavpGX(Oa70fEUc1o$?e6VT%Z07*FqN&o-= diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 851b5e81890..e1f49659b01 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Grąžinamos reikšmės" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "narys" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "kintamasis" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipas" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Išmeta" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klasė" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index dc9b180a2f8b4e260fdc847b84f814ba96ebff61..7db4503f1cac75bfb806f55afea518b703a531d4 100644 GIT binary patch delta 21 ccmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Atgriež" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Atgriežamais tips" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "loceklis" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "mainīgais" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tips" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Izmet" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klase" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index b5c2aed5c299f7789d4bff203cddd4f07df9f309..6974094e9969d81ed71e89256f53bf85844b1df4 100644 GIT binary patch delta 21 dcmX@hf0lp4O=b=wGX(5BLxEkD?`K051HRE0{~Mk2T}k4 diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index af2fe699975..f2f605058ad 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Предлог за подобрување на Python; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Враќа" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Повратен тип" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "променлива" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "макро" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Фрла" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index e99be27f3061d2d20f9f1b149263d69230f5a8f0..e05d0ab508f5822f89d8ee1df5fc091fc9bb636c 100644 GIT binary patch delta 21 ccmX?TdeC%(xFCm-nSz0Vm7&pQdBH`T07!ZT-~a#s delta 16 XcmX?TdeC%(xZq@aLB7qZf^#?lGu8z} diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 5b6ac2bcdb5..5d509f06041 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returnere" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Retur type" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 9b7933f6b30736c6ed2d13d930d7cc6079778c6d..7bb5ce1e52ecdab362414254439af3a2542d8a24 100644 GIT binary patch delta 21 ccmbQ~Hq&jxF#!%EGX(z5pWd(06+o;(f|Me diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index efbebf31bcd..63ebc7159a0 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -50,7 +50,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "चल" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "किसिम" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "कक्षा" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index f75aba64a9925410b5b7bf484c5b37c160ef1911..0fb552a49b076c963f3725ddf734cf56da8732fb 100644 GIT binary patch delta 23 ecmdlzlX3S<#trT|97bje1_oA!Mw|V0aufhx*asB= delta 18 acmdlzlX3S<#trT|lk;`>Hizn@DF6USL\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -55,7 +55,7 @@ msgstr "Dit project vereist tenminste Sphinx v%s, en kan daarom niet worden gebo msgid "making output directory" msgstr "aanmaken doelmap" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +162,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" @@ -333,127 +333,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Bouwerklasse %s heeft geen \"name\"-attribuut" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Bouwer %r bestaat reeds (in module %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Bouwernaam %s is niet geregistreerd of beschikbaar via entrypoint" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Bouwernaam %s is niet geregistreerd" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domein %s was reeds geregistreerd" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domein %s nog niet geregistreerd" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser voor %r is reeds geregistreerd" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Broncode-parser voor %s is niet geregistreerd" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "extensie %r is reeds in Sphinx ingevoegd sinds Sphinx-versie %s; deze extensie wordt genegeerd." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Oorspronkelijke exceptie:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Kon extensie %s niet importeren" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "extensie %r heeft geen setup() functie; weet u zeker dat het een Sphinx-extensiemodule is?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Dit project gebruikt extensie %s, maar die extensie heeft Sphinx-versie v%s of hoger nodig; het project kan daarom niet worden gebouwd met deze versie." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -465,42 +465,42 @@ msgstr "de setup() functie van extensie %r retourneerde een niet-ondersteund obj msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "thema %r heeft geen \"theme\" instelling" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "thema %r heeft geen \"inherit\" instelling" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "thema met naam %r niet gevonden, geërfd door %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "instelling %s.%s komt niet voor in de doorzochte thema configuraties" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "bestand %r in thema pad is geen geldige zipfile of bevat geen thema" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "thema met naam %r niet gevonden (ontbrekende theme.conf?)" @@ -1864,75 +1864,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "member" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variabele" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1961,36 +1961,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Sjabloonparameters" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Werpt" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2281,36 +2281,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "onderschrift ontbreekt voor link: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3520,6 +3520,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3646,8 +3651,3 @@ msgstr "onderschrift niet binnen figuur." #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 275ae8e6bcf99263bd2e111c95b67d5176dc3486..9044280b605fdbb8641f4c2ff55f7b1d035d90b9 100644 GIT binary patch delta 23 fcmaF)lJVtB#tn*297bje1_oA!Mw>OA4j2IdbFc_k delta 18 acmaF)lJVtB#tn*2lRcgIHtRd>G6Dcr>Ie1! diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 92cab54b20c..e62f578f4ee 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -52,7 +52,7 @@ msgstr "Ten projekt potrzebuje Sphinksa w wersji co najmniej %s, dlatego nie mo msgid "making output directory" msgstr "tworzenie katalogu wyjścia" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "podczas ustawiania rozszerzenia %s:" @@ -138,7 +138,7 @@ msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" @@ -330,127 +330,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa buildera %s nie ma atrybutu \"name\"" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r już istnieje (w module %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder o nazwie %s jest niezarejestrowany lub dostępny przez punkt wejścia" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Builder o nazwie %s jest niezarejestrowany" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domena %s jest już zarejestrowana" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nie została jeszcze zarejestrowana" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type jest już zarejestrowany" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type jest już zarejestrowany" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r jest już zarejestrowany" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser dla %r jest już zarejestrowany" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Parser źródeł dla %s jest nie zarejestrowany" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r już zarejestrowany" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "rozszerzenie %r zostało już włączone do Sphinx'a, począwszy od wersji %s; to rozszerzenie jest zignorowane." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Pierwotny wyjątek:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Nie można zaimportować rozszerzenia %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "rozszerzenie %r nie zawiera funkcji setup(); czy to na pewno moduł rozszerzenia Sphinx?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Rozszerzenie %s używane przez ten projekt potrzebuje Sphinksa w wersji co najmniej %s; dlatego nie może zostać zbudowane z tą wersją." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -462,42 +462,42 @@ msgstr "rozszerzenie %r zwróciło nie wspierany obiekt ze swojej funkcji setup( msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "motyw %r nie ma ustawienia \"theme\"" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "motyw %r nie ma ustawienia \"inherit\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "nie znaleziono motywu o nazwie %r, z którego dziedziczy %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "ustawienie %s.%s nie występuje w żadnej z przeszukiwanych konfiguracji motywów" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "plik %r na ścieżce motywu nie jest poprawnym plikiem zip lub nie zawiera motywu" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nie znaleziono motywu o nazwie %r (brak theme.conf?)" @@ -1861,75 +1861,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Zwraca" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Typ zwracany" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "pole" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "zmienna" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "unia" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1958,36 +1958,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "Cytat [%s] nie ma odniesienia." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parametry szablonu" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Wyrzuca" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klasa" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "koncepcja" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2278,36 +2278,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3517,6 +3517,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3643,8 +3648,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 18f76b241bbdab7cefb9ef78733f6e29effea192..50ceeaf1f0931ac8165ea337ac401760c7afda6b 100644 GIT binary patch delta 19 acmeyy{Ec}+2ZxcFf`NgRq0z<(X^a3xY6d_6 delta 13 Vcmeyy{Ec}+$HWbM8>b~O0st;k1_A&8 diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 1dbd3395f89..cacf23ccc5a 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 00bd13c86d2537d41a4b30d4abc228779ab825cf..51d5ea7626fd21481c2c47a2a44b810166fe97e5 100644 GIT binary patch delta 23 fcmezUmF4$WmJMH5au}H@7#LU?8g2f&^4|mik-rP8 delta 18 acmezUmF4$WmJMH5PL^H8x0!j>j|l*40}6)# diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index e1517ba81c3..6657c4ef879 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -54,7 +54,7 @@ msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser msgid "making output directory" msgstr "criando o diretório de saída" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "enquanto definia a extensão %s:" @@ -140,7 +140,7 @@ msgstr "diretiva %r já está registrada, ela será sobrescrita" msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +161,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" @@ -332,127 +332,127 @@ msgstr "vários arquivos encontrados para o documento \"%s\": %r\nUse %r para a msgid "document not readable. Ignored." msgstr "documento não legível. Ignorado." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Classe de compilador %s possui nenhum atributo “name”" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Compilador %r já existe (no módulo %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Nome do compilador %s não registrado ou disponível através do ponto de entrada" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Nome do compilador %s não registrado" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domínio %s já registrado" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domínio %s ainda não registrado" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "A diretiva %r já está registrada para o domínio %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "O papel %r já está registrado para o domínio %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "O índice %r já está registrado para o domínio %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "O object_type %r já está registrado" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "O crossref_type %r já está registrado" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r já está registrado" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser para %r já está registrado" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Analisador de fonte para %s não registrado" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Tradutor para %r já existe" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs para add_node() deve ser uma tupla de função (visit, depart): %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r já registrado" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "renderizador matemático %s já está registrado" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "a extensão %r já foi mesclada com Sphinx desde a versão %s; esta extensão é ignorada." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Extensão original:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Não foi possível importar a extensão %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "a extensão %r possui nenhuma função setup(); é realmente um módulo de extensão do Sphinx?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "A extensão %s usada por este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser compilada com esta versão." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -464,42 +464,42 @@ msgstr "a extensão %r retornou um objeto não suportado de sua função setup() msgid "Python Enhancement Proposals; PEP %s" msgstr "Propostas Estendidas Python; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "o tema %r não tem a configuração “theme”" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "o tema %r não tem a configuração “inherit”" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "nenhum tema chamado %r encontrado, herdado por %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "a configuração %s.%s ocorre em nenhuma das configurações de tema pesquisadas" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "sem suporte à opção de tema %r fornecida" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "o arquivo %r no caminho de tema não é um arquivo zip válido ou contém nenhum tema" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "sphinx_rtd_theme (< 0.3.0) encontrado. Ele não estará disponível a partir do Sphinx-6.0" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nenhum tema chamado %r encontrado (faltando theme.conf?)" @@ -1863,75 +1863,75 @@ msgstr "A opção \":file:\" para a diretiva csv-table agora reconhece um caminh msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Declaração C duplicada, também definida em %s:%s.\nA declaração é '.. c:%s:: %s'." -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "Valores de retorno" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "união" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "parâmetro de função" @@ -1960,36 +1960,36 @@ msgstr "citação duplicada %s, outra instância em %s" msgid "Citation [%s] is not referenced." msgstr "citação [%s] não é referenciada." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Declaração C++ duplicada, também definida em %s:%s.\nA declaração é '.. cpp:%s:: %s'." -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parâmetros do Modelo" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Lança" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "conceito" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "parâmetro de modelo" @@ -2280,36 +2280,36 @@ msgstr "rótulo duplicada %s, outra instância em %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "descrição duplicada de %s de %s, outra instância em %s" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está desabilitado. :numref: é ignorado." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Falha ao criar uma referência cruzada. Qualquer número não foi atribuído: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "o link não possui legenda: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format inválido: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format inválido: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "rótulo não definido: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Falha ao criar uma referência cruzada. Título ou legenda não encontrado: %s" @@ -3519,6 +3519,11 @@ msgstr "falhou" msgid "unknown directive or role name: %s:%s" msgstr "diretiva ou nome de papel desconhecida(o): %s:%s" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "tipo de nó desconhecido: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3645,8 +3650,3 @@ msgstr "legenda não dentro de uma imagem." #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nó não implementado: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "tipo de nó desconhecido: %r" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 7309466c6940c8659f6017ea5724ba159d4b6e9e..f7be70dae9c9e1a041c49ec50c7de700f0e13bba 100644 GIT binary patch delta 21 ccmbQ^Fvnp-yfBB6nSz0Vm7&q*bm6T$07^jyRsaA1 delta 16 XcmbQ^Fvnp-yzu09VZP0|!s~eeH+=>K diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index b2f04d9b673..6eff108759d 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -50,7 +50,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Retorno" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Gera" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 831c0545caf3a60bb8bf56007f7af4d79ea8005a..4c7184639f4b6a70899425adfbf1d610fc4e0281 100644 GIT binary patch delta 21 ccmX@)cF1jmgD8iQnSz0Vm7&pQ57A$|08dy3x&QzG delta 16 XcmX@)cF1jmgXrW8QNGQ7qF;CcI)esF diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index abf80c1afc6..c743df2c81f 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -50,7 +50,7 @@ msgstr "Proiectul necesită minim Sphinx v%s și de aceea nu poate fi construit msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Propuneri de Îmbunătățire Python; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrii" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Întoarce" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Tipul întors" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membru" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variabilă" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funcție" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enumerator" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Generează" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "clasă" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 0bc6719a906fb866bff1252cc09002300efb4d47..194dff8ad451569931d7de094eba9fb5b0e87db2 100644 GIT binary patch delta 23 ecmX@s#CWWUaf78ihmo0rfq|8w(Pl?^RwV#iGzMY- delta 23 ecmX@s#CWWUaf78ihoO;zfq|8w;bup9RwV#h@djJ~ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 8846548d8e7..b0cd0c6d291 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -54,7 +54,7 @@ msgstr "Проект требует версию Sphinx не ниже v%s и н msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +161,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -332,127 +332,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Отсутствует аттрибут \"name\" у класса сборщика %s." -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Сборщик %r уже существует (в модуле %s)." -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Сборщик %s не зарегистрирован явно или через ресурсы пакетов." -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Сборщик %s не зарегистрирован." -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Изначальное исключение:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Не могу загрузить модуль расширения %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "расширение %r не определяет функцию setup(); это действительно модуль расширения Sphinx?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -464,42 +464,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Предложения об улучшениях Python; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1863,75 +1863,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Результат" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Тип результата" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "поле" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "переменная" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1960,36 +1960,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Параметры шаблона" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Бросает исключение" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "класс" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "концепт" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2280,36 +2280,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3519,6 +3519,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3645,8 +3650,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index e692d83ffb22f240743312157d771865a48d9a8f..705d02581b4891128fb4146b7e7efeee5a915409 100644 GIT binary patch delta 21 ccmeB|>6h8CpN+%FOu@jw%Ft-@aW)Tj07#eyC;$Ke delta 16 XcmeB|>6h8CpKbDUHonbg*__w`IK&1i diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 9380c6206b9..04f2cbc7875 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "පරාමිතීන්" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "සාමාජික" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "විචල්‍යය" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "ක්‍රියාව" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "මැක්‍රෝ" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "වර්ගය" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index d08f9f5971a123b7c8829669d6bce5e5c6c718f5..4c1cdfac6739c6c875c3ae73db6ddc9232d7757f 100644 GIT binary patch delta 23 fcmX>yi{;2HmJPqAa2S~>7#LU?8f|8p>Qn&$b4&=7 delta 23 fcmX>yi{;2HmJPqAa2OgX7#LU?8g6Eq>Qn&$a|sBJ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 87898e12feb..897f5993500 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -51,7 +51,7 @@ msgstr "Tento projekt vyžaduje aspoň Sphinx v%s a preto s touto verziou nemô msgid "making output directory" msgstr "vytváranie výstupnej zložky" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "pri nastavovaní rozšírenia %s:" @@ -137,7 +137,7 @@ msgstr "direktíva %r už je registrovaná, bude prepísaná" msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,12 +158,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" @@ -329,127 +329,127 @@ msgstr "nájdených viacero súborov pre dokument \"%s\": %r\nNa zostavenie pou msgid "document not readable. Ignored." msgstr "dokument nie je čitateľný. Ignorované." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Trieda builder %s nemá atribút „name”" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r už existuje (v module %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder s menom %s nie je registrovaný ani dostupný cez vstupný bod" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Builder s menom %s nie je registrovaný" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "doména %s už je zaregistrovaná" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "doména %s ešte nie je zaregistrovaná" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Direktíva %r už je registrovaná v doméne %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Rola %r už je registrovaná v doméne %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Index %r už je registrovaný v doméne %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr " object_type %r už je registrovaný" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "crossref_type %r už je registrovaný" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r už je registrovaný" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser pre %r už je registrovaný" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Analyzátor pre %s nie je registrovaný" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Translator pre %r už existuje" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r už je registrovaný" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "rozšírenie %r bolo zlúčené so Sphinx od verzie %s; toto rozšírenie je ignorované." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Pôvodná výnimka:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "Nemožno importovať rozšírenie %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "rozšírenie %r nemá funkciu setup(); je to naozaj modul rozšírenia Sphinx?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Rozšírenie %s použité týmto projektom vyžaduje aspoň Sphinx v%s; takže ho nemožno zostaviť s touto verziou." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -461,42 +461,42 @@ msgstr "rozšírenie %r vrátilo so svojej funkcie setup() nepodporovaný objekt msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "téma %r nemá nastavenie „theme”" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "téma %r nemá nastavenie „inherit”" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "nebola nájdená téma s menom %r, dedená v %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "nastavenie %s.%s nenájdené v žiadnom z nastavení témy" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "zadaná nepodporovaná voľba témy %r" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "súbor %r v ceste témy nie je platný súbor ZIP alebo neobsahuje tému" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "nájdená sphinx_rtd_theme (< 0.3.0). Táto nebude dostupná od Sphinx-6.0" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nebola nájdená téma smenom %r (chýbajúci theme.conf?)" @@ -1860,75 +1860,75 @@ msgstr "voľba \":file:\" direktívy csv-table teraz rozpoznáva absolútnu cest msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'." -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vracia" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Návratový typ" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "premenná" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "parameter funkcie" @@ -1957,36 +1957,36 @@ msgstr "duplicitná citácia %s, ďalší výskyt v %s" msgid "Citation [%s] is not referenced." msgstr "Citácia [%s] nie je odkazovaná." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Duplicitná deklarácia C++, definovaná aj v %s:%s.\nDeklarácia je '.. cpp:%s:: %s'." -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parametre šablóny" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Vyvoláva" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "trieda" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "parameter šablóny" @@ -2277,36 +2277,36 @@ msgstr "duplicitná menovka %s, ďalší výskyt v %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicitný %s popis %s, ďalší výskyt v %s" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig je vypnutý, :numref: je ignorované." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. Nie je priradené žiadne číslo: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "odkaz nemá popisok: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "neplatný numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "neplatný numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "nedefinovaná menovka: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. nenájdení názov alebo titulok: %s" @@ -3516,6 +3516,11 @@ msgstr "zlyhalo" msgid "unknown directive or role name: %s:%s" msgstr "neznáma direktíva alebo meno role: %s:%s" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "neznámy typ uzla: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3642,8 +3647,3 @@ msgstr "titulok nie je vo vnútri figure." #, python-format msgid "unimplemented node type: %r" msgstr "neimplementovaný typ uzla: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "neznámy typ uzla: %r" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 62f71c76e3f546b02cb0add118e2a6e770a37497..66fef2c43c5540aa833eb8bde649b41d9d00b2b0 100644 GIT binary patch delta 21 ccmeyM^+9WcIWLEinSz0Vm7&pQdtO5h08fPl?f?J) delta 16 XcmeyM^+9WcIq&3nUcSw)yxJT9Inf1f diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 7f5871760f3..7f86e99a508 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Vrne" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Vrne tip" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "član" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 63aee654002..14bfbf1f999 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-12-19 00:12+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -47,7 +47,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,12 +141,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -154,12 +154,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it" @@ -458,43 +458,43 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since " "Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -2292,36 +2292,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3532,6 +3532,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3657,8 +3662,3 @@ msgstr "" msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" - diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index a849efc5007f8b5feef3f0a585a7dce255146304..9c5ec223c7be7bbd82756ea608f68a7d7ed2ab04 100644 GIT binary patch delta 23 fcmZ4fjAi*VmJQB}IgHE{3=FIcjW&BPzS9o?a-#`S delta 18 acmZ4fjAi*VmJQB}Cuc9_+Z?#~T0a0;nF(|N diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index e124505cd00..8d74dcb733c 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -49,7 +49,7 @@ msgstr "Ky projekt lyp të paktën Sphinx v%s, ndaj s’mund të montohet me kë msgid "making output directory" msgstr "po krijohet drejtori përfundimesh" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "teksa ujdiset zgjerimi %s:" @@ -135,7 +135,7 @@ msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "u gjetën shumë kartela për dokumentin \"%s\": %r\nPërdorni %r për m msgid "document not readable. Ignored." msgstr "dokument i palexueshëm. U shpërfill." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa %s e montuesit nuk ka atribut \"name\"" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Montuesi %r ekziston tashmë (te moduli %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Emër %s montuesi jo i regjistruar ose i passhëm përmes pike hyrjeje" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Emër montuesi %s jo i regjistruar" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "përkatësi %s e regjistruar tashmë" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "përkatësi %s ende e paregjistruar" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "Direktiva %r është e regjistruar tashmë te përkatësia %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "Roli %r është i regjistruar tashmë te përkatësia %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "Treguesi %r është i regjistruar tashmë te përkatësia %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "object_type %r është i regjistruar tashmë" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "crossref_type %r është i regjistruar tashmë" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r është i regjistruar tashmë" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser për %r është i regjistruar tashmë" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "Përtypës burimesh për %s jo i regjistruar" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Përkthyesi për %r ekziston tashmë" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "kwargs për add_node() duhet të jetë një çift funksioni (visit, depart): %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r tashmë i regjistruar" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "vizatuesi i formulave matematikore %s është i regjistruar tashmë" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "zgjerimi %r qe shkrirë me Sphinx-in që me versionin %s; ky zgjerim është shpërfillur." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Përjashtimi origjinal:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "S’u importua dot zgjerimi %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "zgjerimi %r s’ka funksion setup(); a është vërtet një modul zgjerimi Sphinx-i?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Zgjerimi %s i përdorur nga ky projekt lyp të paktën Sphinx v%s; prandaj s’mund të montohet me këtë version." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "zgjerimi %r u përgjigj me një objekt të pambuluar prej funksionit të msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "tema %r s’ka rregullimin \"theme\"" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "tema %r s’ka rregullimin \"inherit\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "s’u gjet temë e emërtuar %r, u trashëgua nga %r" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "rregullimi %s.%s nuk haset në asnjë prej formësimeve temash ku u kërkua" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "është dhënë mundësi teme %r e pambuluar" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "kartela %r te shteg teme s’është kartelë zip e vlefshme ose nuk përmban temë" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "U gjet sphinx_rtd_theme (< 0.3.0). S’do të jetë e passhme që prej Sphinx-6.0" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "s’u gjet temë e emërtuar %r (mos mungon theme.conf?)" @@ -1858,75 +1858,75 @@ msgstr "Mundësia \":file:\" për direktivë csv-table tani njeh një shteg abso msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "Deklarim C i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. c:%s:: %s'." -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametra" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Kthime" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Lloj kthimi" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "anëtar" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "ndryshore" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funksion" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "bashkim" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "lloj" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "parametër funksioni" @@ -1955,36 +1955,36 @@ msgstr "citim i përsëdytur %s, tjetër instancë te %s" msgid "Citation [%s] is not referenced." msgstr "Përmendja [%s] s’është në referencë." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "Deklarim C++ i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. cpp:%s:: %s'." -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Parametra Gjedhesh" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klasë" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "parametër gjedheje" @@ -2275,36 +2275,36 @@ msgstr "etiketë %s e përsëdytur, tjetër instancë te %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "përshkrim %s i përsëdytur për %s, tjetër instancë te %s" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig është i çaktivizuar. :numref: është shpërfillur." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u caktua ndonjë numër: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "lidhja s’ka titull: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format i pavlefshëm: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format i pavlefshëm: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "etiketë e papërcaktuar: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u gjet titull ose legjendë: %s" @@ -3514,6 +3514,11 @@ msgstr "e dështuar" msgid "unknown directive or role name: %s:%s" msgstr "emër direktive ose roli të panjohur: %s:%s" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "lloj i panjohur nyjeje: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "titull jo brenda një figure." #, python-format msgid "unimplemented node type: %r" msgstr "lloj nyjeje i pasendërtuar: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "lloj i panjohur nyjeje: %r" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index f876b5b913581df62569e78f0fbb56a9d2818d2f..3a6baa38cb539e757ddb5a78b2f44ff037389493 100644 GIT binary patch delta 21 dcmX@$dBAhSSs@N1GX(\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -50,7 +50,7 @@ msgstr "Овај пројекат захтева верзију Sphinx v%s ил msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -328,127 +328,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "Преводилац за %r већ постоји" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -460,42 +460,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1859,75 +1859,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Резултат" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Тип резултата" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "променљива" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1956,36 +1956,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2276,36 +2276,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3515,6 +3515,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3641,8 +3646,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 88a175646688e0456e03fd722b340f8e3e0512b7..c82111595d81dff81c407877febf7d53399da688 100644 GIT binary patch delta 19 acmcb}a*<_12ZxcFf`NgRq0z<(2N?lD4hB;I delta 13 Vcmcb}a*<_1$HWbM8>j7N1OO|i1{DAR diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index eb28eac447f..f871b9acee3 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-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 17c23e2bc20b054729533e7bd1fd6e56a46c4457..5903ed288f42d38eb5ea83028a09ad1b5b0bc737 100644 GIT binary patch delta 19 acmX@Za)xC>2ZxcFf`NgRq0z<(dl&&gPzFQ* delta 13 VcmX@Za)xC>$HWbM8>ek!1OO`~1_l5C diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index e144df6d19a..f32d45bbc5a 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 64a9e2991947d7d4f3abaa8dcd81a3ed5362a0a8..d57ce21f145a0502a02914ddfe1a910524fe89af 100644 GIT binary patch delta 21 ccmdmFy2*6IPXP`iGX(\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Returnerar" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Returtyp" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Kastar" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index bc604e46f40e768521184cd728f21e507a4ca259..c39881e293f5d6ea7ab751b301d25ea770887cf9 100644 GIT binary patch delta 19 bcmey)@||VEHVz{*1p@;sL!*uRb}|A0Nn{4| delta 13 Vcmey)@||VEwu$%nHXhl`2mmrQ2IBw# diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 5658aad8347..e88e43c1ae3 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 071344681208d191a2a57f1b25d2cdd37ce08546..1af3f6ae099d580f85faa7a6b14bd1a142998c32 100644 GIT binary patch delta 19 acmeyw{E2x&2ZxcFf`NgRq0z<(NsItQ(grjD delta 13 Vcmeyw{E2x&$HWbM8>huE0st-R1@-^{ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index b8224396d5c..453c56ec159 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index eb847328443fbb12a47a5c104e30b4099a877a75..a78c429816cb4fc265a2b01f31f8c6ae59eebede 100644 GIT binary patch delta 23 ecmbPsih0^8<_$cx97bje1_oA!Mw>-ynKA%kQU^N# delta 23 ecmbPsih0^8<_$cx9EL^;1_oA!hMPrdnKA%k4+k{> diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 385e5714cb9..1a068b38c71 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -52,7 +52,7 @@ msgstr "Bu proje en az Sphinx s%s gerektirir ve bu nedenle bu sürüm ile oluşt msgid "making output directory" msgstr "çıktı dizini yapılıyor" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "%s uzantısı ayarlanırken:" @@ -138,7 +138,7 @@ msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" @@ -330,127 +330,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "belge okunabilir değil. Yoksayıldı." -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Oluşturucu sınıfı %s \"ad\" özniteliğine sahip değil" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Oluşturucu %r zaten mevcut (%s modülünde)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Oluşturucu adı %s kayıtlı veya giriş noktası aracılığıyla kullanılabilir değil" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Oluşturucu adı %s kayıtlı değil" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "etki alanı %s zaten kayıtlı" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "etki alanı %s henüz kayıtlı değil" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r yönergesi zaten %s etki alanına kayıtlı" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r rolü zaten %s etki alanına kayıtlı" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r dizini zaten %s etki alanına kayıtlı" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type zaten kayıtlı" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type zaten kayıtlı" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r zaten kayıtlı" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "%r için source_parser zaten kayıtlı" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "%s için kaynak ayrıştırıcı kayıtlı değil" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "%r için çevirmen zaten mevcut" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() için kwargs bir (visit, depart) tanımlama grubu işlevi olmak zorundadır: %r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r zaten kayıtlı" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "%r uzantısı zaten %s sürümünden bu yana Sphinx ile birleştirildi; bu uzantı yoksayıldı." -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "Özgün özel durumu:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr " %s uzantısı içe aktarılamadı" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "%r uzantısı setup() işlevine sahip değil; bu gerçekten bir Sphinx uzantısı modülü mü?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "Bu proje tarafından kullanılan %s uzantısının en az Sphinx s%s sürümüne ihtiyacı var; bu nedenle bu sürümle oluşturulamaz." -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -462,42 +462,42 @@ msgstr "%r uzantısı, setup() işlevinden desteklenmeyen bir nesne döndürdü; msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Geliştirme Önerileri; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "%r temasının \"theme\" ayarı yok" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "%r temasının \"inherit\" ayarı yok" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "%r adında bulunan tema yok, %r tarafından devralındı" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "%s.%s ayarı, aranan tema yapılandırmalarının hiçbirinde meydana gelmiyor" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "desteklenmeyen tema seçeneği %r verildi" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "tema yolundaki %r dosyası geçerli bir zip dosyası değil ya da hiç tema içermiyor" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "%r adında bulunan tema yok (eksik theme.conf?)" @@ -1861,75 +1861,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametreler" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Dönüşler" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Dönüş türü" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "üyesi" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "değişkeni" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "işlevi" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "makrosu" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "birliği" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "türü" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1958,36 +1958,36 @@ msgstr "%s kopya alıntısı, %s içindeki diğer örnek" msgid "Citation [%s] is not referenced." msgstr "Alıntı [%s] kaynak gösterilmedi." -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "Şablon Parametreleri" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Şunu verir: " -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "sınıfı" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "kavramı" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2278,36 +2278,36 @@ msgstr "%s kopya etiketi, %s içindeki diğer örnek" msgid "duplicate %s description of %s, other instance in %s" msgstr "kopya %s açıklamasına ait %s, %s içindeki diğer örnek " -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig etkisizleştirildi. :numref: yoksayıldı." -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "bağlantının resim yazısı yok: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "geçersiz numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "geçersiz numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3517,6 +3517,11 @@ msgstr "başarısız oldu" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3643,8 +3648,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 0b1b7ef95781f18e2261fd142dc70a7a902b1339..1300ef577c833d6f749b3dabc0e43f0050764696 100644 GIT binary patch delta 21 ccmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Повертає" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Тип повернення" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "клас" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 68c024d621d48e3144744850ddf22cf9427c6e9b..2ebcbb0a0e2faeddcab50474275d787398ff4dc9 100644 GIT binary patch delta 19 acmeys{DFBw2ZxcFf`NgRq0z<(35)dAv0st+y1@Hg> diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index a230f1a7982..aebd51bfcad 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index a0317efd40d373c1dabd24320d202b772101fc35..e27c945574d3121274b4c6b480be6ccd06d1d498 100644 GIT binary patch delta 21 dcmX@7cTR7^LS7CdGX(\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -49,7 +49,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -327,127 +327,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -459,42 +459,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Các đề nghị nâng cao Python; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1858,75 +1858,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Tham số" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "Trả về" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "Kiểu trả về" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "thuộc tính" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "biến" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "hàm" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "kiểu" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1955,36 +1955,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "Ném" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "lớp" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2275,36 +2275,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3514,6 +3514,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3640,8 +3645,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 97d300cc1ab72c30fbcc900dc5f459d6ea5861c3..ced17396823826839c436175d54999caecbc5df3 100644 GIT binary patch delta 19 acmeys{DFBw2ZxcFf`NgRq0z<(35)dAv0st+y1@Hg> diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 64a4cb8f2c8..5eda9bd5e12 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index e323dec432a334fa782849f6bc27fd4cbe28b302..7d78eb7129d6f609140adf6a1b68a67ef799bdaa 100644 GIT binary patch delta 23 fcmezPp84Z@<_)ToIgHE{3=FIcjW+8}K9T|ee258G delta 18 acmezPp84Z@<_)ToC;Lw3+iW~}UkU(U&\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -63,7 +63,7 @@ msgstr "该项目需要 Sphinx v%s 及以上版本,使用现有版本不能构 msgid "making output directory" msgstr "创建输出目录" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "同时设置扩展名 %s:" @@ -149,7 +149,7 @@ msgstr "指令 %r 已注册,将被覆盖" msgid "role %r is already registered, it will be overridden" msgstr "角色 %r 已注册,将被覆盖" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "扩展 %s 不是并行读取安全的" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,12 +170,12 @@ msgid "" "explicit" msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "扩展 %s 不是并行写入安全的" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "执行顺序 %s" @@ -341,127 +341,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "无法读取文档,已忽略。" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "构建程序类 %s 未包含 \"name\" 属性" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "构建程序 %r 已存在 (见模块 %s)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "构建程序 %s 未注册或在入口点不可用" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "构建程序 %s 未注册" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "域 %s 已注册" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "域 %s 尚未注册" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r 指令已注册到域 %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r 角色已注册到域 %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r 索引已注册到域 %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "对象类型 %r 已注册" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "交叉引用类型 %r 已注册" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "源文件扩展名 %r 已注册" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "%r 的 source_parser 已注册" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "未注册 %s 的源代码语法分析器" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "翻译已存在 %r" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() 的关键字参数必须是 (visit, depart) 形式的函数元组:%r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "可数节点 %r 已注册" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "扩展 %r 已合并至 Sphinx (自版本 %s 开始);该扩展被忽略。" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "原始异常:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "无法导入扩展 %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "扩展 %r 未包含setup() 函数;它确实是一个 Sphinx 扩展模块吗?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "该项目所用扩展 %s 需要 Sphinx 版本 %s 以上;当前版本无法构建文档。" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -473,42 +473,42 @@ msgstr "扩展 %r 在其 setup() 函数中返回了一个不支持的对象; msgid "Python Enhancement Proposals; PEP %s" msgstr "Python 提高建议; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "主题 %r 未包含 \"theme\" 配置" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "主题 %r 未包含 \"inherit\" 配置" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "未找到主题 %r,则从 %r 继承" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "配置项 %s.%s 在所有已找到主题配置中均未出现" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "不支持的主题选项 %r" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "主题路径指定的文件 %r 是一个无效的或不包含主题的 zip 文件" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "主题 %r 未找到 (缺少 theme.conf?)" @@ -1872,75 +1872,75 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "参数" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "返回" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "返回类型" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "成员" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "变量" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "联合体" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "枚举" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "枚举子" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "类型" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1969,36 +1969,36 @@ msgstr "重复的引文 %s,已有引文出现在 %s" msgid "Citation [%s] is not referenced." msgstr "引文 [%s] 没有被引用过。" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "模板参数" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "抛出" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "类" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2289,36 +2289,36 @@ msgstr "重复的标签 %s,已有标签出现在 %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "对 %s的重复描述%s,其它实例出现在 %s" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已禁用,忽略 :numref:。" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "链接没有标题:%s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "无效的 numfig_format:%s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "无效的 numfig_format:%s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3528,6 +3528,11 @@ msgstr "失败" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "未知节点类型:%r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3654,8 +3659,3 @@ msgstr "在图示之外发现了图示标题。" #, python-format msgid "unimplemented node type: %r" msgstr "未实现的节点类型:%r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "未知节点类型:%r" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index ae30b37e7ea3aa6b76e5c34eaafe20592b32dd18..d88a9519ad687b804991096490b8ce6817e3acf3 100644 GIT binary patch delta 19 acmeyz{EvA;2ZxcFf`NgRq0z<(d5i!?ng&<^ delta 13 Vcmeyz{EvA;$HWbM8>eM30st=~1{weW diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index fa89e5eb5b4..d7fa9c4343e 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index bc882f98b71c5a6770a9e16147adf9d3701465f1..3b311b40c6b19902d6ec2358a31bd5b2b3f5635e 100644 GIT binary patch delta 19 acmeBW>1CPF!C_>kU|?WnXtZ%cEh7Ln_63Ik delta 13 UcmeBW>1CPFF>wRm#%bk@03^Q!NdN!< diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index da2294870b2..4ff16cadf13 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2021-12-26 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -48,7 +48,7 @@ msgstr "" msgid "making output directory" msgstr "" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "" @@ -326,127 +326,127 @@ msgstr "" msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -458,42 +458,42 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -1857,75 +1857,75 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -1954,36 +1954,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "" @@ -2274,36 +2274,36 @@ msgstr "" msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3513,6 +3513,11 @@ msgstr "" msgid "unknown directive or role name: %s:%s" msgstr "" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3639,8 +3644,3 @@ msgstr "" #, python-format msgid "unimplemented node type: %r" msgstr "" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index ca8ecbff4d810af6a7a65820aee2be0c18a40ad9..b5791e1d1b9288d03c18c14ff1c3d3643a66ed2f 100644 GIT binary patch delta 23 fcmaEVjOqO`rVVQnIgHE{3=FIcjW%yd-0cVed`$^` delta 23 fcmaEVjOqO`rVVQnISh>y3=FIc4L5H|-0cVed\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -56,7 +56,7 @@ msgstr "本專案需要 Sphinx v%s 版本或以上,故無法以現版本編譯 msgid "making output directory" msgstr "正在建立輸出目錄" -#: sphinx/application.py:241 sphinx/registry.py:426 +#: sphinx/application.py:241 sphinx/registry.py:430 #, python-format msgid "while setting up extension %s:" msgstr "正在設置擴充套件 %s 時:" @@ -142,7 +142,7 @@ msgstr "指令 %r 已經被註冊,它將會被覆寫" msgid "role %r is already registered, it will be overridden" msgstr "role %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:1239 +#: sphinx/application.py:1245 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行讀取是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1243 +#: sphinx/application.py:1249 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 擴充套件對於平行讀取是不安全的" -#: sphinx/application.py:1246 +#: sphinx/application.py:1252 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +163,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行寫入是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1250 +#: sphinx/application.py:1256 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 擴充套件對於平行寫入是不安全的" -#: sphinx/application.py:1258 sphinx/application.py:1262 +#: sphinx/application.py:1264 sphinx/application.py:1268 #, python-format msgid "doing serial %s" msgstr "執行串列 %s" @@ -334,127 +334,127 @@ msgstr "為文件 \"%s\" 找到多個檔案: %r\n使用 %r 來建立。" msgid "document not readable. Ignored." msgstr "文件無法讀取。已略過。" -#: sphinx/registry.py:135 +#: sphinx/registry.py:139 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Builder class %s 沒有 \"name\" 屬性" -#: sphinx/registry.py:137 +#: sphinx/registry.py:141 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r 已存在(於 %s 模組)" -#: sphinx/registry.py:150 +#: sphinx/registry.py:154 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder 名稱 %s 未註冊或無法從 entry point 取得" -#: sphinx/registry.py:157 +#: sphinx/registry.py:161 #, python-format msgid "Builder name %s not registered" msgstr "Builder 名稱 %s 未註冊" -#: sphinx/registry.py:164 +#: sphinx/registry.py:168 #, python-format msgid "domain %s already registered" msgstr "domain %s 已註冊" -#: sphinx/registry.py:187 sphinx/registry.py:200 sphinx/registry.py:211 +#: sphinx/registry.py:191 sphinx/registry.py:204 sphinx/registry.py:215 #, python-format msgid "domain %s not yet registered" msgstr "domain %s 尚未被註冊" -#: sphinx/registry.py:191 +#: sphinx/registry.py:195 #, python-format msgid "The %r directive is already registered to domain %s" msgstr "%r 指令已註冊給 domain %s" -#: sphinx/registry.py:203 +#: sphinx/registry.py:207 #, python-format msgid "The %r role is already registered to domain %s" msgstr "%r 角色已註冊給 domain %s" -#: sphinx/registry.py:214 +#: sphinx/registry.py:218 #, python-format msgid "The %r index is already registered to domain %s" msgstr "%r 索引已註冊給 domain %s" -#: sphinx/registry.py:238 +#: sphinx/registry.py:242 #, python-format msgid "The %r object_type is already registered" msgstr "%r object_type 已註冊" -#: sphinx/registry.py:258 +#: sphinx/registry.py:262 #, python-format msgid "The %r crossref_type is already registered" msgstr "%r crossref_type 已註冊" -#: sphinx/registry.py:265 +#: sphinx/registry.py:269 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r 已註冊" -#: sphinx/registry.py:275 +#: sphinx/registry.py:279 #, python-format msgid "source_parser for %r is already registered" msgstr "對於 %r 的 source_parser 已註冊" -#: sphinx/registry.py:284 +#: sphinx/registry.py:288 #, python-format msgid "Source parser for %s not registered" msgstr "對於 %s 的源碼剖析器未註冊" -#: sphinx/registry.py:313 +#: sphinx/registry.py:317 #, python-format msgid "Translator for %r already exists" msgstr "對於 %r 的翻譯器已經存在" -#: sphinx/registry.py:326 +#: sphinx/registry.py:330 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "對於 add_node() 的 kwargs 必須是一個 (visit, depart) 函式值組:%r=%r" -#: sphinx/registry.py:398 +#: sphinx/registry.py:402 #, python-format msgid "enumerable_node %r already registered" msgstr "enumerable_node %r 已註冊" -#: sphinx/registry.py:407 +#: sphinx/registry.py:411 #, python-format msgid "math renderer %s is already registered" msgstr "數學描繪器 %s 已註冊" -#: sphinx/registry.py:420 +#: sphinx/registry.py:424 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "擴充套件 %r 已被併入版本 %s 以上的 Sphinx:此擴充套件已略過。" -#: sphinx/registry.py:431 +#: sphinx/registry.py:435 msgid "Original exception:\n" msgstr "原始的例外:\n" -#: sphinx/registry.py:432 +#: sphinx/registry.py:436 #, python-format msgid "Could not import extension %s" msgstr "無法引入擴充套件 %s" -#: sphinx/registry.py:437 +#: sphinx/registry.py:441 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "擴充套件 %r 沒有 setup() 函式;它真的是 Sphinx 擴充套件模組嗎?" -#: sphinx/registry.py:446 +#: sphinx/registry.py:450 #, python-format msgid "" "The %s extension used by this project needs at least Sphinx v%s; it " "therefore cannot be built with this version." msgstr "此專案使用的 %s 擴充套件需要 Sphinx v%s 以上的版本;所以它無法以此版本被建立。" -#: sphinx/registry.py:454 +#: sphinx/registry.py:458 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " @@ -466,42 +466,42 @@ msgstr "擴充套件 %r 從它的 setup() 函式回傳一個未支援物件; msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:77 +#: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "主題 %r 沒有 \"theme\" 設定" -#: sphinx/theming.py:79 +#: sphinx/theming.py:82 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "主題 %r 沒有 \"inherit\" 設定" -#: sphinx/theming.py:85 +#: sphinx/theming.py:88 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "未找到名為 %r 的主題,被 %r 繼承" -#: sphinx/theming.py:108 +#: sphinx/theming.py:111 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s。%s 不在已被搜尋的主題組態中出現" -#: sphinx/theming.py:127 +#: sphinx/theming.py:130 #, python-format msgid "unsupported theme option %r given" msgstr "未支援的主題選項 %r 被給予" -#: sphinx/theming.py:225 +#: sphinx/theming.py:228 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "主題路徑中的檔案 %r 不是有效的 zipfile 或未包含主題" -#: sphinx/theming.py:240 +#: sphinx/theming.py:243 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "找到 sphinx_rtd_theme (< 0.3.0)。從 Sphinx-6.0 之後將無法使用。" -#: sphinx/theming.py:245 +#: sphinx/theming.py:248 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "未找到名為 %r 的主題(缺少 theme.conf?)" @@ -1865,75 +1865,75 @@ msgstr "對 csv-table 指令的 \":file:\" 選項現在會將絕對路徑辨識 msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290 +#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "重複的 C 宣告,亦被定義於 %s:%s。\n宣告是 '.. c:%s:: %s'。" -#: sphinx/domains/c.py:3215 +#: sphinx/domains/c.py:3231 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177 +#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 #: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183 +#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267 msgid "Return values" msgstr "回傳值" -#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186 +#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 #: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 msgid "Returns" msgstr "回傳" -#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233 +#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 #: sphinx/domains/python.py:460 msgid "Return type" msgstr "回傳型別" -#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591 +#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 msgid "member" msgstr "成員函數" -#: sphinx/domains/c.py:3741 +#: sphinx/domains/c.py:3757 msgid "variable" msgstr "變數" -#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590 +#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:3743 +#: sphinx/domains/c.py:3759 msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:3744 +#: sphinx/domains/c.py:3760 msgid "struct" msgstr "結構" -#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592 +#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 msgid "type" msgstr "型別" -#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597 +#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "函式參數" @@ -1962,36 +1962,36 @@ msgstr "重複的引用 %s,亦出現於 %s" msgid "Citation [%s] is not referenced." msgstr "引用 [%s] 未被參照。" -#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132 +#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "重複的 C++ 宣告,亦被定義於 %s:%s。\n宣告是 '.. cpp:%s:: %s'。" -#: sphinx/domains/cpp.py:6938 +#: sphinx/domains/cpp.py:7022 msgid "Template Parameters" msgstr "模板參數" -#: sphinx/domains/cpp.py:7055 +#: sphinx/domains/cpp.py:7139 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228 +#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228 msgid "Throws" msgstr "拋出" -#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342 +#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 #: sphinx/domains/python.py:1206 msgid "class" msgstr "類別" -#: sphinx/domains/cpp.py:7593 +#: sphinx/domains/cpp.py:7677 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:7598 +#: sphinx/domains/cpp.py:7682 msgid "template parameter" msgstr "模板參數" @@ -2282,36 +2282,36 @@ msgstr "重複的標籤 %s,亦出現於 %s" msgid "duplicate %s description of %s, other instance in %s" msgstr "重複 %s 的描述 %s,亦出現於 %s" -#: sphinx/domains/std.py:870 +#: sphinx/domains/std.py:872 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已停用。 :numref: 已略過。" -#: sphinx/domains/std.py:878 +#: sphinx/domains/std.py:880 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "無法建立一個交互參照。任一數字未被指定: %s" -#: sphinx/domains/std.py:890 +#: sphinx/domains/std.py:892 #, python-format msgid "the link has no caption: %s" msgstr "這個連結沒有標題: %s" -#: sphinx/domains/std.py:904 +#: sphinx/domains/std.py:906 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無效的 numfig_format: %s (%r)" -#: sphinx/domains/std.py:907 +#: sphinx/domains/std.py:909 #, python-format msgid "invalid numfig_format: %s" msgstr "無效的 numfig_format: %s" -#: sphinx/domains/std.py:1120 +#: sphinx/domains/std.py:1122 #, python-format msgid "undefined label: %s" msgstr "未定義的標籤: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1124 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "無法建立一個交互參照。未找到標題或題目: %s" @@ -3521,6 +3521,11 @@ msgstr "失敗" msgid "unknown directive or role name: %s:%s" msgstr "未知的指令或角色名稱: %s:%s" +#: sphinx/util/docutils.py:500 +#, python-format +msgid "unknown node type: %r" +msgstr "未知的節點型別: %r" + #: sphinx/util/i18n.py:67 #, python-format msgid "reading error: %s, %s" @@ -3647,8 +3652,3 @@ msgstr "標題不在圖之內。" #, python-format msgid "unimplemented node type: %r" msgstr "未實作的節點型別: %r" - -#: sphinx/writers/texinfo.py:1285 -#, python-format -msgid "unknown node type: %r" -msgstr "未知的節點型別: %r" From 7da429924ed0d625afc820abe8ec41d1d0f7e2cb Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 26 Dec 2021 20:34:03 +0900 Subject: [PATCH 121/192] Fix testcase in py36 case --- tests/test_ext_autodoc_configs.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index 899bf9ff024..e84bcf76d2b 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1146,11 +1146,6 @@ def test_autodoc_typehints_description_and_type_aliases(app): @pytest.mark.sphinx('html', testroot='ext-autodoc', confoverrides={'autodoc_unqualified_typehints': True}) def test_autodoc_unqualified_typehints(app): - if sys.version_info < (3, 7): - Any = 'Any' - else: - Any = '~typing.Any' - options = {"members": None, "undoc-members": None} actual = do_autodoc(app, 'module', 'target.typehints', options) @@ -1164,7 +1159,7 @@ def test_autodoc_unqualified_typehints(app): ' :type: int', '', '', - '.. py:class:: Math(s: str, o: ~typing.Optional[%s] = None)' % Any, + '.. py:class:: Math(s: str, o: ~typing.Optional[~typing.Any] = None)', ' :module: target.typehints', '', '', From f7d9ea2aafc594a93d12df2971eab7b3fd9a109f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 26 Dec 2021 12:31:48 +0900 Subject: [PATCH 122/192] refactor: py domain: Separate parse_reftarget() from type_to_xref() --- sphinx/domains/python.py | 50 +++++++++++++++++++++++----------------- 1 file changed, 29 insertions(+), 21 deletions(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 240db309b4e..d82c39c3972 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -80,45 +80,53 @@ class ModuleEntry(NamedTuple): deprecated: bool -def type_to_xref(target: str, env: BuildEnvironment = None, suppress_prefix: bool = False - ) -> addnodes.pending_xref: - """Convert a type string to a cross reference node.""" - if target == 'None' or target.startswith('typing.'): +def parse_reftarget(reftarget: str, suppress_prefix: bool = False + ) -> Tuple[str, str, str, bool]: + """Parse a type string and return (reftype, reftarget, title, refspecific flag)""" + refspecific = False + if reftarget.startswith('.'): + reftarget = reftarget[1:] + title = reftarget + refspecific = True + elif reftarget.startswith('~'): + reftarget = reftarget[1:] + title = reftarget.split('.')[-1] + elif suppress_prefix: + title = reftarget.split('.')[-1] + elif reftarget.startswith('typing.'): + title = reftarget[7:] + else: + title = reftarget + + if reftarget == 'None' or reftarget.startswith('typing.'): # typing module provides non-class types. Obj reference is good to refer them. reftype = 'obj' else: reftype = 'class' + return reftype, reftarget, title, refspecific + + +def type_to_xref(target: str, env: BuildEnvironment = None, suppress_prefix: bool = False + ) -> addnodes.pending_xref: + """Convert a type string to a cross reference node.""" if env: kwargs = {'py:module': env.ref_context.get('py:module'), 'py:class': env.ref_context.get('py:class')} else: kwargs = {} - refspecific = False - if target.startswith('.'): - target = target[1:] - text = target - refspecific = True - elif target.startswith('~'): - target = target[1:] - text = target.split('.')[-1] - elif suppress_prefix: - text = target.split('.')[-1] - elif target.startswith('typing.'): - text = target[7:] - else: - text = target + reftype, target, title, refspecific = parse_reftarget(target, suppress_prefix) if env.config.python_use_unqualified_type_names: # Note: It would be better to use qualname to describe the object to support support # nested classes. But python domain can't access the real python object because this # module should work not-dynamically. - shortname = text.split('.')[-1] + shortname = title.split('.')[-1] contnodes: List[Node] = [pending_xref_condition('', shortname, condition='resolved'), - pending_xref_condition('', text, condition='*')] + pending_xref_condition('', title, condition='*')] else: - contnodes = [nodes.Text(text)] + contnodes = [nodes.Text(title)] return pending_xref('', *contnodes, refdomain='py', reftype=reftype, reftarget=target, From 5da68c3de3a05f0498b1576f01397be6bad82f2d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 27 Dec 2021 01:54:53 +0900 Subject: [PATCH 123/192] Fix py domain: "typing" types are not hyperlinked in info-field-list --- CHANGES | 2 ++ sphinx/domains/python.py | 64 +++++++++++++++------------------------- tests/test_domain_py.py | 23 ++++++++++++++- 3 files changed, 47 insertions(+), 42 deletions(-) diff --git a/CHANGES b/CHANGES index ffb4c78aa7d..91da9789a12 100644 --- a/CHANGES +++ b/CHANGES @@ -59,6 +59,8 @@ Bugs fixed * #9944: LaTeX: extra vertical whitespace for some nested declarations * #9940: LaTeX: Multi-function declaration in Python domain has cramped vertical spacing in latexpdf output +* #10015: py domain: types under the "typing" module are not hyperlinked defined + at info-field-list * #9390: texinfo: Do not emit labels inside footnotes * #9979: Error level messages were displayed as warning messages diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index d82c39c3972..cfe420f3916 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -362,27 +362,27 @@ def make_xref(self, rolename: str, domain: str, target: str, result = super().make_xref(rolename, domain, target, # type: ignore innernode, contnode, env, inliner=None, location=None) - result['refspecific'] = True - result['py:module'] = env.ref_context.get('py:module') - result['py:class'] = env.ref_context.get('py:class') - if target.startswith(('.', '~')): - prefix, result['reftarget'] = target[0], target[1:] - if prefix == '.': - text = target[1:] - elif prefix == '~': - text = target.split('.')[-1] - for node in list(result.traverse(nodes.Text)): - node.parent[node.parent.index(node)] = nodes.Text(text) - break - elif isinstance(result, pending_xref) and env.config.python_use_unqualified_type_names: - children = result.children - result.clear() - - shortname = target.split('.')[-1] - textnode = innernode('', shortname) - contnodes = [pending_xref_condition('', '', textnode, condition='resolved'), - pending_xref_condition('', '', *children, condition='*')] - result.extend(contnodes) + if isinstance(result, pending_xref): + result['refspecific'] = True + result['py:module'] = env.ref_context.get('py:module') + result['py:class'] = env.ref_context.get('py:class') + + reftype, reftarget, reftitle, _ = parse_reftarget(target) + if reftarget != reftitle: + result['reftype'] = reftype + result['reftarget'] = reftarget + + result.clear() + result += innernode(reftitle, reftitle) + elif env.config.python_use_unqualified_type_names: + children = result.children + result.clear() + + shortname = target.split('.')[-1] + textnode = innernode('', shortname) + contnodes = [pending_xref_condition('', '', textnode, condition='resolved'), + pending_xref_condition('', '', *children, condition='*')] + result.extend(contnodes) return result @@ -415,16 +415,7 @@ def make_xrefs(self, rolename: str, domain: str, target: str, class PyField(PyXrefMixin, Field): - def make_xref(self, rolename: str, domain: str, target: str, - innernode: Type[TextlikeNode] = nodes.emphasis, - contnode: Node = None, env: BuildEnvironment = None, - inliner: Inliner = None, location: Node = None) -> Node: - if rolename == 'class' and target == 'None': - # None is not a type, so use obj role instead. - rolename = 'obj' - - return super().make_xref(rolename, domain, target, innernode, contnode, - env, inliner, location) + pass class PyGroupedField(PyXrefMixin, GroupedField): @@ -432,16 +423,7 @@ class PyGroupedField(PyXrefMixin, GroupedField): class PyTypedField(PyXrefMixin, TypedField): - def make_xref(self, rolename: str, domain: str, target: str, - innernode: Type[TextlikeNode] = nodes.emphasis, - contnode: Node = None, env: BuildEnvironment = None, - inliner: Inliner = None, location: Node = None) -> Node: - if rolename == 'class' and target == 'None': - # None is not a type, so use obj role instead. - rolename = 'obj' - - return super().make_xref(rolename, domain, target, innernode, contnode, - env, inliner, location) + pass class PyObject(ObjectDescription[Tuple[str, str]]): diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index ca0148cbb86..b32d7469933 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -1196,7 +1196,9 @@ def test_type_field(app): text = (".. py:data:: var1\n" " :type: .int\n" ".. py:data:: var2\n" - " :type: ~builtins.int\n") + " :type: ~builtins.int\n" + ".. py:data:: var3\n" + " :type: typing.Optional[typing.Tuple[int, typing.Any]]\n") doctree = restructuredtext.parse(app, text) assert_node(doctree, (addnodes.index, [desc, ([desc_signature, ([desc_name, "var1"], @@ -1209,9 +1211,28 @@ def test_type_field(app): [desc_annotation, ([desc_sig_punctuation, ':'], desc_sig_space, [pending_xref, "int"])])], + [desc_content, ()])], + addnodes.index, + [desc, ([desc_signature, ([desc_name, "var3"], + [desc_annotation, ([desc_sig_punctuation, ":"], + desc_sig_space, + [pending_xref, "Optional"], + [desc_sig_punctuation, "["], + [pending_xref, "Tuple"], + [desc_sig_punctuation, "["], + [pending_xref, "int"], + [desc_sig_punctuation, ","], + desc_sig_space, + [pending_xref, "Any"], + [desc_sig_punctuation, "]"], + [desc_sig_punctuation, "]"])])], [desc_content, ()])])) assert_node(doctree[1][0][1][2], pending_xref, reftarget='int', refspecific=True) assert_node(doctree[3][0][1][2], pending_xref, reftarget='builtins.int', refspecific=False) + assert_node(doctree[5][0][1][2], pending_xref, reftarget='typing.Optional', refspecific=False) + assert_node(doctree[5][0][1][4], pending_xref, reftarget='typing.Tuple', refspecific=False) + assert_node(doctree[5][0][1][6], pending_xref, reftarget='int', refspecific=False) + assert_node(doctree[5][0][1][9], pending_xref, reftarget='typing.Any', refspecific=False) @pytest.mark.sphinx(freshenv=True) From 1f71f85fd62eb4886b1cec0a4c15fbf9d0c4db8e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 27 Dec 2021 01:58:42 +0900 Subject: [PATCH 124/192] Fix #10015: autodoc: autodoc_typehints_format='short' does not work when autodoc_typehints='description' --- sphinx/ext/autodoc/typehints.py | 9 +++++++-- tests/test_ext_autodoc_configs.py | 6 +++--- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index f4b4dd35e57..5102e6706b0 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -23,6 +23,11 @@ def record_typehints(app: Sphinx, objtype: str, name: str, obj: Any, options: Dict, args: str, retann: str) -> None: """Record type hints to env object.""" + if app.config.autodoc_typehints_format == 'short': + mode = 'smart' + else: + mode = 'fully-qualified' + try: if callable(obj): annotations = app.env.temp_data.setdefault('annotations', {}) @@ -30,9 +35,9 @@ def record_typehints(app: Sphinx, objtype: str, name: str, obj: Any, sig = inspect.signature(obj, type_aliases=app.config.autodoc_type_aliases) for param in sig.parameters.values(): if param.annotation is not param.empty: - annotation[param.name] = typing.stringify(param.annotation) + annotation[param.name] = typing.stringify(param.annotation, mode) if sig.return_annotation is not sig.empty: - annotation['return'] = typing.stringify(sig.return_annotation) + annotation['return'] = typing.stringify(sig.return_annotation, mode) except (TypeError, ValueError): pass diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index b178889ef13..6a4961ff6c8 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -835,7 +835,7 @@ def test_autodoc_typehints_description(app): ' **x** (*Tuple**[**int**, **Union**[**int**, **str**]**]*) --\n' '\n' ' Return type:\n' - ' Tuple[int, int]\n' + ' *Tuple*[int, int]\n' in context) # Overloads still get displayed in the signature @@ -887,7 +887,7 @@ def test_autodoc_typehints_description_no_undoc(app): ' another tuple\n' '\n' ' Return type:\n' - ' Tuple[int, int]\n' + ' *Tuple*[int, int]\n' in context) @@ -978,7 +978,7 @@ def test_autodoc_typehints_both(app): ' **x** (*Tuple**[**int**, **Union**[**int**, **str**]**]*) --\n' '\n' ' Return type:\n' - ' Tuple[int, int]\n' + ' *Tuple*[int, int]\n' in context) # Overloads still get displayed in the signature From 59cb7466b5bbe687670f42fe8b41f8369575f8b8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 27 Dec 2021 02:28:45 +0900 Subject: [PATCH 125/192] Fix some messages are still not translated --- sphinx/roles.py | 6 +++--- sphinx/util/docfields.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sphinx/roles.py b/sphinx/roles.py index e194db5bcf3..c6949b0c972 100644 --- a/sphinx/roles.py +++ b/sphinx/roles.py @@ -15,7 +15,7 @@ from docutils.nodes import Element, Node, TextElement, system_message from sphinx import addnodes -from sphinx.locale import _ +from sphinx.locale import _, __ from sphinx.util import ws_re from sphinx.util.docutils import ReferenceRole, SphinxRole from sphinx.util.typing import RoleFunction @@ -190,7 +190,7 @@ def run(self) -> Tuple[List[Node], List[system_message]]: title = "PEP " + self.title reference += nodes.strong(title, title) except ValueError: - msg = self.inliner.reporter.error('invalid PEP number %s' % self.target, + msg = self.inliner.reporter.error(__('invalid PEP number %s') % self.target, line=self.lineno) prb = self.inliner.problematic(self.rawtext, self.rawtext, msg) return [prb], [msg] @@ -224,7 +224,7 @@ def run(self) -> Tuple[List[Node], List[system_message]]: title = "RFC " + self.title reference += nodes.strong(title, title) except ValueError: - msg = self.inliner.reporter.error('invalid RFC number %s' % self.target, + msg = self.inliner.reporter.error(__('invalid RFC number %s') % self.target, line=self.lineno) prb = self.inliner.problematic(self.rawtext, self.rawtext, msg) return [prb], [msg] diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 49ee26789a4..081713b0f54 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -78,8 +78,8 @@ def make_xref(self, rolename: str, domain: str, target: str, role = env.get_domain(domain).role(rolename) if role is None or inliner is None: if role is None and inliner is not None: - msg = "Problem in %s domain: field is supposed " - msg += "to use role '%s', but that role is not in the domain." + msg = __("Problem in %s domain: field is supposed " + "to use role '%s', but that role is not in the domain.") logger.warning(__(msg), domain, rolename, location=location) refnode = addnodes.pending_xref('', refdomain=domain, refexplicit=False, reftype=rolename, reftarget=target) From 10efd31c46ee354180a8887d17377f80b443d38b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 27 Dec 2021 02:32:48 +0900 Subject: [PATCH 126/192] Fix autodoc: Update error message on filtering members --- sphinx/ext/autodoc/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 16f75e1d39e..f38d35af1ab 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -812,9 +812,9 @@ def is_filtered_inherited_member(name: str, obj: Any) -> bool: if skip_user is not None: keep = not skip_user except Exception as exc: - logger.warning(__('autodoc: failed to determine %r to be documented, ' + logger.warning(__('autodoc: failed to determine %s.%s (%r) to be documented, ' 'the following exception was raised:\n%s'), - member, exc, type='autodoc') + self.name, membername, member, exc, type='autodoc') keep = False if keep: From 9039991a3bd2e7de0766fb38eaca6ee3affbb4c1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 30 Dec 2021 23:44:24 +0900 Subject: [PATCH 127/192] Close #9555: autosummary: Improve error messages on failure to load target object --- CHANGES | 1 + sphinx/ext/autosummary/__init__.py | 85 +++++++++++++++++++++--------- sphinx/ext/autosummary/generate.py | 27 ++++++---- 3 files changed, 79 insertions(+), 34 deletions(-) diff --git a/CHANGES b/CHANGES index ffb4c78aa7d..1f7d4cce800 100644 --- a/CHANGES +++ b/CHANGES @@ -23,6 +23,7 @@ Features added ``__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. +* #9555: autosummary: Improve error messages on failure to load target object * #9800: extlinks: Emit warning if a hardcoded link is replaceable by an extlink, suggesting a replacement. * #9961: html: Support nested HTML elements in other HTML builders diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 298c9013802..3feef41b66d 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -61,7 +61,7 @@ from inspect import Parameter from os import path from types import ModuleType -from typing import Any, Dict, List, Optional, Tuple, Type, cast +from typing import Any, Dict, List, Optional, Sequence, Tuple, Type, cast from docutils import nodes from docutils.nodes import Element, Node, system_message @@ -306,15 +306,18 @@ def run(self) -> List[Node]: def import_by_name(self, name: str, prefixes: List[str]) -> Tuple[str, Any, Any, str]: with mock(self.config.autosummary_mock_imports): try: - return import_by_name(name, prefixes) - except ImportError as exc: + return import_by_name(name, prefixes, grouped_exception=True) + except ImportExceptionGroup as exc: # check existence of instance attribute try: return import_ivar_by_name(name, prefixes) - except ImportError: - pass + except ImportError as exc2: + if exc2.__cause__: + errors: List[BaseException] = exc.exceptions + [exc2.__cause__] + else: + errors = exc.exceptions + [exc2] - raise exc # re-raise ImportError if instance attribute not found + raise ImportExceptionGroup(exc.args[0], errors) def create_documenter(self, app: Sphinx, obj: Any, parent: Any, full_name: str) -> "Documenter": @@ -344,9 +347,10 @@ def get_items(self, names: List[str]) -> List[Tuple[str, str, str, str]]: try: real_name, obj, parent, modname = self.import_by_name(name, prefixes=prefixes) - except ImportError: - logger.warning(__('autosummary: failed to import %s'), name, - location=self.get_location()) + except ImportExceptionGroup as exc: + errors = list(set("* %s: %s" % (type(e).__name__, e) for e in exc.exceptions)) + logger.warning(__('autosummary: failed to import %s.\nPossible hints:\n%s'), + name, '\n'.join(errors), location=self.get_location()) continue self.bridge.result = StringList() # initialize for each documenter @@ -620,6 +624,18 @@ def limited_join(sep: str, items: List[str], max_chars: int = 30, # -- Importing items ----------------------------------------------------------- + +class ImportExceptionGroup(Exception): + """Exceptions raised during importing the target objects. + + It contains an error messages and a list of exceptions as its arguments. + """ + + def __init__(self, message: Optional[str], exceptions: Sequence[BaseException]): + super().__init__(message) + self.exceptions = list(exceptions) + + def get_import_prefixes_from_env(env: BuildEnvironment) -> List[str]: """ Obtain current Python import prefixes (for `import_by_name`) @@ -641,26 +657,38 @@ def get_import_prefixes_from_env(env: BuildEnvironment) -> List[str]: return prefixes -def import_by_name(name: str, prefixes: List[str] = [None]) -> Tuple[str, Any, Any, str]: +def import_by_name(name: str, prefixes: List[str] = [None], grouped_exception: bool = False + ) -> Tuple[str, Any, Any, str]: """Import a Python object that has the given *name*, under one of the *prefixes*. The first name that succeeds is used. """ tried = [] + errors: List[ImportExceptionGroup] = [] for prefix in prefixes: try: if prefix: prefixed_name = '.'.join([prefix, name]) else: prefixed_name = name - obj, parent, modname = _import_by_name(prefixed_name) + obj, parent, modname = _import_by_name(prefixed_name, grouped_exception) return prefixed_name, obj, parent, modname except ImportError: tried.append(prefixed_name) - raise ImportError('no module named %s' % ' or '.join(tried)) + except ImportExceptionGroup as exc: + tried.append(prefixed_name) + errors.append(exc) + + if grouped_exception: + exceptions: List[BaseException] = sum((e.exceptions for e in errors), []) + raise ImportExceptionGroup('no module named %s' % ' or '.join(tried), exceptions) + else: + raise ImportError('no module named %s' % ' or '.join(tried)) -def _import_by_name(name: str) -> Tuple[Any, Any, str]: +def _import_by_name(name: str, grouped_exception: bool = False) -> Tuple[Any, Any, str]: """Import a Python object given its full name.""" + errors: List[BaseException] = [] + try: name_parts = name.split('.') @@ -670,8 +698,8 @@ def _import_by_name(name: str) -> Tuple[Any, Any, str]: try: mod = import_module(modname) return getattr(mod, name_parts[-1]), mod, modname - except (ImportError, IndexError, AttributeError): - pass + except (ImportError, IndexError, AttributeError) as exc: + errors.append(exc.__cause__ or exc) # ... then as MODNAME, MODNAME.OBJ1, MODNAME.OBJ1.OBJ2, ... last_j = 0 @@ -681,8 +709,8 @@ def _import_by_name(name: str) -> Tuple[Any, Any, str]: modname = '.'.join(name_parts[:j]) try: import_module(modname) - except ImportError: - continue + except ImportError as exc: + errors.append(exc.__cause__ or exc) if modname in sys.modules: break @@ -696,25 +724,32 @@ def _import_by_name(name: str) -> Tuple[Any, Any, str]: return obj, parent, modname else: return sys.modules[modname], None, modname - except (ValueError, ImportError, AttributeError, KeyError) as e: - raise ImportError(*e.args) from e + except (ValueError, ImportError, AttributeError, KeyError) as exc: + errors.append(exc) + if grouped_exception: + raise ImportExceptionGroup('', errors) + else: + raise ImportError(*exc.args) from exc -def import_ivar_by_name(name: str, prefixes: List[str] = [None]) -> Tuple[str, Any, Any, str]: +def import_ivar_by_name(name: str, prefixes: List[str] = [None], + grouped_exception: bool = False) -> Tuple[str, Any, Any, str]: """Import an instance variable that has the given *name*, under one of the *prefixes*. The first name that succeeds is used. """ try: name, attr = name.rsplit(".", 1) - real_name, obj, parent, modname = import_by_name(name, prefixes) + real_name, obj, parent, modname = import_by_name(name, prefixes, grouped_exception) qualname = real_name.replace(modname + ".", "") analyzer = ModuleAnalyzer.for_module(getattr(obj, '__module__', modname)) analyzer.analyze() # check for presence in `annotations` to include dataclass attributes if (qualname, attr) in analyzer.attr_docs or (qualname, attr) in analyzer.annotations: return real_name + "." + attr, INSTANCEATTR, obj, modname - except (ImportError, ValueError, PycodeError): - pass + except (ImportError, ValueError, PycodeError) as exc: + raise ImportError from exc + except ImportExceptionGroup: + raise # pass through it as is raise ImportError @@ -739,8 +774,8 @@ def run(self) -> Tuple[List[Node], List[system_message]]: try: # try to import object by name prefixes = get_import_prefixes_from_env(self.env) - import_by_name(pending_xref['reftarget'], prefixes) - except ImportError: + import_by_name(pending_xref['reftarget'], prefixes, grouped_exception=True) + except ImportExceptionGroup: literal = cast(nodes.literal, pending_xref[0]) objects[0] = nodes.emphasis(self.rawtext, literal.astext(), classes=literal['classes']) diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 87cd0d64eb8..b7c832ddde7 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -41,7 +41,8 @@ from sphinx.deprecation import RemovedInSphinx50Warning from sphinx.ext.autodoc import Documenter from sphinx.ext.autodoc.importer import import_module -from sphinx.ext.autosummary import get_documenter, import_by_name, import_ivar_by_name +from sphinx.ext.autosummary import (ImportExceptionGroup, get_documenter, import_by_name, + import_ivar_by_name) from sphinx.locale import __ from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.registry import SphinxComponentRegistry @@ -430,15 +431,22 @@ def generate_autosummary_docs(sources: List[str], output_dir: str = None, ensuredir(path) try: - name, obj, parent, modname = import_by_name(entry.name) + name, obj, parent, modname = import_by_name(entry.name, grouped_exception=True) qualname = name.replace(modname + ".", "") - except ImportError as e: + except ImportExceptionGroup as exc: try: - # try to importl as an instance attribute + # try to import as an instance attribute name, obj, parent, modname = import_ivar_by_name(entry.name) qualname = name.replace(modname + ".", "") - except ImportError: - logger.warning(__('[autosummary] failed to import %r: %s') % (entry.name, e)) + except ImportError as exc2: + if exc2.__cause__: + exceptions: List[BaseException] = exc.exceptions + [exc2.__cause__] + else: + exceptions = exc.exceptions + [exc2] + + errors = list(set("* %s: %s" % (type(e).__name__, e) for e in exceptions)) + logger.warning(__('[autosummary] failed to import %s.\nPossible hints:\n%s'), + entry.name, '\n'.join(errors)) continue context: Dict[str, Any] = {} @@ -500,13 +508,14 @@ def find_autosummary_in_docstring(name: str, module: str = None, filename: str = RemovedInSphinx50Warning, stacklevel=2) try: - real_name, obj, parent, modname = import_by_name(name) + real_name, obj, parent, modname = import_by_name(name, grouped_exception=True) lines = pydoc.getdoc(obj).splitlines() return find_autosummary_in_lines(lines, module=name, filename=filename) except AttributeError: pass - except ImportError as e: - print("Failed to import '%s': %s" % (name, e)) + except ImportExceptionGroup as exc: + errors = list(set("* %s: %s" % (type(e).__name__, e) for e in exc.exceptions)) + print('Failed to import %s.\nPossible hints:\n%s' % (name, '\n'.join(errors))) except SystemExit: print("Failed to import '%s'; the module executes module level " "statement and it might call sys.exit()." % name) From 6df45e0eadba5ac0e55296e67414b03dc24779b5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 1 Jan 2022 14:24:43 +0900 Subject: [PATCH 128/192] Add `mode` parameter to sphinx.util.typing:restify() To make the typehints in "Bases" field simple, this adds a new parameter `mode` to sphinx.util.typing:restify() to suppress the leading module name from typehints in "Bases" field. --- sphinx/util/typing.py | 97 ++++++++++++++++++++++++--------------- tests/test_util_typing.py | 40 ++++++++++++++++ 2 files changed, 100 insertions(+), 37 deletions(-) diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index 005599f79f9..537b6117238 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -105,10 +105,24 @@ def is_system_TypeVar(typ: Any) -> bool: return modname == 'typing' and isinstance(typ, TypeVar) -def restify(cls: Optional[Type]) -> str: - """Convert python class to a reST reference.""" +def restify(cls: Optional[Type], mode: str = 'fully-qualified-except-typing') -> str: + """Convert python class to a reST reference. + + :param mode: Specify a method how annotations will be stringified. + + 'fully-qualified-except-typing' + Show the module name and qualified name of the annotation except + the "typing" module. + 'smart' + Show the name of the annotation. + """ from sphinx.util import inspect # lazy loading + if mode == 'smart': + modprefix = '~' + else: + modprefix = '' + try: if cls is None or cls is NoneType: return ':py:obj:`None`' @@ -117,63 +131,67 @@ def restify(cls: Optional[Type]) -> str: elif isinstance(cls, str): return cls elif cls in INVALID_BUILTIN_CLASSES: - return ':py:class:`%s`' % INVALID_BUILTIN_CLASSES[cls] + return ':py:class:`%s%s`' % (modprefix, INVALID_BUILTIN_CLASSES[cls]) elif inspect.isNewType(cls): if sys.version_info > (3, 10): # newtypes have correct module info since Python 3.10+ - print(cls, type(cls), dir(cls)) - return ':py:class:`%s.%s`' % (cls.__module__, cls.__name__) + return ':py:class:`%s%s.%s`' % (modprefix, cls.__module__, cls.__name__) else: return ':py:class:`%s`' % cls.__name__ elif UnionType and isinstance(cls, UnionType): if len(cls.__args__) > 1 and None in cls.__args__: - args = ' | '.join(restify(a) for a in cls.__args__ if a) + args = ' | '.join(restify(a, mode) for a in cls.__args__ if a) return 'Optional[%s]' % args else: - return ' | '.join(restify(a) for a in cls.__args__) + return ' | '.join(restify(a, mode) for a in cls.__args__) elif cls.__module__ in ('__builtin__', 'builtins'): if hasattr(cls, '__args__'): return ':py:class:`%s`\\ [%s]' % ( cls.__name__, - ', '.join(restify(arg) for arg in cls.__args__), + ', '.join(restify(arg, mode) for arg in cls.__args__), ) else: return ':py:class:`%s`' % cls.__name__ else: if sys.version_info >= (3, 7): # py37+ - return _restify_py37(cls) + return _restify_py37(cls, mode) else: - return _restify_py36(cls) + return _restify_py36(cls, mode) except (AttributeError, TypeError): return inspect.object_description(cls) -def _restify_py37(cls: Optional[Type]) -> str: +def _restify_py37(cls: Optional[Type], mode: str = 'fully-qualified-except-typing') -> str: """Convert python class to a reST reference.""" from sphinx.util import inspect # lazy loading + if mode == 'smart': + modprefix = '~' + else: + modprefix = '' + if (inspect.isgenericalias(cls) and cls.__module__ == 'typing' and cls.__origin__ is Union): # Union if len(cls.__args__) > 1 and cls.__args__[-1] is NoneType: if len(cls.__args__) > 2: - args = ', '.join(restify(a) for a in cls.__args__[:-1]) + args = ', '.join(restify(a, mode) for a in cls.__args__[:-1]) return ':py:obj:`~typing.Optional`\\ [:obj:`~typing.Union`\\ [%s]]' % args else: - return ':py:obj:`~typing.Optional`\\ [%s]' % restify(cls.__args__[0]) + return ':py:obj:`~typing.Optional`\\ [%s]' % restify(cls.__args__[0], mode) else: - args = ', '.join(restify(a) for a in cls.__args__) + args = ', '.join(restify(a, mode) for a in cls.__args__) return ':py:obj:`~typing.Union`\\ [%s]' % args elif inspect.isgenericalias(cls): if isinstance(cls.__origin__, typing._SpecialForm): - text = restify(cls.__origin__) # type: ignore + text = restify(cls.__origin__, mode) # type: ignore elif getattr(cls, '_name', None): if cls.__module__ == 'typing': text = ':py:class:`~%s.%s`' % (cls.__module__, cls._name) else: - text = ':py:class:`%s.%s`' % (cls.__module__, cls._name) + text = ':py:class:`%s%s.%s`' % (modprefix, cls.__module__, cls._name) else: - text = restify(cls.__origin__) + text = restify(cls.__origin__, mode) origin = getattr(cls, '__origin__', None) if not hasattr(cls, '__args__'): @@ -182,12 +200,12 @@ def _restify_py37(cls: Optional[Type]) -> str: # Suppress arguments if all system defined TypeVars (ex. Dict[KT, VT]) pass elif cls.__module__ == 'typing' and cls._name == 'Callable': - args = ', '.join(restify(a) for a in cls.__args__[:-1]) - text += r"\ [[%s], %s]" % (args, restify(cls.__args__[-1])) + args = ', '.join(restify(a, mode) for a in cls.__args__[:-1]) + text += r"\ [[%s], %s]" % (args, restify(cls.__args__[-1], mode)) elif cls.__module__ == 'typing' and getattr(origin, '_name', None) == 'Literal': text += r"\ [%s]" % ', '.join(repr(a) for a in cls.__args__) elif cls.__args__: - text += r"\ [%s]" % ", ".join(restify(a) for a in cls.__args__) + text += r"\ [%s]" % ", ".join(restify(a, mode) for a in cls.__args__) return text elif isinstance(cls, typing._SpecialForm): @@ -196,7 +214,7 @@ def _restify_py37(cls: Optional[Type]) -> str: if cls.__module__ == 'typing': return ':py:class:`~%s.%s`' % (cls.__module__, cls.__qualname__) else: - return ':py:class:`%s.%s`' % (cls.__module__, cls.__qualname__) + return ':py:class:`%s%s.%s`' % (modprefix, cls.__module__, cls.__qualname__) elif isinstance(cls, ForwardRef): return ':py:class:`%s`' % cls.__forward_arg__ else: @@ -204,10 +222,15 @@ def _restify_py37(cls: Optional[Type]) -> str: if cls.__module__ == 'typing': return ':py:obj:`~%s.%s`' % (cls.__module__, cls.__name__) else: - return ':py:obj:`%s.%s`' % (cls.__module__, cls.__name__) + return ':py:obj:`%s%s.%s`' % (modprefix, cls.__module__, cls.__name__) + +def _restify_py36(cls: Optional[Type], mode: str = 'fully-qualified-except-typing') -> str: + if mode == 'smart': + modprefix = '~' + else: + modprefix = '' -def _restify_py36(cls: Optional[Type]) -> str: module = getattr(cls, '__module__', None) if module == 'typing': if getattr(cls, '_name', None): @@ -221,7 +244,7 @@ def _restify_py36(cls: Optional[Type]) -> str: else: qualname = repr(cls).replace('typing.', '') elif hasattr(cls, '__qualname__'): - qualname = '%s.%s' % (module, cls.__qualname__) + qualname = '%s%s.%s' % (modprefix, module, cls.__qualname__) else: qualname = repr(cls) @@ -230,11 +253,11 @@ def _restify_py36(cls: Optional[Type]) -> str: if module == 'typing': reftext = ':py:class:`~typing.%s`' % qualname else: - reftext = ':py:class:`%s`' % qualname + reftext = ':py:class:`%s%s`' % (modprefix, qualname) params = cls.__args__ if params: - param_str = ', '.join(restify(p) for p in params) + param_str = ', '.join(restify(p, mode) for p in params) return reftext + '\\ [%s]' % param_str else: return reftext @@ -242,19 +265,19 @@ def _restify_py36(cls: Optional[Type]) -> str: if module == 'typing': reftext = ':py:class:`~typing.%s`' % qualname else: - reftext = ':py:class:`%s`' % qualname + reftext = ':py:class:`%s%s`' % (modprefix, qualname) if cls.__args__ is None or len(cls.__args__) <= 2: params = cls.__args__ elif cls.__origin__ == Generator: params = cls.__args__ else: # typing.Callable - args = ', '.join(restify(arg) for arg in cls.__args__[:-1]) - result = restify(cls.__args__[-1]) + args = ', '.join(restify(arg, mode) for arg in cls.__args__[:-1]) + result = restify(cls.__args__[-1], mode) return reftext + '\\ [[%s], %s]' % (args, result) if params: - param_str = ', '.join(restify(p) for p in params) + param_str = ', '.join(restify(p, mode) for p in params) return reftext + '\\ [%s]' % (param_str) else: return reftext @@ -264,13 +287,13 @@ def _restify_py36(cls: Optional[Type]) -> str: if params is not None: if len(params) > 1 and params[-1] is NoneType: if len(params) > 2: - param_str = ", ".join(restify(p) for p in params[:-1]) + param_str = ", ".join(restify(p, mode) for p in params[:-1]) return (':py:obj:`~typing.Optional`\\ ' '[:py:obj:`~typing.Union`\\ [%s]]' % param_str) else: - return ':py:obj:`~typing.Optional`\\ [%s]' % restify(params[0]) + return ':py:obj:`~typing.Optional`\\ [%s]' % restify(params[0], mode) else: - param_str = ', '.join(restify(p) for p in params) + param_str = ', '.join(restify(p, mode) for p in params) return ':py:obj:`~typing.Union`\\ [%s]' % param_str else: return ':py:obj:`Union`' @@ -278,25 +301,25 @@ def _restify_py36(cls: Optional[Type]) -> str: if cls.__module__ == 'typing': return ':py:class:`~%s.%s`' % (cls.__module__, cls.__qualname__) else: - return ':py:class:`%s.%s`' % (cls.__module__, cls.__qualname__) + return ':py:class:`%s%s.%s`' % (modprefix, cls.__module__, cls.__qualname__) elif hasattr(cls, '_name'): # SpecialForm if cls.__module__ == 'typing': return ':py:obj:`~%s.%s`' % (cls.__module__, cls._name) else: - return ':py:obj:`%s.%s`' % (cls.__module__, cls._name) + return ':py:obj:`%s%s.%s`' % (modprefix, cls.__module__, cls._name) elif hasattr(cls, '__name__'): # not a class (ex. TypeVar) if cls.__module__ == 'typing': return ':py:obj:`~%s.%s`' % (cls.__module__, cls.__name__) else: - return ':py:obj:`%s.%s`' % (cls.__module__, cls.__name__) + return ':py:obj:`%s%s.%s`' % (modprefix, cls.__module__, cls.__name__) else: # others (ex. Any) if cls.__module__ == 'typing': return ':py:obj:`~%s.%s`' % (cls.__module__, qualname) else: - return ':py:obj:`%s.%s`' % (cls.__module__, qualname) + return ':py:obj:`%s%s.%s`' % (modprefix, cls.__module__, qualname) def stringify(annotation: Any, mode: str = 'fully-qualified-except-typing') -> str: diff --git a/tests/test_util_typing.py b/tests/test_util_typing.py index 9ee217f96bb..20359c8c233 100644 --- a/tests/test_util_typing.py +++ b/tests/test_util_typing.py @@ -43,13 +43,28 @@ class BrokenType: def test_restify(): assert restify(int) == ":py:class:`int`" + assert restify(int, "smart") == ":py:class:`int`" + assert restify(str) == ":py:class:`str`" + assert restify(str, "smart") == ":py:class:`str`" + assert restify(None) == ":py:obj:`None`" + assert restify(None, "smart") == ":py:obj:`None`" + assert restify(Integral) == ":py:class:`numbers.Integral`" + assert restify(Integral, "smart") == ":py:class:`~numbers.Integral`" + assert restify(Struct) == ":py:class:`struct.Struct`" + assert restify(Struct, "smart") == ":py:class:`~struct.Struct`" + assert restify(TracebackType) == ":py:class:`types.TracebackType`" + assert restify(TracebackType, "smart") == ":py:class:`~types.TracebackType`" + assert restify(Any) == ":py:obj:`~typing.Any`" + assert restify(Any, "smart") == ":py:obj:`~typing.Any`" + assert restify('str') == "str" + assert restify('str', "smart") == "str" def test_restify_type_hints_containers(): @@ -99,13 +114,24 @@ def test_restify_type_hints_Union(): if sys.version_info >= (3, 7): assert restify(Union[int, Integral]) == (":py:obj:`~typing.Union`\\ " "[:py:class:`int`, :py:class:`numbers.Integral`]") + assert restify(Union[int, Integral], "smart") == (":py:obj:`~typing.Union`\\ " + "[:py:class:`int`," + " :py:class:`~numbers.Integral`]") + assert (restify(Union[MyClass1, MyClass2]) == (":py:obj:`~typing.Union`\\ " "[:py:class:`tests.test_util_typing.MyClass1`, " ":py:class:`tests.test_util_typing.`]")) + assert (restify(Union[MyClass1, MyClass2], "smart") == + (":py:obj:`~typing.Union`\\ " + "[:py:class:`~tests.test_util_typing.MyClass1`," + " :py:class:`~tests.test_util_typing.`]")) else: assert restify(Union[int, Integral]) == ":py:class:`numbers.Integral`" + assert restify(Union[int, Integral], "smart") == ":py:class:`~numbers.Integral`" + assert restify(Union[MyClass1, MyClass2]) == ":py:class:`tests.test_util_typing.MyClass1`" + assert restify(Union[MyClass1, MyClass2], "smart") == ":py:class:`~tests.test_util_typing.MyClass1`" @pytest.mark.skipif(sys.version_info < (3, 7), reason='python 3.7+ is required.') @@ -115,19 +141,31 @@ def test_restify_type_hints_typevars(): T_contra = TypeVar('T_contra', contravariant=True) assert restify(T) == ":py:obj:`tests.test_util_typing.T`" + assert restify(T, "smart") == ":py:obj:`~tests.test_util_typing.T`" + assert restify(T_co) == ":py:obj:`tests.test_util_typing.T_co`" + assert restify(T_co, "smart") == ":py:obj:`~tests.test_util_typing.T_co`" + assert restify(T_contra) == ":py:obj:`tests.test_util_typing.T_contra`" + assert restify(T_contra, "smart") == ":py:obj:`~tests.test_util_typing.T_contra`" + assert restify(List[T]) == ":py:class:`~typing.List`\\ [:py:obj:`tests.test_util_typing.T`]" + assert restify(List[T], "smart") == ":py:class:`~typing.List`\\ [:py:obj:`~tests.test_util_typing.T`]" if sys.version_info >= (3, 10): assert restify(MyInt) == ":py:class:`tests.test_util_typing.MyInt`" + assert restify(MyInt, "smart") == ":py:class:`~tests.test_util_typing.MyInt`" else: assert restify(MyInt) == ":py:class:`MyInt`" + assert restify(MyInt, "smart") == ":py:class:`MyInt`" def test_restify_type_hints_custom_class(): assert restify(MyClass1) == ":py:class:`tests.test_util_typing.MyClass1`" + assert restify(MyClass1, "smart") == ":py:class:`~tests.test_util_typing.MyClass1`" + assert restify(MyClass2) == ":py:class:`tests.test_util_typing.`" + assert restify(MyClass2, "smart") == ":py:class:`~tests.test_util_typing.`" def test_restify_type_hints_alias(): @@ -169,12 +207,14 @@ def test_restify_type_union_operator(): def test_restify_broken_type_hints(): assert restify(BrokenType) == ':py:class:`tests.test_util_typing.BrokenType`' + assert restify(BrokenType, "smart") == ':py:class:`~tests.test_util_typing.BrokenType`' def test_restify_mock(): with mock(['unknown']): import unknown assert restify(unknown.secret.Class) == ':py:class:`unknown.secret.Class`' + assert restify(unknown.secret.Class, "smart") == ':py:class:`~unknown.secret.Class`' def test_stringify(): From 3fc98a2b3d6dec830caa19ecc8a1dadd80ebb6dd Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 1 Jan 2022 14:54:08 +0900 Subject: [PATCH 129/192] Fix #10027: autodoc_typehints_format does not work with :show-inheritance: --- sphinx/ext/autodoc/__init__.py | 31 ++++++++-- .../test-ext-autodoc/target/genericalias.py | 3 + .../roots/test-ext-autodoc/target/typevar.py | 5 +- tests/test_ext_autodoc.py | 19 ++++++- tests/test_ext_autodoc_autoattribute.py | 2 +- tests/test_ext_autodoc_autodata.py | 2 +- tests/test_ext_autodoc_configs.py | 56 +++++++++++++++++++ 7 files changed, 107 insertions(+), 11 deletions(-) diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 21e0a11cfe2..48f9efb5ee4 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1674,7 +1674,11 @@ def add_directive_header(self, sig: str) -> None: self.env.events.emit('autodoc-process-bases', self.fullname, self.object, self.options, bases) - base_classes = [restify(cls) for cls in bases] + if self.config.autodoc_typehints_format == "short": + base_classes = [restify(cls, "smart") for cls in bases] + else: + base_classes = [restify(cls) for cls in bases] + sourcename = self.get_sourcename() self.add_line('', sourcename) self.add_line(' ' + _('Bases: %s') % ', '.join(base_classes), sourcename) @@ -1771,7 +1775,11 @@ def add_content(self, more_content: Optional[StringList], no_docstring: bool = F if self.doc_as_attr and not self.get_variable_comment(): try: - more_content = StringList([_('alias of %s') % restify(self.object)], source='') + if self.config.autodoc_typehints_format == "short": + alias = restify(self.object, "smart") + else: + alias = restify(self.object) + more_content = StringList([_('alias of %s') % alias], source='') except AttributeError: pass # Invalid class object is passed. @@ -1844,7 +1852,12 @@ def should_suppress_directive_header(self) -> bool: def update_content(self, more_content: StringList) -> None: if inspect.isgenericalias(self.object): - more_content.append(_('alias of %s') % restify(self.object), '') + if self.config.autodoc_typehints_format == "short": + alias = restify(self.object, "smart") + else: + alias = restify(self.object) + + more_content.append(_('alias of %s') % alias, '') more_content.append('', '') super().update_content(more_content) @@ -1862,7 +1875,11 @@ def should_suppress_directive_header(self) -> bool: def update_content(self, more_content: StringList) -> None: if inspect.isNewType(self.object): - supertype = restify(self.object.__supertype__) + if self.config.autodoc_typehints_format == "short": + supertype = restify(self.object.__supertype__, "smart") + else: + supertype = restify(self.object.__supertype__) + more_content.append(_('alias of %s') % supertype, '') more_content.append('', '') @@ -1899,7 +1916,11 @@ def update_content(self, more_content: StringList) -> None: for constraint in self.object.__constraints__: attrs.append(stringify_typehint(constraint)) if self.object.__bound__: - attrs.append(r"bound=\ " + restify(self.object.__bound__)) + if self.config.autodoc_typehints_format == "short": + bound = restify(self.object.__bound__, "smart") + else: + bound = restify(self.object.__bound__) + attrs.append(r"bound=\ " + bound) if self.object.__covariant__: attrs.append("covariant=True") if self.object.__contravariant__: diff --git a/tests/roots/test-ext-autodoc/target/genericalias.py b/tests/roots/test-ext-autodoc/target/genericalias.py index 9909efca15c..3856e034d2c 100644 --- a/tests/roots/test-ext-autodoc/target/genericalias.py +++ b/tests/roots/test-ext-autodoc/target/genericalias.py @@ -9,3 +9,6 @@ class Class: #: A list of int T = List[int] + +#: A list of Class +L = List[Class] diff --git a/tests/roots/test-ext-autodoc/target/typevar.py b/tests/roots/test-ext-autodoc/target/typevar.py index c330e2d885f..ff2d46d1925 100644 --- a/tests/roots/test-ext-autodoc/target/typevar.py +++ b/tests/roots/test-ext-autodoc/target/typevar.py @@ -1,3 +1,4 @@ +from datetime import date from typing import NewType, TypeVar #: T1 @@ -15,7 +16,7 @@ T5 = TypeVar("T5", contravariant=True) #: T6 -T6 = NewType("T6", int) +T6 = NewType("T6", date) #: T7 T7 = TypeVar("T7", bound=int) @@ -26,4 +27,4 @@ class Class: T1 = TypeVar("T1") #: T6 - T6 = NewType("T6", int) + T6 = NewType("T6", date) diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index c853fbb03b7..e701d777800 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -1874,6 +1874,12 @@ def test_autodoc_GenericAlias(app): '', ' alias of :py:class:`~typing.List`\\ [:py:class:`int`]', '', + '.. py:attribute:: L', + ' :module: target.genericalias', + '', + ' A list of Class', + '', + '', '.. py:attribute:: T', ' :module: target.genericalias', '', @@ -1898,6 +1904,15 @@ def test_autodoc_GenericAlias(app): ' alias of :py:class:`~typing.List`\\ [:py:class:`int`]', '', '', + '.. py:data:: L', + ' :module: target.genericalias', + '', + ' A list of Class', + '', + ' alias of :py:class:`~typing.List`\\ ' + '[:py:class:`target.genericalias.Class`]', + '', + '', '.. py:data:: T', ' :module: target.genericalias', '', @@ -1935,7 +1950,7 @@ def test_autodoc_TypeVar(app): '', ' T6', '', - ' alias of :py:class:`int`', + ' alias of :py:class:`datetime.date`', '', '', '.. py:data:: T1', @@ -1975,7 +1990,7 @@ def test_autodoc_TypeVar(app): '', ' T6', '', - ' alias of :py:class:`int`', + ' alias of :py:class:`datetime.date`', '', '', '.. py:data:: T7', diff --git a/tests/test_ext_autodoc_autoattribute.py b/tests/test_ext_autodoc_autoattribute.py index 8fe065d6533..826b73dc787 100644 --- a/tests/test_ext_autodoc_autoattribute.py +++ b/tests/test_ext_autodoc_autoattribute.py @@ -183,7 +183,7 @@ def test_autoattribute_NewType(app): '', ' T6', '', - ' alias of :py:class:`int`', + ' alias of :py:class:`datetime.date`', '', ] diff --git a/tests/test_ext_autodoc_autodata.py b/tests/test_ext_autodoc_autodata.py index f983726adc0..36a96a9d396 100644 --- a/tests/test_ext_autodoc_autodata.py +++ b/tests/test_ext_autodoc_autodata.py @@ -111,7 +111,7 @@ def test_autodata_NewType(app): '', ' T6', '', - ' alias of :py:class:`int`', + ' alias of :py:class:`datetime.date`', '', ] diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index b178889ef13..e1a9901dc45 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1231,6 +1231,62 @@ def test_autodoc_typehints_format_short(app): ] +@pytest.mark.sphinx('html', testroot='ext-autodoc', + confoverrides={'autodoc_typehints_format': "short"}) +def test_autodoc_typehints_format_short_for_class_alias(app): + actual = do_autodoc(app, 'class', 'target.classes.Alias') + assert list(actual) == [ + '', + '.. py:attribute:: Alias', + ' :module: target.classes', + '', + ' alias of :py:class:`~target.classes.Foo`', + ] + + +@pytest.mark.sphinx('html', testroot='ext-autodoc', + confoverrides={'autodoc_typehints_format': "short"}) +def test_autodoc_typehints_format_short_for_generic_alias(app): + actual = do_autodoc(app, 'data', 'target.genericalias.L') + if sys.version_info < (3, 7): + assert list(actual) == [ + '', + '.. py:data:: L', + ' :module: target.genericalias', + ' :value: typing.List[target.genericalias.Class]', + '', + ' A list of Class', + '', + ] + else: + assert list(actual) == [ + '', + '.. py:data:: L', + ' :module: target.genericalias', + '', + ' A list of Class', + '', + ' alias of :py:class:`~typing.List`\\ [:py:class:`~target.genericalias.Class`]', + '', + ] + + +@pytest.mark.sphinx('html', testroot='ext-autodoc', + confoverrides={'autodoc_typehints_format': "short"}) +def test_autodoc_typehints_format_short_for_newtype_alias(app): + actual = do_autodoc(app, 'data', 'target.typevar.T6') + assert list(actual) == [ + '', + '.. py:data:: T6', + ' :module: target.typevar', + '', + ' T6', + '', + ' alias of :py:class:`~datetime.date`', + '', + ] + + @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodoc_default_options(app): # no settings From b84771dcd2fe1543acbdf87af3b60b323f41e80b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 1 Jan 2022 18:45:03 +0900 Subject: [PATCH 130/192] A happy new year! --- LICENSE | 2 +- doc/conf.py | 2 +- sphinx/__init__.py | 2 +- sphinx/__main__.py | 2 +- sphinx/addnodes.py | 2 +- sphinx/application.py | 2 +- sphinx/builders/__init__.py | 2 +- sphinx/builders/_epub_base.py | 2 +- sphinx/builders/changes.py | 2 +- sphinx/builders/dirhtml.py | 2 +- sphinx/builders/dummy.py | 2 +- sphinx/builders/epub3.py | 2 +- sphinx/builders/gettext.py | 2 +- sphinx/builders/html/__init__.py | 2 +- sphinx/builders/html/transforms.py | 2 +- sphinx/builders/latex/__init__.py | 2 +- sphinx/builders/latex/constants.py | 2 +- sphinx/builders/latex/nodes.py | 2 +- sphinx/builders/latex/theming.py | 2 +- sphinx/builders/latex/transforms.py | 2 +- sphinx/builders/latex/util.py | 2 +- sphinx/builders/linkcheck.py | 2 +- sphinx/builders/manpage.py | 2 +- sphinx/builders/singlehtml.py | 2 +- sphinx/builders/texinfo.py | 2 +- sphinx/builders/text.py | 2 +- sphinx/builders/xml.py | 2 +- sphinx/cmd/__init__.py | 2 +- sphinx/cmd/build.py | 2 +- sphinx/cmd/make_mode.py | 2 +- sphinx/cmd/quickstart.py | 2 +- sphinx/config.py | 2 +- sphinx/deprecation.py | 2 +- sphinx/directives/__init__.py | 2 +- sphinx/directives/code.py | 2 +- sphinx/directives/other.py | 2 +- sphinx/directives/patches.py | 2 +- sphinx/domains/__init__.py | 2 +- sphinx/domains/c.py | 2 +- sphinx/domains/changeset.py | 2 +- sphinx/domains/citation.py | 2 +- sphinx/domains/cpp.py | 2 +- sphinx/domains/index.py | 2 +- sphinx/domains/javascript.py | 2 +- sphinx/domains/math.py | 2 +- sphinx/domains/python.py | 2 +- sphinx/domains/rst.py | 2 +- sphinx/domains/std.py | 2 +- sphinx/environment/__init__.py | 2 +- sphinx/environment/adapters/__init__.py | 2 +- sphinx/environment/adapters/asset.py | 2 +- sphinx/environment/adapters/indexentries.py | 2 +- sphinx/environment/adapters/toctree.py | 2 +- sphinx/environment/collectors/__init__.py | 2 +- sphinx/environment/collectors/asset.py | 2 +- sphinx/environment/collectors/dependencies.py | 2 +- sphinx/environment/collectors/metadata.py | 2 +- sphinx/environment/collectors/title.py | 2 +- sphinx/environment/collectors/toctree.py | 2 +- sphinx/errors.py | 2 +- sphinx/events.py | 2 +- sphinx/ext/__init__.py | 2 +- sphinx/ext/apidoc.py | 2 +- sphinx/ext/autodoc/__init__.py | 2 +- sphinx/ext/autodoc/deprecated.py | 2 +- sphinx/ext/autodoc/directive.py | 2 +- sphinx/ext/autodoc/importer.py | 2 +- sphinx/ext/autodoc/mock.py | 2 +- sphinx/ext/autodoc/preserve_defaults.py | 2 +- sphinx/ext/autodoc/type_comment.py | 2 +- sphinx/ext/autodoc/typehints.py | 2 +- sphinx/ext/autosectionlabel.py | 2 +- sphinx/ext/autosummary/__init__.py | 2 +- sphinx/ext/autosummary/generate.py | 2 +- sphinx/ext/coverage.py | 2 +- sphinx/ext/doctest.py | 2 +- sphinx/ext/duration.py | 2 +- sphinx/ext/extlinks.py | 2 +- sphinx/ext/githubpages.py | 2 +- sphinx/ext/graphviz.py | 2 +- sphinx/ext/ifconfig.py | 2 +- sphinx/ext/imgconverter.py | 2 +- sphinx/ext/imgmath.py | 2 +- sphinx/ext/inheritance_diagram.py | 2 +- sphinx/ext/intersphinx.py | 2 +- sphinx/ext/linkcode.py | 2 +- sphinx/ext/mathjax.py | 2 +- sphinx/ext/napoleon/__init__.py | 2 +- sphinx/ext/napoleon/docstring.py | 2 +- sphinx/ext/napoleon/iterators.py | 2 +- sphinx/ext/todo.py | 2 +- sphinx/ext/viewcode.py | 2 +- sphinx/extension.py | 2 +- sphinx/highlighting.py | 2 +- sphinx/io.py | 2 +- sphinx/jinja2glue.py | 2 +- sphinx/parsers.py | 2 +- sphinx/project.py | 2 +- sphinx/pycode/__init__.py | 2 +- sphinx/pycode/ast.py | 2 +- sphinx/pycode/parser.py | 2 +- sphinx/pygments_styles.py | 2 +- sphinx/registry.py | 2 +- sphinx/roles.py | 2 +- sphinx/search/__init__.py | 2 +- sphinx/search/da.py | 2 +- sphinx/search/de.py | 2 +- sphinx/search/en.py | 2 +- sphinx/search/es.py | 2 +- sphinx/search/fi.py | 2 +- sphinx/search/fr.py | 2 +- sphinx/search/hu.py | 2 +- sphinx/search/it.py | 2 +- sphinx/search/ja.py | 2 +- sphinx/search/jssplitter.py | 2 +- sphinx/search/nl.py | 2 +- sphinx/search/no.py | 2 +- sphinx/search/pt.py | 2 +- sphinx/search/ro.py | 2 +- sphinx/search/ru.py | 2 +- sphinx/search/sv.py | 2 +- sphinx/search/tr.py | 2 +- sphinx/search/zh.py | 2 +- sphinx/setup_command.py | 2 +- sphinx/templates/graphviz/graphviz.css | 2 +- sphinx/testing/__init__.py | 2 +- sphinx/testing/comparer.py | 2 +- sphinx/testing/fixtures.py | 2 +- sphinx/testing/path.py | 2 +- sphinx/testing/restructuredtext.py | 2 +- sphinx/testing/util.py | 2 +- sphinx/themes/agogo/layout.html | 2 +- sphinx/themes/agogo/static/agogo.css_t | 2 +- sphinx/themes/basic/defindex.html | 2 +- sphinx/themes/basic/domainindex.html | 2 +- sphinx/themes/basic/genindex-single.html | 2 +- sphinx/themes/basic/genindex-split.html | 2 +- sphinx/themes/basic/genindex.html | 2 +- sphinx/themes/basic/globaltoc.html | 2 +- sphinx/themes/basic/layout.html | 2 +- sphinx/themes/basic/localtoc.html | 2 +- sphinx/themes/basic/page.html | 2 +- sphinx/themes/basic/relations.html | 2 +- sphinx/themes/basic/search.html | 2 +- sphinx/themes/basic/searchbox.html | 2 +- sphinx/themes/basic/sourcelink.html | 2 +- sphinx/themes/basic/static/basic.css_t | 2 +- sphinx/themes/basic/static/doctools.js | 2 +- sphinx/themes/basic/static/language_data.js_t | 2 +- sphinx/themes/basic/static/searchtools.js | 2 +- sphinx/themes/classic/layout.html | 2 +- sphinx/themes/classic/static/classic.css_t | 2 +- sphinx/themes/classic/static/sidebar.js_t | 2 +- sphinx/themes/epub/epub-cover.html | 2 +- sphinx/themes/epub/layout.html | 2 +- sphinx/themes/epub/static/epub.css_t | 2 +- sphinx/themes/haiku/layout.html | 2 +- sphinx/themes/haiku/static/haiku.css_t | 2 +- sphinx/themes/nature/static/nature.css_t | 2 +- sphinx/themes/nonav/layout.html | 2 +- sphinx/themes/nonav/static/nonav.css | 2 +- sphinx/themes/pyramid/static/epub.css | 2 +- sphinx/themes/pyramid/static/pyramid.css_t | 2 +- sphinx/themes/scrolls/layout.html | 2 +- sphinx/themes/scrolls/static/scrolls.css_t | 2 +- sphinx/themes/sphinxdoc/static/sphinxdoc.css_t | 2 +- sphinx/themes/traditional/static/traditional.css_t | 2 +- sphinx/theming.py | 2 +- sphinx/transforms/__init__.py | 2 +- sphinx/transforms/compact_bullet_list.py | 2 +- sphinx/transforms/i18n.py | 2 +- sphinx/transforms/post_transforms/__init__.py | 2 +- sphinx/transforms/post_transforms/code.py | 2 +- sphinx/transforms/post_transforms/images.py | 2 +- sphinx/transforms/references.py | 2 +- sphinx/util/__init__.py | 2 +- sphinx/util/build_phase.py | 2 +- sphinx/util/cfamily.py | 2 +- sphinx/util/compat.py | 2 +- sphinx/util/console.py | 2 +- sphinx/util/docfields.py | 2 +- sphinx/util/docstrings.py | 2 +- sphinx/util/docutils.py | 2 +- sphinx/util/fileutil.py | 2 +- sphinx/util/i18n.py | 2 +- sphinx/util/images.py | 2 +- sphinx/util/inspect.py | 2 +- sphinx/util/inventory.py | 2 +- sphinx/util/jsdump.py | 2 +- sphinx/util/logging.py | 2 +- sphinx/util/matching.py | 2 +- sphinx/util/math.py | 2 +- sphinx/util/nodes.py | 2 +- sphinx/util/osutil.py | 2 +- sphinx/util/parallel.py | 2 +- sphinx/util/png.py | 2 +- sphinx/util/pycompat.py | 2 +- sphinx/util/requests.py | 2 +- sphinx/util/rst.py | 2 +- sphinx/util/stemmer/__init__.py | 2 +- sphinx/util/tags.py | 2 +- sphinx/util/template.py | 2 +- sphinx/util/texescape.py | 2 +- sphinx/util/typing.py | 2 +- sphinx/versioning.py | 2 +- sphinx/writers/__init__.py | 2 +- sphinx/writers/html.py | 2 +- sphinx/writers/html5.py | 2 +- sphinx/writers/latex.py | 2 +- sphinx/writers/manpage.py | 2 +- sphinx/writers/texinfo.py | 2 +- sphinx/writers/text.py | 2 +- sphinx/writers/xml.py | 2 +- tests/conftest.py | 2 +- tests/roots/test-changes/conf.py | 2 +- tests/test_api_translator.py | 2 +- tests/test_application.py | 2 +- tests/test_build.py | 2 +- tests/test_build_changes.py | 2 +- tests/test_build_dirhtml.py | 2 +- tests/test_build_epub.py | 2 +- tests/test_build_gettext.py | 2 +- tests/test_build_html.py | 2 +- tests/test_build_latex.py | 2 +- tests/test_build_linkcheck.py | 2 +- tests/test_build_manpage.py | 2 +- tests/test_build_texinfo.py | 2 +- tests/test_build_text.py | 2 +- tests/test_builder.py | 2 +- tests/test_catalogs.py | 2 +- tests/test_config.py | 2 +- tests/test_correct_year.py | 2 +- tests/test_directive_code.py | 2 +- tests/test_directive_only.py | 2 +- tests/test_directive_other.py | 2 +- tests/test_directive_patch.py | 2 +- tests/test_docutilsconf.py | 2 +- tests/test_domain_c.py | 2 +- tests/test_domain_cpp.py | 2 +- tests/test_domain_js.py | 2 +- tests/test_domain_py.py | 2 +- tests/test_domain_rst.py | 2 +- tests/test_domain_std.py | 2 +- tests/test_environment.py | 2 +- tests/test_environment_indexentries.py | 2 +- tests/test_environment_toctree.py | 2 +- tests/test_events.py | 2 +- tests/test_ext_apidoc.py | 2 +- tests/test_ext_autodoc.py | 2 +- tests/test_ext_autodoc_autoattribute.py | 2 +- tests/test_ext_autodoc_autoclass.py | 2 +- tests/test_ext_autodoc_autodata.py | 2 +- tests/test_ext_autodoc_autofunction.py | 2 +- tests/test_ext_autodoc_automodule.py | 2 +- tests/test_ext_autodoc_autoproperty.py | 2 +- tests/test_ext_autodoc_configs.py | 2 +- tests/test_ext_autodoc_events.py | 2 +- tests/test_ext_autodoc_mock.py | 2 +- tests/test_ext_autodoc_preserve_defaults.py | 2 +- tests/test_ext_autodoc_private_members.py | 2 +- tests/test_ext_autosectionlabel.py | 2 +- tests/test_ext_autosummary.py | 2 +- tests/test_ext_coverage.py | 2 +- tests/test_ext_doctest.py | 2 +- tests/test_ext_duration.py | 2 +- tests/test_ext_githubpages.py | 2 +- tests/test_ext_graphviz.py | 2 +- tests/test_ext_ifconfig.py | 2 +- tests/test_ext_imgconverter.py | 2 +- tests/test_ext_inheritance_diagram.py | 2 +- tests/test_ext_intersphinx.py | 2 +- tests/test_ext_math.py | 2 +- tests/test_ext_napoleon.py | 2 +- tests/test_ext_napoleon_docstring.py | 2 +- tests/test_ext_napoleon_iterators.py | 2 +- tests/test_ext_todo.py | 2 +- tests/test_ext_viewcode.py | 2 +- tests/test_extension.py | 2 +- tests/test_highlighting.py | 2 +- tests/test_intl.py | 2 +- tests/test_locale.py | 2 +- tests/test_markup.py | 2 +- tests/test_metadata.py | 2 +- tests/test_parser.py | 2 +- tests/test_project.py | 2 +- tests/test_pycode.py | 2 +- tests/test_pycode_ast.py | 2 +- tests/test_pycode_parser.py | 2 +- tests/test_quickstart.py | 2 +- tests/test_roles.py | 2 +- tests/test_search.py | 2 +- tests/test_setup_command.py | 2 +- tests/test_smartquotes.py | 2 +- tests/test_templating.py | 2 +- tests/test_theming.py | 2 +- tests/test_toctree.py | 2 +- tests/test_transforms_post_transforms.py | 2 +- tests/test_transforms_post_transforms_code.py | 2 +- tests/test_util.py | 2 +- tests/test_util_docstrings.py | 2 +- tests/test_util_docutils.py | 2 +- tests/test_util_fileutil.py | 2 +- tests/test_util_i18n.py | 2 +- tests/test_util_images.py | 2 +- tests/test_util_inspect.py | 2 +- tests/test_util_inventory.py | 2 +- tests/test_util_logging.py | 2 +- tests/test_util_matching.py | 2 +- tests/test_util_nodes.py | 2 +- tests/test_util_rst.py | 2 +- tests/test_util_template.py | 2 +- tests/test_util_typing.py | 2 +- tests/test_versioning.py | 2 +- tests/test_writer_latex.py | 2 +- 314 files changed, 314 insertions(+), 314 deletions(-) diff --git a/LICENSE b/LICENSE index 2249594da08..021d9dbdc29 100644 --- a/LICENSE +++ b/LICENSE @@ -1,7 +1,7 @@ License for Sphinx ================== -Copyright (c) 2007-2021 by the Sphinx team (see AUTHORS file). +Copyright (c) 2007-2022 by the Sphinx team (see AUTHORS file). All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/doc/conf.py b/doc/conf.py index 893761cde19..e5fa0e30373 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -14,7 +14,7 @@ exclude_patterns = ['_build'] project = 'Sphinx' -copyright = '2007-2021, Georg Brandl and the Sphinx team' +copyright = '2007-2022, Georg Brandl and the Sphinx team' version = sphinx.__display_version__ release = version show_authors = True diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 307426eb7c9..49479031934 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -4,7 +4,7 @@ The Sphinx documentation toolchain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/__main__.py b/sphinx/__main__.py index 6192f52ae2a..daff054418a 100644 --- a/sphinx/__main__.py +++ b/sphinx/__main__.py @@ -4,7 +4,7 @@ The Sphinx documentation toolchain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index a90b75798db..dc8fae0ba35 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -4,7 +4,7 @@ Additional docutils nodes. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/application.py b/sphinx/application.py index 475f08853e8..7a763a3adab 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -6,7 +6,7 @@ Gracefully adapted from the TextPress system by Armin. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 64c621a1c5e..93e256ebd80 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -4,7 +4,7 @@ Builder superclass for all builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 672ce724252..ab4eda4dde5 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -4,7 +4,7 @@ Base class of epub2/epub3 builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index 5e51499f950..0086fa158ef 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -4,7 +4,7 @@ Changelog builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/dirhtml.py b/sphinx/builders/dirhtml.py index 9365889bd36..82af09be178 100644 --- a/sphinx/builders/dirhtml.py +++ b/sphinx/builders/dirhtml.py @@ -4,7 +4,7 @@ Directory HTML builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/dummy.py b/sphinx/builders/dummy.py index 722e70d1c45..cddf8e7b869 100644 --- a/sphinx/builders/dummy.py +++ b/sphinx/builders/dummy.py @@ -4,7 +4,7 @@ Do syntax checks, but no writing. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/epub3.py b/sphinx/builders/epub3.py index be69e87ef09..b1a3f520e98 100644 --- a/sphinx/builders/epub3.py +++ b/sphinx/builders/epub3.py @@ -5,7 +5,7 @@ Build epub3 files. Originally derived from epub.py. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 58f9cc40dd5..53660aa5a87 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -4,7 +4,7 @@ The MessageCatalogBuilder class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index 6e732538b60..4e12a172076 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -4,7 +4,7 @@ Several HTML builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index 338c87b7f99..8c50ce0c4a0 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -4,7 +4,7 @@ Transforms for HTML builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index a37a35e61de..aa707bd5b2f 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -4,7 +4,7 @@ LaTeX builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/latex/constants.py b/sphinx/builders/latex/constants.py index 1fe92a9ac95..25caf17360e 100644 --- a/sphinx/builders/latex/constants.py +++ b/sphinx/builders/latex/constants.py @@ -4,7 +4,7 @@ consntants for LaTeX builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/latex/nodes.py b/sphinx/builders/latex/nodes.py index eaed6b862e4..95b5211f57b 100644 --- a/sphinx/builders/latex/nodes.py +++ b/sphinx/builders/latex/nodes.py @@ -4,7 +4,7 @@ Additional nodes for LaTeX writer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/latex/theming.py b/sphinx/builders/latex/theming.py index d5c53a58ba3..b2e3a4dff9f 100644 --- a/sphinx/builders/latex/theming.py +++ b/sphinx/builders/latex/theming.py @@ -4,7 +4,7 @@ Theming support for LaTeX builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/latex/transforms.py b/sphinx/builders/latex/transforms.py index b85a9827c74..343c36cea2b 100644 --- a/sphinx/builders/latex/transforms.py +++ b/sphinx/builders/latex/transforms.py @@ -4,7 +4,7 @@ Transforms for LaTeX builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/latex/util.py b/sphinx/builders/latex/util.py index 4f2391c4ece..6b797c9a248 100644 --- a/sphinx/builders/latex/util.py +++ b/sphinx/builders/latex/util.py @@ -4,7 +4,7 @@ Utilities for LaTeX builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 3d35b9b6b5f..1f9d601e413 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -4,7 +4,7 @@ The CheckExternalLinksBuilder class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/manpage.py b/sphinx/builders/manpage.py index 9d8fd5e6781..88c2c9db57e 100644 --- a/sphinx/builders/manpage.py +++ b/sphinx/builders/manpage.py @@ -4,7 +4,7 @@ Manual pages builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/singlehtml.py b/sphinx/builders/singlehtml.py index 13c1c2f861d..344e062b98a 100644 --- a/sphinx/builders/singlehtml.py +++ b/sphinx/builders/singlehtml.py @@ -4,7 +4,7 @@ Single HTML builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/texinfo.py b/sphinx/builders/texinfo.py index 2b28ce40008..4a2c58143f7 100644 --- a/sphinx/builders/texinfo.py +++ b/sphinx/builders/texinfo.py @@ -4,7 +4,7 @@ Texinfo builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/text.py b/sphinx/builders/text.py index 2ac1b287858..6363e11a0a1 100644 --- a/sphinx/builders/text.py +++ b/sphinx/builders/text.py @@ -4,7 +4,7 @@ Plain-text Sphinx builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/builders/xml.py b/sphinx/builders/xml.py index 865820c364c..9dd3afb544e 100644 --- a/sphinx/builders/xml.py +++ b/sphinx/builders/xml.py @@ -4,7 +4,7 @@ Docutils-native XML and pseudo-XML builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/cmd/__init__.py b/sphinx/cmd/__init__.py index 583e50ed792..d77014547f0 100644 --- a/sphinx/cmd/__init__.py +++ b/sphinx/cmd/__init__.py @@ -4,6 +4,6 @@ Modules for command line executables. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/cmd/build.py b/sphinx/cmd/build.py index 9df13e930c7..77e3cd44fa5 100644 --- a/sphinx/cmd/build.py +++ b/sphinx/cmd/build.py @@ -4,7 +4,7 @@ Build documentation from a provided source. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/cmd/make_mode.py b/sphinx/cmd/make_mode.py index 242329ae0ab..cad0eeabb27 100644 --- a/sphinx/cmd/make_mode.py +++ b/sphinx/cmd/make_mode.py @@ -10,7 +10,7 @@ This is in its own module so that importing it is fast. It should not import the main Sphinx modules (like sphinx.applications, sphinx.builders). - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index ca30f97beff..01e7e3b167e 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -4,7 +4,7 @@ Quickly setup documentation source to work with Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/config.py b/sphinx/config.py index 05bcdeccc5f..38ed1d38882 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -4,7 +4,7 @@ Build configuration file handling. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index 3963e63615f..5b95f8b99c9 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -4,7 +4,7 @@ Sphinx deprecation classes and utilities. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py index 8e8d65f0356..b0635dcb023 100644 --- a/sphinx/directives/__init__.py +++ b/sphinx/directives/__init__.py @@ -4,7 +4,7 @@ Handlers for additional ReST directives. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 12ab51c5880..8bead716349 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -2,7 +2,7 @@ sphinx.directives.code ~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 03eb6d3d241..367a58c7403 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -2,7 +2,7 @@ sphinx.directives.other ~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index dd01cb34a81..f01423a88d4 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -2,7 +2,7 @@ sphinx.directives.patches ~~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/__init__.py b/sphinx/domains/__init__.py index dbfad258c60..4252baf6553 100644 --- a/sphinx/domains/__init__.py +++ b/sphinx/domains/__init__.py @@ -5,7 +5,7 @@ Support for domains, which are groupings of description directives and roles describing e.g. constructs of one programming language. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index dff8bef00e3..196937692be 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -4,7 +4,7 @@ The C language domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index 81c81c2882c..2dbc84e91af 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -4,7 +4,7 @@ The changeset domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/citation.py b/sphinx/domains/citation.py index 0e859acb42d..ca3d6082ebd 100644 --- a/sphinx/domains/citation.py +++ b/sphinx/domains/citation.py @@ -4,7 +4,7 @@ The citation domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index b22ee0b13ac..8733a19cff1 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -4,7 +4,7 @@ The C++ language domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/index.py b/sphinx/domains/index.py index 975ab7000f7..975992b8397 100644 --- a/sphinx/domains/index.py +++ b/sphinx/domains/index.py @@ -4,7 +4,7 @@ The index domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/javascript.py b/sphinx/domains/javascript.py index e2dfb72b12c..59e4740ba2b 100644 --- a/sphinx/domains/javascript.py +++ b/sphinx/domains/javascript.py @@ -4,7 +4,7 @@ The JavaScript domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/math.py b/sphinx/domains/math.py index aa6f9422d03..ebc4da371e2 100644 --- a/sphinx/domains/math.py +++ b/sphinx/domains/math.py @@ -4,7 +4,7 @@ The math domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 5402ce37a8a..693b3f82204 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -4,7 +4,7 @@ The Python domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/rst.py b/sphinx/domains/rst.py index 539a610bb9c..543a38e97f2 100644 --- a/sphinx/domains/rst.py +++ b/sphinx/domains/rst.py @@ -4,7 +4,7 @@ The reStructuredText domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index d08c65668e6..bd02f1c76dc 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -4,7 +4,7 @@ The standard domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index 0b677cac44a..0f7dbd8c706 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -4,7 +4,7 @@ Global creation environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/adapters/__init__.py b/sphinx/environment/adapters/__init__.py index 1e763cb01b8..168bd6ba6b5 100644 --- a/sphinx/environment/adapters/__init__.py +++ b/sphinx/environment/adapters/__init__.py @@ -4,6 +4,6 @@ Sphinx environment adapters - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/adapters/asset.py b/sphinx/environment/adapters/asset.py index f16a5f7d38b..af5f79e9631 100644 --- a/sphinx/environment/adapters/asset.py +++ b/sphinx/environment/adapters/asset.py @@ -4,7 +4,7 @@ Assets adapter for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/adapters/indexentries.py b/sphinx/environment/adapters/indexentries.py index a2c20abd8a2..562462fbf4f 100644 --- a/sphinx/environment/adapters/indexentries.py +++ b/sphinx/environment/adapters/indexentries.py @@ -4,7 +4,7 @@ Index entries adapters for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/adapters/toctree.py b/sphinx/environment/adapters/toctree.py index 53328e8127a..5a9e26d6d5f 100644 --- a/sphinx/environment/adapters/toctree.py +++ b/sphinx/environment/adapters/toctree.py @@ -4,7 +4,7 @@ Toctree adapter for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/collectors/__init__.py b/sphinx/environment/collectors/__init__.py index f4020431f8e..ba7c206367f 100644 --- a/sphinx/environment/collectors/__init__.py +++ b/sphinx/environment/collectors/__init__.py @@ -4,7 +4,7 @@ The data collector components for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/collectors/asset.py b/sphinx/environment/collectors/asset.py index 0a696aa8dee..44a1248ccc1 100644 --- a/sphinx/environment/collectors/asset.py +++ b/sphinx/environment/collectors/asset.py @@ -4,7 +4,7 @@ The image collector for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/collectors/dependencies.py b/sphinx/environment/collectors/dependencies.py index cd8de918f8c..4138c4c1543 100644 --- a/sphinx/environment/collectors/dependencies.py +++ b/sphinx/environment/collectors/dependencies.py @@ -4,7 +4,7 @@ The dependencies collector components for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/collectors/metadata.py b/sphinx/environment/collectors/metadata.py index c3a0aa2f48b..3165b038997 100644 --- a/sphinx/environment/collectors/metadata.py +++ b/sphinx/environment/collectors/metadata.py @@ -4,7 +4,7 @@ The metadata collector components for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/collectors/title.py b/sphinx/environment/collectors/title.py index 28e967427d0..f522231c838 100644 --- a/sphinx/environment/collectors/title.py +++ b/sphinx/environment/collectors/title.py @@ -4,7 +4,7 @@ The title collector components for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/environment/collectors/toctree.py b/sphinx/environment/collectors/toctree.py index 921fc83ded0..03270336585 100644 --- a/sphinx/environment/collectors/toctree.py +++ b/sphinx/environment/collectors/toctree.py @@ -4,7 +4,7 @@ Toctree collector for sphinx.environment. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/errors.py b/sphinx/errors.py index d84d8c4c676..c90dd10d00d 100644 --- a/sphinx/errors.py +++ b/sphinx/errors.py @@ -5,7 +5,7 @@ Contains SphinxError and a few subclasses (in an extra module to avoid circular import problems). - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/events.py b/sphinx/events.py index 634fdc6ca20..46cea6827d8 100644 --- a/sphinx/events.py +++ b/sphinx/events.py @@ -6,7 +6,7 @@ Gracefully adapted from the TextPress system by Armin. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/__init__.py b/sphinx/ext/__init__.py index 80c18574186..803691ca3a7 100644 --- a/sphinx/ext/__init__.py +++ b/sphinx/ext/__init__.py @@ -4,6 +4,6 @@ Contains Sphinx features not activated by default. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/apidoc.py b/sphinx/ext/apidoc.py index 39bb514fc19..e8133baab44 100644 --- a/sphinx/ext/apidoc.py +++ b/sphinx/ext/apidoc.py @@ -10,7 +10,7 @@ Copyright 2008 Société des arts technologiques (SAT), https://sat.qc.ca/ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 5ada06a6a50..3a77f24498f 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -6,7 +6,7 @@ the doctree, thus avoiding duplication between docstrings and documentation for those who like elaborate docstrings. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/deprecated.py b/sphinx/ext/autodoc/deprecated.py index 80a94f0eacf..22c9f46b6f2 100644 --- a/sphinx/ext/autodoc/deprecated.py +++ b/sphinx/ext/autodoc/deprecated.py @@ -4,7 +4,7 @@ The deprecated Documenters for autodoc. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/directive.py b/sphinx/ext/autodoc/directive.py index 2cb2fbabd2e..8b8048f8a92 100644 --- a/sphinx/ext/autodoc/directive.py +++ b/sphinx/ext/autodoc/directive.py @@ -2,7 +2,7 @@ sphinx.ext.autodoc.directive ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index c4ff30422f0..b1bf28ec887 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -4,7 +4,7 @@ Importer utilities for autodoc - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py index ec8c0108738..36b2836f3e2 100644 --- a/sphinx/ext/autodoc/mock.py +++ b/sphinx/ext/autodoc/mock.py @@ -4,7 +4,7 @@ mock for autodoc - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/preserve_defaults.py b/sphinx/ext/autodoc/preserve_defaults.py index 54411d2b6fb..8ce16b37a50 100644 --- a/sphinx/ext/autodoc/preserve_defaults.py +++ b/sphinx/ext/autodoc/preserve_defaults.py @@ -5,7 +5,7 @@ Preserve the default argument values of function signatures in source code and keep them not evaluated for readability. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/type_comment.py b/sphinx/ext/autodoc/type_comment.py index 4db13c695c8..95ba6f6b72e 100644 --- a/sphinx/ext/autodoc/type_comment.py +++ b/sphinx/ext/autodoc/type_comment.py @@ -4,7 +4,7 @@ Update annotations info of living objects using type_comments. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index f4b4dd35e57..810c77c21d6 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -4,7 +4,7 @@ Generating content for autodoc using typehints - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autosectionlabel.py b/sphinx/ext/autosectionlabel.py index be8ad0bc1ee..0fe1857e2d0 100644 --- a/sphinx/ext/autosectionlabel.py +++ b/sphinx/ext/autosectionlabel.py @@ -4,7 +4,7 @@ Allow reference sections by :ref: role using its title. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 298c9013802..0b86edcf062 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -48,7 +48,7 @@ resolved to a Python object, and otherwise it becomes simple emphasis. This can be used as the default role to make links 'smart'. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 87cd0d64eb8..d9f0ba6e18c 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -13,7 +13,7 @@ generate: sphinx-autogen -o source/generated source/*.rst - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py index 75460348e45..2a7e08f8baf 100644 --- a/sphinx/ext/coverage.py +++ b/sphinx/ext/coverage.py @@ -5,7 +5,7 @@ Check Python modules and C API for coverage. Mostly written by Josip Dzolonga for the Google Highly Open Participation contest. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/doctest.py b/sphinx/ext/doctest.py index 242356b6119..990bf33efc4 100644 --- a/sphinx/ext/doctest.py +++ b/sphinx/ext/doctest.py @@ -5,7 +5,7 @@ Mimic doctest by automatically executing code snippets and checking their results. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/duration.py b/sphinx/ext/duration.py index f714dedfb2f..b6570347228 100644 --- a/sphinx/ext/duration.py +++ b/sphinx/ext/duration.py @@ -4,7 +4,7 @@ Measure durations of Sphinx processing. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 71591febbeb..1ca428cc051 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -21,7 +21,7 @@ Both, the url string and the caption string must escape ``%`` as ``%%``. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/githubpages.py b/sphinx/ext/githubpages.py index e760bb4b6e1..0ea25ba521d 100644 --- a/sphinx/ext/githubpages.py +++ b/sphinx/ext/githubpages.py @@ -4,7 +4,7 @@ To publish HTML docs at GitHub Pages, create .nojekyll file. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/graphviz.py b/sphinx/ext/graphviz.py index b1c5ca481ff..ad248993d52 100644 --- a/sphinx/ext/graphviz.py +++ b/sphinx/ext/graphviz.py @@ -5,7 +5,7 @@ Allow graphviz-formatted graphs to be included in Sphinx-generated documents inline. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index 0e42984da68..f14300838a6 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -15,7 +15,7 @@ namespace of the project configuration (that is, all variables from ``conf.py`` are available.) - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/imgconverter.py b/sphinx/ext/imgconverter.py index 84fe6549c7a..5a1653037a0 100644 --- a/sphinx/ext/imgconverter.py +++ b/sphinx/ext/imgconverter.py @@ -4,7 +4,7 @@ Image converter extension for Sphinx - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/imgmath.py b/sphinx/ext/imgmath.py index 1c22dec921b..565deb5ff96 100644 --- a/sphinx/ext/imgmath.py +++ b/sphinx/ext/imgmath.py @@ -4,7 +4,7 @@ Render math in HTML via dvipng or dvisvgm. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/inheritance_diagram.py b/sphinx/ext/inheritance_diagram.py index 377f85d3a76..cf4626c0b78 100644 --- a/sphinx/ext/inheritance_diagram.py +++ b/sphinx/ext/inheritance_diagram.py @@ -31,7 +31,7 @@ class E(B): pass The graph is inserted as a PNG+image map into HTML and a PDF in LaTeX. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index d5f92d6fba0..7f3588ade79 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -19,7 +19,7 @@ also be specified individually, e.g. if the docs should be buildable without Internet access. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/linkcode.py b/sphinx/ext/linkcode.py index e88ba4c9607..b9c165ca497 100644 --- a/sphinx/ext/linkcode.py +++ b/sphinx/ext/linkcode.py @@ -4,7 +4,7 @@ Add external links to module code in Python object descriptions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/mathjax.py b/sphinx/ext/mathjax.py index 30d038d84ff..7b85799ec09 100644 --- a/sphinx/ext/mathjax.py +++ b/sphinx/ext/mathjax.py @@ -6,7 +6,7 @@ Sphinx's HTML writer -- requires the MathJax JavaScript library on your webserver/computer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/napoleon/__init__.py b/sphinx/ext/napoleon/__init__.py index 6fb1c3cb38b..557ed773553 100644 --- a/sphinx/ext/napoleon/__init__.py +++ b/sphinx/ext/napoleon/__init__.py @@ -4,7 +4,7 @@ Support for NumPy and Google style docstrings. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/napoleon/docstring.py b/sphinx/ext/napoleon/docstring.py index d8cb75a5fd6..96cb5be85ef 100644 --- a/sphinx/ext/napoleon/docstring.py +++ b/sphinx/ext/napoleon/docstring.py @@ -6,7 +6,7 @@ Classes for docstring parsing and formatting. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/napoleon/iterators.py b/sphinx/ext/napoleon/iterators.py index 0e865ad8198..f4d4c2423d2 100644 --- a/sphinx/ext/napoleon/iterators.py +++ b/sphinx/ext/napoleon/iterators.py @@ -6,7 +6,7 @@ A collection of helpful iterators. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index beab0976d3f..dd743402235 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -7,7 +7,7 @@ all todos of your project and lists them along with a backlink to the original location. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py index bd1346daabd..d7eb33fc608 100644 --- a/sphinx/ext/viewcode.py +++ b/sphinx/ext/viewcode.py @@ -4,7 +4,7 @@ Add links to module code in Python object descriptions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/extension.py b/sphinx/extension.py index 34bf7763ad7..890a5d8a783 100644 --- a/sphinx/extension.py +++ b/sphinx/extension.py @@ -4,7 +4,7 @@ Utilities for Sphinx extensions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/highlighting.py b/sphinx/highlighting.py index addd0d45ca3..200f41b336b 100644 --- a/sphinx/highlighting.py +++ b/sphinx/highlighting.py @@ -4,7 +4,7 @@ Highlight code blocks using Pygments. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/io.py b/sphinx/io.py index 193aab4780e..b52ce094f77 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -4,7 +4,7 @@ Input/Output files - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import codecs diff --git a/sphinx/jinja2glue.py b/sphinx/jinja2glue.py index f1b57537f53..525a4a994c3 100644 --- a/sphinx/jinja2glue.py +++ b/sphinx/jinja2glue.py @@ -4,7 +4,7 @@ Glue code for the jinja2 templating engine. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/parsers.py b/sphinx/parsers.py index 7f17de85e1b..3204c0a1bd1 100644 --- a/sphinx/parsers.py +++ b/sphinx/parsers.py @@ -4,7 +4,7 @@ A Base class for additional parsers. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/project.py b/sphinx/project.py index 6b31e5cba02..156a08578e2 100644 --- a/sphinx/project.py +++ b/sphinx/project.py @@ -4,7 +4,7 @@ Utility function and classes for Sphinx projects. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/pycode/__init__.py b/sphinx/pycode/__init__.py index 8e79385e246..681bfa38b85 100644 --- a/sphinx/pycode/__init__.py +++ b/sphinx/pycode/__init__.py @@ -4,7 +4,7 @@ Utilities parsing and analyzing Python code. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/pycode/ast.py b/sphinx/pycode/ast.py index 7bba423b479..9e1d23cccad 100644 --- a/sphinx/pycode/ast.py +++ b/sphinx/pycode/ast.py @@ -4,7 +4,7 @@ Helpers for AST (Abstract Syntax Tree). - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/pycode/parser.py b/sphinx/pycode/parser.py index 6b566c4c496..5034fe9d54e 100644 --- a/sphinx/pycode/parser.py +++ b/sphinx/pycode/parser.py @@ -4,7 +4,7 @@ Utilities parsing and analyzing Python code. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import inspect diff --git a/sphinx/pygments_styles.py b/sphinx/pygments_styles.py index 1046826afa7..d81aa2879ae 100644 --- a/sphinx/pygments_styles.py +++ b/sphinx/pygments_styles.py @@ -4,7 +4,7 @@ Sphinx theme specific highlighting styles. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/registry.py b/sphinx/registry.py index 543e5802bb2..201d0c20de1 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -4,7 +4,7 @@ Sphinx component registry. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/roles.py b/sphinx/roles.py index e194db5bcf3..ba778ce1294 100644 --- a/sphinx/roles.py +++ b/sphinx/roles.py @@ -4,7 +4,7 @@ Handlers for additional ReST roles. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index 3c7dce8950c..16b9fb0ed12 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -4,7 +4,7 @@ Create a full-text search index for offline search. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import html diff --git a/sphinx/search/da.py b/sphinx/search/da.py index 9c6ed3c94d0..6ef91b86f22 100644 --- a/sphinx/search/da.py +++ b/sphinx/search/da.py @@ -4,7 +4,7 @@ Danish search language: includes the JS Danish stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/de.py b/sphinx/search/de.py index 3e87fe6d9e0..58ea6942c93 100644 --- a/sphinx/search/de.py +++ b/sphinx/search/de.py @@ -4,7 +4,7 @@ German search language: includes the JS German stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/en.py b/sphinx/search/en.py index b33769cecc4..81ff1ae80ff 100644 --- a/sphinx/search/en.py +++ b/sphinx/search/en.py @@ -4,7 +4,7 @@ English search language: includes the JS porter stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/es.py b/sphinx/search/es.py index 57f0e3a0839..137a0906304 100644 --- a/sphinx/search/es.py +++ b/sphinx/search/es.py @@ -4,7 +4,7 @@ Spanish search language: includes the JS Spanish stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/fi.py b/sphinx/search/fi.py index e4d01c55361..313ddd15833 100644 --- a/sphinx/search/fi.py +++ b/sphinx/search/fi.py @@ -4,7 +4,7 @@ Finnish search language: includes the JS Finnish stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/fr.py b/sphinx/search/fr.py index 4e87d5c92ac..eea1fb50744 100644 --- a/sphinx/search/fr.py +++ b/sphinx/search/fr.py @@ -4,7 +4,7 @@ French search language: includes the JS French stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/hu.py b/sphinx/search/hu.py index bfee1e856d3..365439d9208 100644 --- a/sphinx/search/hu.py +++ b/sphinx/search/hu.py @@ -4,7 +4,7 @@ Hungarian search language: includes the JS Hungarian stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/it.py b/sphinx/search/it.py index ad545f18d2f..da042820f8b 100644 --- a/sphinx/search/it.py +++ b/sphinx/search/it.py @@ -4,7 +4,7 @@ Italian search language: includes the JS Italian stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/ja.py b/sphinx/search/ja.py index e739f1d1689..1d5ebb6059d 100644 --- a/sphinx/search/ja.py +++ b/sphinx/search/ja.py @@ -4,7 +4,7 @@ Japanese search language: includes routine to split words. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/jssplitter.py b/sphinx/search/jssplitter.py index 9b879772ace..4403347eda6 100644 --- a/sphinx/search/jssplitter.py +++ b/sphinx/search/jssplitter.py @@ -6,7 +6,7 @@ DO NOT EDIT. This is generated by utils/jssplitter_generator.py - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/nl.py b/sphinx/search/nl.py index 2216fbe05da..744c7f5d827 100644 --- a/sphinx/search/nl.py +++ b/sphinx/search/nl.py @@ -4,7 +4,7 @@ Dutch search language: includes the JS porter stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/no.py b/sphinx/search/no.py index db79452316e..bff65537fe9 100644 --- a/sphinx/search/no.py +++ b/sphinx/search/no.py @@ -4,7 +4,7 @@ Norwegian search language: includes the JS Norwegian stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/pt.py b/sphinx/search/pt.py index 501c6e4e79d..41c2e60044b 100644 --- a/sphinx/search/pt.py +++ b/sphinx/search/pt.py @@ -4,7 +4,7 @@ Portuguese search language: includes the JS Portuguese stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/ro.py b/sphinx/search/ro.py index 7b592d1c8b4..3736142d225 100644 --- a/sphinx/search/ro.py +++ b/sphinx/search/ro.py @@ -4,7 +4,7 @@ Romanian search language: includes the JS Romanian stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/ru.py b/sphinx/search/ru.py index 53b5970b66c..b3c2990be34 100644 --- a/sphinx/search/ru.py +++ b/sphinx/search/ru.py @@ -4,7 +4,7 @@ Russian search language: includes the JS Russian stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/sv.py b/sphinx/search/sv.py index dde90fd6df3..29d2764efa3 100644 --- a/sphinx/search/sv.py +++ b/sphinx/search/sv.py @@ -4,7 +4,7 @@ Swedish search language: includes the JS Swedish stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/tr.py b/sphinx/search/tr.py index 8d9d1fade26..86075291c68 100644 --- a/sphinx/search/tr.py +++ b/sphinx/search/tr.py @@ -4,7 +4,7 @@ Turkish search language: includes the JS Turkish stemmer. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/search/zh.py b/sphinx/search/zh.py index 7471525057c..0daa4af2ae1 100644 --- a/sphinx/search/zh.py +++ b/sphinx/search/zh.py @@ -4,7 +4,7 @@ Chinese search language: includes routine to split words. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index 1fc55bc157f..ab544139460 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -7,7 +7,7 @@ :author: Sebastian Wiesner :contact: basti.wiesner@gmx.net - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/templates/graphviz/graphviz.css b/sphinx/templates/graphviz/graphviz.css index b340734c742..19e7afd385b 100644 --- a/sphinx/templates/graphviz/graphviz.css +++ b/sphinx/templates/graphviz/graphviz.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- graphviz extension. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/testing/__init__.py b/sphinx/testing/__init__.py index 67263eff99f..c28c0ce0adb 100644 --- a/sphinx/testing/__init__.py +++ b/sphinx/testing/__init__.py @@ -9,6 +9,6 @@ pytest_plugins = 'sphinx.testing.fixtures' - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/testing/comparer.py b/sphinx/testing/comparer.py index 642cc844413..395fe1f74a6 100644 --- a/sphinx/testing/comparer.py +++ b/sphinx/testing/comparer.py @@ -4,7 +4,7 @@ Sphinx test comparer for pytest - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import difflib diff --git a/sphinx/testing/fixtures.py b/sphinx/testing/fixtures.py index daad5a7f6fc..317933ee7b4 100644 --- a/sphinx/testing/fixtures.py +++ b/sphinx/testing/fixtures.py @@ -4,7 +4,7 @@ Sphinx test fixtures for pytest - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/testing/path.py b/sphinx/testing/path.py index e8509d5ba67..b16a9fff3c4 100644 --- a/sphinx/testing/path.py +++ b/sphinx/testing/path.py @@ -2,7 +2,7 @@ sphinx.testing.path ~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/testing/restructuredtext.py b/sphinx/testing/restructuredtext.py index bb095b4100a..59dcd37aa7c 100644 --- a/sphinx/testing/restructuredtext.py +++ b/sphinx/testing/restructuredtext.py @@ -2,7 +2,7 @@ sphinx.testing.restructuredtext ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index 941184fe712..e2630df28ed 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -4,7 +4,7 @@ Sphinx test suite utilities - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import functools diff --git a/sphinx/themes/agogo/layout.html b/sphinx/themes/agogo/layout.html index 855ec8ccb1b..e89657ba13d 100644 --- a/sphinx/themes/agogo/layout.html +++ b/sphinx/themes/agogo/layout.html @@ -5,7 +5,7 @@ Sphinx layout template for the agogo theme, originally written by Andi Albrecht. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "basic/layout.html" %} diff --git a/sphinx/themes/agogo/static/agogo.css_t b/sphinx/themes/agogo/static/agogo.css_t index 0c78e434521..08a4db0ccd2 100644 --- a/sphinx/themes/agogo/static/agogo.css_t +++ b/sphinx/themes/agogo/static/agogo.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- agogo theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/basic/defindex.html b/sphinx/themes/basic/defindex.html index 8ca5748ac85..6f370f2c269 100644 --- a/sphinx/themes/basic/defindex.html +++ b/sphinx/themes/basic/defindex.html @@ -4,7 +4,7 @@ Default template for the "index" page. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #}{{ warn('Now base template defindex.html is deprecated.') }} {%- extends "layout.html" %} diff --git a/sphinx/themes/basic/domainindex.html b/sphinx/themes/basic/domainindex.html index 1ccab0286dd..9b4b0ccac9f 100644 --- a/sphinx/themes/basic/domainindex.html +++ b/sphinx/themes/basic/domainindex.html @@ -4,7 +4,7 @@ Template for domain indices (module index, ...). - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "layout.html" %} diff --git a/sphinx/themes/basic/genindex-single.html b/sphinx/themes/basic/genindex-single.html index 1182fdada34..faf9e6ef094 100644 --- a/sphinx/themes/basic/genindex-single.html +++ b/sphinx/themes/basic/genindex-single.html @@ -4,7 +4,7 @@ Template for a "single" page of a split index. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {% macro indexentries(firstname, links) %} diff --git a/sphinx/themes/basic/genindex-split.html b/sphinx/themes/basic/genindex-split.html index 8b79dc8dcfa..aa8b7853e4b 100644 --- a/sphinx/themes/basic/genindex-split.html +++ b/sphinx/themes/basic/genindex-split.html @@ -4,7 +4,7 @@ Template for a "split" index overview page. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "layout.html" %} diff --git a/sphinx/themes/basic/genindex.html b/sphinx/themes/basic/genindex.html index 7f16c3544d6..470acf41d93 100644 --- a/sphinx/themes/basic/genindex.html +++ b/sphinx/themes/basic/genindex.html @@ -4,7 +4,7 @@ Template for an "all-in-one" index. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "layout.html" %} diff --git a/sphinx/themes/basic/globaltoc.html b/sphinx/themes/basic/globaltoc.html index 5ac0abbd43f..47ba991e1dd 100644 --- a/sphinx/themes/basic/globaltoc.html +++ b/sphinx/themes/basic/globaltoc.html @@ -4,7 +4,7 @@ Sphinx sidebar template: global table of contents. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} diff --git a/sphinx/themes/basic/layout.html b/sphinx/themes/basic/layout.html index df07072201e..a78bdf54ffd 100644 --- a/sphinx/themes/basic/layout.html +++ b/sphinx/themes/basic/layout.html @@ -4,7 +4,7 @@ Master layout template for Sphinx themes. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- block doctype -%}{%- if html5_doctype %} diff --git a/sphinx/themes/basic/localtoc.html b/sphinx/themes/basic/localtoc.html index 750f5daa02d..efb590a06a5 100644 --- a/sphinx/themes/basic/localtoc.html +++ b/sphinx/themes/basic/localtoc.html @@ -4,7 +4,7 @@ Sphinx sidebar template: local table of contents. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- if display_toc %} diff --git a/sphinx/themes/basic/page.html b/sphinx/themes/basic/page.html index 5878bdeebf1..a02f4402035 100644 --- a/sphinx/themes/basic/page.html +++ b/sphinx/themes/basic/page.html @@ -4,7 +4,7 @@ Master template for simple pages. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "layout.html" %} diff --git a/sphinx/themes/basic/relations.html b/sphinx/themes/basic/relations.html index db478b71938..ac8308fccad 100644 --- a/sphinx/themes/basic/relations.html +++ b/sphinx/themes/basic/relations.html @@ -4,7 +4,7 @@ Sphinx sidebar template: relation links. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- if prev %} diff --git a/sphinx/themes/basic/search.html b/sphinx/themes/basic/search.html index 443a7e4fe14..96bb9b9b403 100644 --- a/sphinx/themes/basic/search.html +++ b/sphinx/themes/basic/search.html @@ -4,7 +4,7 @@ Template for the search page. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "layout.html" %} diff --git a/sphinx/themes/basic/searchbox.html b/sphinx/themes/basic/searchbox.html index e0094cd7889..2fa7e235bf0 100644 --- a/sphinx/themes/basic/searchbox.html +++ b/sphinx/themes/basic/searchbox.html @@ -4,7 +4,7 @@ Sphinx sidebar template: quick search box. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- if pagename != "search" and builder != "singlehtml" %} diff --git a/sphinx/themes/basic/sourcelink.html b/sphinx/themes/basic/sourcelink.html index 51261123015..3b5b91d994e 100644 --- a/sphinx/themes/basic/sourcelink.html +++ b/sphinx/themes/basic/sourcelink.html @@ -4,7 +4,7 @@ Sphinx sidebar template: "show source" link. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- if show_source and has_source and sourcename %} diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index 2dff556b452..f3b433e37ec 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- basic theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/basic/static/doctools.js b/sphinx/themes/basic/static/doctools.js index 8cbf1b161a6..b6fba5f1e6b 100644 --- a/sphinx/themes/basic/static/doctools.js +++ b/sphinx/themes/basic/static/doctools.js @@ -4,7 +4,7 @@ * * Sphinx JavaScript utilities for all documentation. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/basic/static/language_data.js_t b/sphinx/themes/basic/static/language_data.js_t index efa154df6c0..9811d4529aa 100644 --- a/sphinx/themes/basic/static/language_data.js_t +++ b/sphinx/themes/basic/static/language_data.js_t @@ -5,7 +5,7 @@ * This script contains the language-specific data used by searchtools.js, * namely the list of stopwords, stemmer, scorer and splitter. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/basic/static/searchtools.js b/sphinx/themes/basic/static/searchtools.js index 002e9c4a20f..2d7785937bb 100644 --- a/sphinx/themes/basic/static/searchtools.js +++ b/sphinx/themes/basic/static/searchtools.js @@ -4,7 +4,7 @@ * * Sphinx JavaScript utilities for the full-text search. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/classic/layout.html b/sphinx/themes/classic/layout.html index dbb30b98ccc..e9443ae52c7 100644 --- a/sphinx/themes/classic/layout.html +++ b/sphinx/themes/classic/layout.html @@ -4,7 +4,7 @@ Sphinx layout template for the classic theme. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "basic/layout.html" %} diff --git a/sphinx/themes/classic/static/classic.css_t b/sphinx/themes/classic/static/classic.css_t index 4a31edf6ab9..d432b51020c 100644 --- a/sphinx/themes/classic/static/classic.css_t +++ b/sphinx/themes/classic/static/classic.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- classic theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/classic/static/sidebar.js_t b/sphinx/themes/classic/static/sidebar.js_t index e1d323b2461..df934a45ede 100644 --- a/sphinx/themes/classic/static/sidebar.js_t +++ b/sphinx/themes/classic/static/sidebar.js_t @@ -16,7 +16,7 @@ * Once the browser is closed the cookie is deleted and the position * reset to the default (expanded). * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/epub/epub-cover.html b/sphinx/themes/epub/epub-cover.html index 70a5a556b2c..b421d4479e3 100644 --- a/sphinx/themes/epub/epub-cover.html +++ b/sphinx/themes/epub/epub-cover.html @@ -4,7 +4,7 @@ Sample template for the html cover page. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "layout.html" %} diff --git a/sphinx/themes/epub/layout.html b/sphinx/themes/epub/layout.html index 4f52fc89179..63eaed84e63 100644 --- a/sphinx/themes/epub/layout.html +++ b/sphinx/themes/epub/layout.html @@ -4,7 +4,7 @@ Sphinx layout template for the epub theme. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "basic/layout.html" %} diff --git a/sphinx/themes/epub/static/epub.css_t b/sphinx/themes/epub/static/epub.css_t index 9c9ca856546..981baaab032 100644 --- a/sphinx/themes/epub/static/epub.css_t +++ b/sphinx/themes/epub/static/epub.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- epub theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/haiku/layout.html b/sphinx/themes/haiku/layout.html index 50ab798a924..cf1bd077bb5 100644 --- a/sphinx/themes/haiku/layout.html +++ b/sphinx/themes/haiku/layout.html @@ -4,7 +4,7 @@ Sphinx layout template for the haiku theme. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "basic/layout.html" %} diff --git a/sphinx/themes/haiku/static/haiku.css_t b/sphinx/themes/haiku/static/haiku.css_t index fa9f77b9de3..b338d94bdc8 100644 --- a/sphinx/themes/haiku/static/haiku.css_t +++ b/sphinx/themes/haiku/static/haiku.css_t @@ -16,7 +16,7 @@ * Braden Ewing * Humdinger * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/nature/static/nature.css_t b/sphinx/themes/nature/static/nature.css_t index 3dd748dda55..28a4f64c94f 100644 --- a/sphinx/themes/nature/static/nature.css_t +++ b/sphinx/themes/nature/static/nature.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- nature theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/nonav/layout.html b/sphinx/themes/nonav/layout.html index d39800c184a..264bce94ffa 100644 --- a/sphinx/themes/nonav/layout.html +++ b/sphinx/themes/nonav/layout.html @@ -4,7 +4,7 @@ Sphinx layout template for the any help system theme. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "basic/layout.html" %} diff --git a/sphinx/themes/nonav/static/nonav.css b/sphinx/themes/nonav/static/nonav.css index c2d28a26b77..98d2163a418 100644 --- a/sphinx/themes/nonav/static/nonav.css +++ b/sphinx/themes/nonav/static/nonav.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- nonav theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/pyramid/static/epub.css b/sphinx/themes/pyramid/static/epub.css index 6e5722fd6fc..165f41d5d6b 100644 --- a/sphinx/themes/pyramid/static/epub.css +++ b/sphinx/themes/pyramid/static/epub.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- default theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/pyramid/static/pyramid.css_t b/sphinx/themes/pyramid/static/pyramid.css_t index 9857f2850fa..c8c05af3b19 100644 --- a/sphinx/themes/pyramid/static/pyramid.css_t +++ b/sphinx/themes/pyramid/static/pyramid.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- pylons theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/scrolls/layout.html b/sphinx/themes/scrolls/layout.html index 066d9f6682f..57554468032 100644 --- a/sphinx/themes/scrolls/layout.html +++ b/sphinx/themes/scrolls/layout.html @@ -5,7 +5,7 @@ Sphinx layout template for the scrolls theme, originally written by Armin Ronacher. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} {%- extends "basic/layout.html" %} diff --git a/sphinx/themes/scrolls/static/scrolls.css_t b/sphinx/themes/scrolls/static/scrolls.css_t index 48b5af5fe6f..58bc7dedc55 100644 --- a/sphinx/themes/scrolls/static/scrolls.css_t +++ b/sphinx/themes/scrolls/static/scrolls.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- scrolls theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t index 4be04ce7104..1ff1d0291d8 100644 --- a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t +++ b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t @@ -5,7 +5,7 @@ * Sphinx stylesheet -- sphinxdoc theme. Originally created by * Armin Ronacher for Werkzeug. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/traditional/static/traditional.css_t b/sphinx/themes/traditional/static/traditional.css_t index bd648b47e7a..f98b337198a 100644 --- a/sphinx/themes/traditional/static/traditional.css_t +++ b/sphinx/themes/traditional/static/traditional.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- traditional docs.python.org theme. * - * :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/theming.py b/sphinx/theming.py index f5004022d5e..d8dca34b0d7 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -4,7 +4,7 @@ Theming support for HTML builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 663e6da686f..e122a69b43f 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -4,7 +4,7 @@ Docutils transforms used by Sphinx when reading documents. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/transforms/compact_bullet_list.py b/sphinx/transforms/compact_bullet_list.py index e7f040a18a9..b43d0fb3e92 100644 --- a/sphinx/transforms/compact_bullet_list.py +++ b/sphinx/transforms/compact_bullet_list.py @@ -4,7 +4,7 @@ Docutils transforms used by Sphinx when reading documents. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index 8ef7987f9a8..cac69b74f7f 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -4,7 +4,7 @@ Docutils transforms used by Sphinx when reading documents. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/transforms/post_transforms/__init__.py b/sphinx/transforms/post_transforms/__init__.py index c199aa3d756..098f004c7fc 100644 --- a/sphinx/transforms/post_transforms/__init__.py +++ b/sphinx/transforms/post_transforms/__init__.py @@ -4,7 +4,7 @@ Docutils transforms used by Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/transforms/post_transforms/code.py b/sphinx/transforms/post_transforms/code.py index 3c4c0ebab66..5f31a434d4c 100644 --- a/sphinx/transforms/post_transforms/code.py +++ b/sphinx/transforms/post_transforms/code.py @@ -4,7 +4,7 @@ transforms for code-blocks. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/transforms/post_transforms/images.py b/sphinx/transforms/post_transforms/images.py index d243ea7127c..d2929dca80f 100644 --- a/sphinx/transforms/post_transforms/images.py +++ b/sphinx/transforms/post_transforms/images.py @@ -4,7 +4,7 @@ Docutils transforms used by Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/transforms/references.py b/sphinx/transforms/references.py index c1afd0a2fa9..82e8043bbef 100644 --- a/sphinx/transforms/references.py +++ b/sphinx/transforms/references.py @@ -4,7 +4,7 @@ Docutils transforms used by Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index b7b33a82054..8a3b52fbfca 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -4,7 +4,7 @@ Utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/build_phase.py b/sphinx/util/build_phase.py index 07a5ee7cd4e..b8221e5d5de 100644 --- a/sphinx/util/build_phase.py +++ b/sphinx/util/build_phase.py @@ -4,7 +4,7 @@ Build phase of Sphinx application. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/cfamily.py b/sphinx/util/cfamily.py index 3aa22c62585..a86cb6f4b56 100644 --- a/sphinx/util/cfamily.py +++ b/sphinx/util/cfamily.py @@ -4,7 +4,7 @@ Utility functions common to the C and C++ domains. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 73ca5bc2700..ae481de9b13 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -4,7 +4,7 @@ modules for backward compatibility - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/console.py b/sphinx/util/console.py index 0fb6cc67218..48b5662836c 100644 --- a/sphinx/util/console.py +++ b/sphinx/util/console.py @@ -4,7 +4,7 @@ Format colored console output. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 49ee26789a4..0ea78229df4 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -5,7 +5,7 @@ "Doc fields" are reST field lists in object descriptions that will be domain-specifically transformed to a more appealing presentation. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from typing import TYPE_CHECKING, Any, Dict, List, Tuple, Type, Union, cast diff --git a/sphinx/util/docstrings.py b/sphinx/util/docstrings.py index d81d7dd99dc..620edf8c7f3 100644 --- a/sphinx/util/docstrings.py +++ b/sphinx/util/docstrings.py @@ -4,7 +4,7 @@ Utilities for docstring processing. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index c3d38530690..9b896d99280 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -4,7 +4,7 @@ Utility functions for docutils. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/fileutil.py b/sphinx/util/fileutil.py index 37c038855f2..c46a81cb6d9 100644 --- a/sphinx/util/fileutil.py +++ b/sphinx/util/fileutil.py @@ -4,7 +4,7 @@ File utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index 02b42cf0b33..511a9abee97 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -4,7 +4,7 @@ Builder superclass for all builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/images.py b/sphinx/util/images.py index a2a31f55ba3..12a25379166 100644 --- a/sphinx/util/images.py +++ b/sphinx/util/images.py @@ -4,7 +4,7 @@ Image utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index c67369e8935..34b3665a161 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -4,7 +4,7 @@ Helpers for inspecting Python modules. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/inventory.py b/sphinx/util/inventory.py index a7a68304fdd..a208affec4e 100644 --- a/sphinx/util/inventory.py +++ b/sphinx/util/inventory.py @@ -4,7 +4,7 @@ Inventory utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import os diff --git a/sphinx/util/jsdump.py b/sphinx/util/jsdump.py index 6d534cb3aa2..7db70dd5c41 100644 --- a/sphinx/util/jsdump.py +++ b/sphinx/util/jsdump.py @@ -5,7 +5,7 @@ This module implements a simple JavaScript serializer. Uses the basestring encode function from simplejson by Bob Ippolito. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index ef36e3cf103..bcf8bf63d34 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -4,7 +4,7 @@ Logging utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/matching.py b/sphinx/util/matching.py index 1e7f9883abb..a89acf9a8b0 100644 --- a/sphinx/util/matching.py +++ b/sphinx/util/matching.py @@ -4,7 +4,7 @@ Pattern-matching utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/math.py b/sphinx/util/math.py index 229e09d36e1..6648596246d 100644 --- a/sphinx/util/math.py +++ b/sphinx/util/math.py @@ -4,7 +4,7 @@ Utility functions for math. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index c0700f3bb9a..27a21af4bca 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -4,7 +4,7 @@ Docutils node-related utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 8e3d7afdab5..2bbc25c9800 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -4,7 +4,7 @@ Operating system-related utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/parallel.py b/sphinx/util/parallel.py index d7abc81df63..3f348a8b531 100644 --- a/sphinx/util/parallel.py +++ b/sphinx/util/parallel.py @@ -4,7 +4,7 @@ Parallel building utilities. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/png.py b/sphinx/util/png.py index 2ab5a836f01..c40f653e6de 100644 --- a/sphinx/util/png.py +++ b/sphinx/util/png.py @@ -4,7 +4,7 @@ PNG image manipulation helpers. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/pycompat.py b/sphinx/util/pycompat.py index bb0c0b6855d..2b9b67be958 100644 --- a/sphinx/util/pycompat.py +++ b/sphinx/util/pycompat.py @@ -4,7 +4,7 @@ Stuff for Python version compatibility. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/requests.py b/sphinx/util/requests.py index 8ae435d41b0..bd9a94338e9 100644 --- a/sphinx/util/requests.py +++ b/sphinx/util/requests.py @@ -4,7 +4,7 @@ Simple requests package loader - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/rst.py b/sphinx/util/rst.py index 26e63cc2adf..320efa6180f 100644 --- a/sphinx/util/rst.py +++ b/sphinx/util/rst.py @@ -4,7 +4,7 @@ reST helper functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/stemmer/__init__.py b/sphinx/util/stemmer/__init__.py index 6470dfe2b81..65ef043509e 100644 --- a/sphinx/util/stemmer/__init__.py +++ b/sphinx/util/stemmer/__init__.py @@ -4,7 +4,7 @@ Word stemming utilities for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/tags.py b/sphinx/util/tags.py index 1499123e5ac..67c023643e7 100644 --- a/sphinx/util/tags.py +++ b/sphinx/util/tags.py @@ -2,7 +2,7 @@ sphinx.util.tags ~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/template.py b/sphinx/util/template.py index a61008602ff..5d5de52beee 100644 --- a/sphinx/util/template.py +++ b/sphinx/util/template.py @@ -4,7 +4,7 @@ Templates utility functions for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/texescape.py b/sphinx/util/texescape.py index 8dcc08a9b18..7efbb29ae04 100644 --- a/sphinx/util/texescape.py +++ b/sphinx/util/texescape.py @@ -4,7 +4,7 @@ TeX escaping helper. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index 259384ec70f..41ae187e0a9 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -4,7 +4,7 @@ The composite types for Sphinx. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/versioning.py b/sphinx/versioning.py index 6824efe17a4..c007dd7b407 100644 --- a/sphinx/versioning.py +++ b/sphinx/versioning.py @@ -5,7 +5,7 @@ Implements the low-level algorithms Sphinx uses for the versioning of doctrees. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pickle diff --git a/sphinx/writers/__init__.py b/sphinx/writers/__init__.py index 34a5d36f3c6..0f8451bc9f8 100644 --- a/sphinx/writers/__init__.py +++ b/sphinx/writers/__init__.py @@ -4,6 +4,6 @@ Custom docutils writers. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index fead4c61d31..80ee520c019 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -4,7 +4,7 @@ docutils writers handling Sphinx' custom nodes. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index bba07f4478e..81d469d82ee 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -4,7 +4,7 @@ Experimental docutils writers for HTML5 handling Sphinx's custom nodes. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 6f7e2024183..b0165106aa7 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -7,7 +7,7 @@ Much of this code is adapted from Dave Kuhlman's "docpy" writer from his docutils sandbox. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index bcf4e98b352..d0f494a641d 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -4,7 +4,7 @@ Manual page writer, extended for Sphinx custom nodes. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 9a281dc9a99..2abdc87deba 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -4,7 +4,7 @@ Custom docutils writer for Texinfo. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index ba310e072ee..5fff6cfdabf 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -4,7 +4,7 @@ Custom docutils writer for plain text. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import math diff --git a/sphinx/writers/xml.py b/sphinx/writers/xml.py index ef261fde22e..f9fb2278486 100644 --- a/sphinx/writers/xml.py +++ b/sphinx/writers/xml.py @@ -4,7 +4,7 @@ Docutils-native XML and pseudo-XML writers. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/conftest.py b/tests/conftest.py index 5580f672b55..dd1a04513e0 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -2,7 +2,7 @@ pytest config for sphinx/tests ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/roots/test-changes/conf.py b/tests/roots/test-changes/conf.py index ec67b9c5979..2fedcb1999a 100644 --- a/tests/roots/test-changes/conf.py +++ b/tests/roots/test-changes/conf.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- project = 'Sphinx ChangesBuilder tests' -copyright = '2007-2021 by the Sphinx team, see AUTHORS' +copyright = '2007-2022 by the Sphinx team, see AUTHORS' version = '0.6' release = '0.6alpha1' diff --git a/tests/test_api_translator.py b/tests/test_api_translator.py index fddcd9d65a9..dd721355b24 100644 --- a/tests/test_api_translator.py +++ b/tests/test_api_translator.py @@ -4,7 +4,7 @@ Test the Sphinx API for translator. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_application.py b/tests/test_application.py index 94ddd04cf35..fc85f193d28 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -4,7 +4,7 @@ Test the Sphinx class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build.py b/tests/test_build.py index b0d1896b9b7..76de332ee12 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -4,7 +4,7 @@ Test all builders. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_changes.py b/tests/test_build_changes.py index c6cbd497df8..65307ba924b 100644 --- a/tests/test_build_changes.py +++ b/tests/test_build_changes.py @@ -4,7 +4,7 @@ Test the ChangesBuilder class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_dirhtml.py b/tests/test_build_dirhtml.py index 086b8426b42..a7a90623c17 100644 --- a/tests/test_build_dirhtml.py +++ b/tests/test_build_dirhtml.py @@ -4,7 +4,7 @@ Test dirhtml builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_epub.py b/tests/test_build_epub.py index 45a01b13c59..851e8ac9dd4 100644 --- a/tests/test_build_epub.py +++ b/tests/test_build_epub.py @@ -4,7 +4,7 @@ Test the HTML builder and check output against XPath. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_gettext.py b/tests/test_build_gettext.py index 92ec384b562..9398dfe5f16 100644 --- a/tests/test_build_gettext.py +++ b/tests/test_build_gettext.py @@ -4,7 +4,7 @@ Test the build process with gettext builder with the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_html.py b/tests/test_build_html.py index a1d4717e77d..f6b48ef5b01 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -4,7 +4,7 @@ Test the HTML builder and check output against XPath. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index e0cfce953d7..7b0f94aacdd 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -4,7 +4,7 @@ Test the build process with LaTeX builder with the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index cfb508808f4..358db6a4e32 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -4,7 +4,7 @@ Test the build process with manpage builder with the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_manpage.py b/tests/test_build_manpage.py index e2479e4de77..1a14c9bf757 100644 --- a/tests/test_build_manpage.py +++ b/tests/test_build_manpage.py @@ -4,7 +4,7 @@ Test the build process with manpage builder with the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index bece3a558d4..601de15874e 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -4,7 +4,7 @@ Test the build process with Texinfo builder with the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_build_text.py b/tests/test_build_text.py index e3d8ff11189..c080d2ad294 100644 --- a/tests/test_build_text.py +++ b/tests/test_build_text.py @@ -4,7 +4,7 @@ Test the build process with Text builder with the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_builder.py b/tests/test_builder.py index ed3f8cdaabc..4927e5d1d9f 100644 --- a/tests/test_builder.py +++ b/tests/test_builder.py @@ -4,7 +4,7 @@ Test the Builder class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest diff --git a/tests/test_catalogs.py b/tests/test_catalogs.py index 986979fe269..319e6a07dae 100644 --- a/tests/test_catalogs.py +++ b/tests/test_catalogs.py @@ -4,7 +4,7 @@ Test the base build process. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import shutil diff --git a/tests/test_config.py b/tests/test_config.py index 717e8658dab..97e911eb5cd 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -5,7 +5,7 @@ Test the sphinx.config.Config class and its handling in the Application class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_correct_year.py b/tests/test_correct_year.py index 6afcce2b590..bcb21703605 100644 --- a/tests/test_correct_year.py +++ b/tests/test_correct_year.py @@ -4,7 +4,7 @@ Test copyright year adjustment - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import pytest diff --git a/tests/test_directive_code.py b/tests/test_directive_code.py index a011a31e8ff..9626e73cb40 100644 --- a/tests/test_directive_code.py +++ b/tests/test_directive_code.py @@ -4,7 +4,7 @@ Test the code-block directive. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_directive_only.py b/tests/test_directive_only.py index 72cbc6bd72c..164220e334b 100644 --- a/tests/test_directive_only.py +++ b/tests/test_directive_only.py @@ -4,7 +4,7 @@ Test the only directive with the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_directive_other.py b/tests/test_directive_other.py index 09877208c62..e1858f4e06a 100644 --- a/tests/test_directive_other.py +++ b/tests/test_directive_other.py @@ -4,7 +4,7 @@ Test the other directives. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_directive_patch.py b/tests/test_directive_patch.py index b28e0f1e57d..a199a89db52 100644 --- a/tests/test_directive_patch.py +++ b/tests/test_directive_patch.py @@ -4,7 +4,7 @@ Test the patched directives. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_docutilsconf.py b/tests/test_docutilsconf.py index 9f12fd00430..7e47c9ab32e 100644 --- a/tests/test_docutilsconf.py +++ b/tests/test_docutilsconf.py @@ -4,7 +4,7 @@ Test docutils.conf support for several writers. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index d3198dcc033..21df5cb2012 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -4,7 +4,7 @@ Tests the C Domain - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 5ff8f8e1296..8fc974f4949 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -4,7 +4,7 @@ Tests the C++ Domain - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_domain_js.py b/tests/test_domain_js.py index 434513063d5..42e2c972766 100644 --- a/tests/test_domain_js.py +++ b/tests/test_domain_js.py @@ -4,7 +4,7 @@ Tests the JavaScript Domain - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index f6af3e9af4a..f95197fecb8 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -4,7 +4,7 @@ Tests the Python Domain - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_domain_rst.py b/tests/test_domain_rst.py index ed542ed35ad..b79431d49e2 100644 --- a/tests/test_domain_rst.py +++ b/tests/test_domain_rst.py @@ -4,7 +4,7 @@ Tests the reStructuredText domain. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index c464ea00841..18c1766aac5 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -4,7 +4,7 @@ Tests the std domain - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_environment.py b/tests/test_environment.py index 5d3035ac0cd..d8eec2c05c1 100644 --- a/tests/test_environment.py +++ b/tests/test_environment.py @@ -4,7 +4,7 @@ Test the BuildEnvironment class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import os diff --git a/tests/test_environment_indexentries.py b/tests/test_environment_indexentries.py index 1b549bacbcc..f32592f9f6e 100644 --- a/tests/test_environment_indexentries.py +++ b/tests/test_environment_indexentries.py @@ -4,7 +4,7 @@ Test the sphinx.environment.managers.indexentries. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_environment_toctree.py b/tests/test_environment_toctree.py index 85a98b61b96..dc5a184a4cf 100644 --- a/tests/test_environment_toctree.py +++ b/tests/test_environment_toctree.py @@ -4,7 +4,7 @@ Test the sphinx.environment.managers.toctree. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_events.py b/tests/test_events.py index 914a7ed9adc..44b0526d1f6 100644 --- a/tests/test_events.py +++ b/tests/test_events.py @@ -4,7 +4,7 @@ Test the EventManager class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_apidoc.py b/tests/test_ext_apidoc.py index ff057f0d8ce..44c3308fed3 100644 --- a/tests/test_ext_apidoc.py +++ b/tests/test_ext_apidoc.py @@ -4,7 +4,7 @@ Test the sphinx.apidoc module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index c853fbb03b7..f70e505f3c7 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -5,7 +5,7 @@ Test the autodoc extension. This tests mainly the Documenters; the auto directives are tested in a test source file translated by test_build. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_autoattribute.py b/tests/test_ext_autodoc_autoattribute.py index 8fe065d6533..0dc84f195e2 100644 --- a/tests/test_ext_autodoc_autoattribute.py +++ b/tests/test_ext_autodoc_autoattribute.py @@ -5,7 +5,7 @@ Test the autodoc extension. This tests mainly the Documenters; the auto directives are tested in a test source file translated by test_build. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_autoclass.py b/tests/test_ext_autodoc_autoclass.py index 6f4e2106046..e68c72a586a 100644 --- a/tests/test_ext_autodoc_autoclass.py +++ b/tests/test_ext_autodoc_autoclass.py @@ -5,7 +5,7 @@ Test the autodoc extension. This tests mainly the Documenters; the auto directives are tested in a test source file translated by test_build. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_autodata.py b/tests/test_ext_autodoc_autodata.py index f983726adc0..966d0359aab 100644 --- a/tests/test_ext_autodoc_autodata.py +++ b/tests/test_ext_autodoc_autodata.py @@ -5,7 +5,7 @@ Test the autodoc extension. This tests mainly the Documenters; the auto directives are tested in a test source file translated by test_build. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_autofunction.py b/tests/test_ext_autodoc_autofunction.py index 52af51abbfc..1fac5004ae8 100644 --- a/tests/test_ext_autodoc_autofunction.py +++ b/tests/test_ext_autodoc_autofunction.py @@ -5,7 +5,7 @@ Test the autodoc extension. This tests mainly the Documenters; the auto directives are tested in a test source file translated by test_build. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_automodule.py b/tests/test_ext_autodoc_automodule.py index 59296a981a3..79142ff8b12 100644 --- a/tests/test_ext_autodoc_automodule.py +++ b/tests/test_ext_autodoc_automodule.py @@ -5,7 +5,7 @@ Test the autodoc extension. This tests mainly the Documenters; the auto directives are tested in a test source file translated by test_build. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_autoproperty.py b/tests/test_ext_autodoc_autoproperty.py index 47528a99d8c..4b62165e31c 100644 --- a/tests/test_ext_autodoc_autoproperty.py +++ b/tests/test_ext_autodoc_autoproperty.py @@ -5,7 +5,7 @@ Test the autodoc extension. This tests mainly the Documenters; the auto directives are tested in a test source file translated by test_build. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index f3bcd6a97a1..b43738099ad 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -4,7 +4,7 @@ Test the autodoc extension. This tests mainly for config variables - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_events.py b/tests/test_ext_autodoc_events.py index 561ac49deef..6a71054c257 100644 --- a/tests/test_ext_autodoc_events.py +++ b/tests/test_ext_autodoc_events.py @@ -4,7 +4,7 @@ Test the autodoc extension. This tests mainly for autodoc events - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_mock.py b/tests/test_ext_autodoc_mock.py index f3a9e2dc187..c207c82fcef 100644 --- a/tests/test_ext_autodoc_mock.py +++ b/tests/test_ext_autodoc_mock.py @@ -4,7 +4,7 @@ Test the autodoc extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_preserve_defaults.py b/tests/test_ext_autodoc_preserve_defaults.py index 955c60aa4bf..804aa4efa23 100644 --- a/tests/test_ext_autodoc_preserve_defaults.py +++ b/tests/test_ext_autodoc_preserve_defaults.py @@ -4,7 +4,7 @@ Test the autodoc extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autodoc_private_members.py b/tests/test_ext_autodoc_private_members.py index 0de74b898e4..f685f774c8f 100644 --- a/tests/test_ext_autodoc_private_members.py +++ b/tests/test_ext_autodoc_private_members.py @@ -4,7 +4,7 @@ Test the autodoc extension. This tests mainly for private-members option. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autosectionlabel.py b/tests/test_ext_autosectionlabel.py index 96f81aacd2d..ccbc9ed7701 100644 --- a/tests/test_ext_autosectionlabel.py +++ b/tests/test_ext_autosectionlabel.py @@ -4,7 +4,7 @@ Test sphinx.ext.autosectionlabel extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index 2fe72dbe3b3..13da15e503f 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -4,7 +4,7 @@ Test the autosummary extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_coverage.py b/tests/test_ext_coverage.py index 6172c502d8f..6d6fbcf1d30 100644 --- a/tests/test_ext_coverage.py +++ b/tests/test_ext_coverage.py @@ -4,7 +4,7 @@ Test the coverage builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_doctest.py b/tests/test_ext_doctest.py index 729067b4d10..b79b2899cee 100644 --- a/tests/test_ext_doctest.py +++ b/tests/test_ext_doctest.py @@ -4,7 +4,7 @@ Test the doctest extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import os diff --git a/tests/test_ext_duration.py b/tests/test_ext_duration.py index 681530cefa8..b16cbc4f436 100644 --- a/tests/test_ext_duration.py +++ b/tests/test_ext_duration.py @@ -4,7 +4,7 @@ Test sphinx.ext.duration extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_githubpages.py b/tests/test_ext_githubpages.py index 5c13a8f9795..9d87b021278 100644 --- a/tests/test_ext_githubpages.py +++ b/tests/test_ext_githubpages.py @@ -4,7 +4,7 @@ Test sphinx.ext.githubpages extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_graphviz.py b/tests/test_ext_graphviz.py index 1671133e7db..15eaf6050eb 100644 --- a/tests/test_ext_graphviz.py +++ b/tests/test_ext_graphviz.py @@ -4,7 +4,7 @@ Test sphinx.ext.graphviz extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_ifconfig.py b/tests/test_ext_ifconfig.py index eea2386c3eb..f8f89714973 100644 --- a/tests/test_ext_ifconfig.py +++ b/tests/test_ext_ifconfig.py @@ -4,7 +4,7 @@ Test sphinx.ext.ifconfig extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_imgconverter.py b/tests/test_ext_imgconverter.py index b4fd46d2504..b4dbf125bf2 100644 --- a/tests/test_ext_imgconverter.py +++ b/tests/test_ext_imgconverter.py @@ -4,7 +4,7 @@ Test sphinx.ext.imgconverter extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_inheritance_diagram.py b/tests/test_ext_inheritance_diagram.py index 1dd26d9bbc6..bd563b4fc8b 100644 --- a/tests/test_ext_inheritance_diagram.py +++ b/tests/test_ext_inheritance_diagram.py @@ -4,7 +4,7 @@ Test sphinx.ext.inheritance_diagram extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index e820730a19c..7f369e9a3cd 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -4,7 +4,7 @@ Test the intersphinx extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_math.py b/tests/test_ext_math.py index 175c9e0f569..5dd7139614c 100644 --- a/tests/test_ext_math.py +++ b/tests/test_ext_math.py @@ -4,7 +4,7 @@ Test math extensions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_napoleon.py b/tests/test_ext_napoleon.py index d6334b9ebd7..e484e1d0e7c 100644 --- a/tests/test_ext_napoleon.py +++ b/tests/test_ext_napoleon.py @@ -5,7 +5,7 @@ Tests for :mod:`sphinx.ext.napoleon.__init__` module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index acf0001784d..b47f6d6d3ec 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -5,7 +5,7 @@ Tests for :mod:`sphinx.ext.napoleon.docstring` module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_napoleon_iterators.py b/tests/test_ext_napoleon_iterators.py index 45b558794ff..95c2778e898 100644 --- a/tests/test_ext_napoleon_iterators.py +++ b/tests/test_ext_napoleon_iterators.py @@ -5,7 +5,7 @@ Tests for :mod:`sphinx.ext.napoleon.iterators` module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_todo.py b/tests/test_ext_todo.py index b4f96900441..3bc2abadf4b 100644 --- a/tests/test_ext_todo.py +++ b/tests/test_ext_todo.py @@ -4,7 +4,7 @@ Test sphinx.ext.todo extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_ext_viewcode.py b/tests/test_ext_viewcode.py index d75fb71966d..140b2a72856 100644 --- a/tests/test_ext_viewcode.py +++ b/tests/test_ext_viewcode.py @@ -4,7 +4,7 @@ Test sphinx.ext.viewcode extension. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_extension.py b/tests/test_extension.py index cc16be964e8..4e7fffffa7f 100644 --- a/tests/test_extension.py +++ b/tests/test_extension.py @@ -4,7 +4,7 @@ Test sphinx.extension module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_highlighting.py b/tests/test_highlighting.py index a51e256882a..d83f2f1cceb 100644 --- a/tests/test_highlighting.py +++ b/tests/test_highlighting.py @@ -4,7 +4,7 @@ Test the Pygments highlighting bridge. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_intl.py b/tests/test_intl.py index 3b54063efca..f84e72a848f 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -5,7 +5,7 @@ Test message patching for internationalization purposes. Runs the text builder in the test root. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_locale.py b/tests/test_locale.py index 5d3dbf17f1e..c5765ccdf20 100644 --- a/tests/test_locale.py +++ b/tests/test_locale.py @@ -4,7 +4,7 @@ Test locale. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_markup.py b/tests/test_markup.py index b3960bc5ebd..fbd4e20cc72 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -4,7 +4,7 @@ Test various Sphinx-specific markup extensions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_metadata.py b/tests/test_metadata.py index 0b803917e38..a2e26a42bc6 100644 --- a/tests/test_metadata.py +++ b/tests/test_metadata.py @@ -4,7 +4,7 @@ Test our handling of metadata in files with bibliographic metadata. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_parser.py b/tests/test_parser.py index df22750e396..cbe9a61df8a 100644 --- a/tests/test_parser.py +++ b/tests/test_parser.py @@ -4,7 +4,7 @@ Tests parsers module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_project.py b/tests/test_project.py index 03fa1d49f7d..dc7f1d35d3e 100644 --- a/tests/test_project.py +++ b/tests/test_project.py @@ -4,7 +4,7 @@ Tests project module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_pycode.py b/tests/test_pycode.py index e0e0fdb1125..312c0245d68 100644 --- a/tests/test_pycode.py +++ b/tests/test_pycode.py @@ -4,7 +4,7 @@ Test pycode. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_pycode_ast.py b/tests/test_pycode_ast.py index 6ae7050da3f..0de03d5ea94 100644 --- a/tests/test_pycode_ast.py +++ b/tests/test_pycode_ast.py @@ -4,7 +4,7 @@ Test pycode.ast - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_pycode_parser.py b/tests/test_pycode_parser.py index 5bca7386c09..11e47a86bed 100644 --- a/tests/test_pycode_parser.py +++ b/tests/test_pycode_parser.py @@ -4,7 +4,7 @@ Test pycode.parser. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 6c2f70ec47b..0f317c5a80d 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -4,7 +4,7 @@ Test the sphinx.quickstart module. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_roles.py b/tests/test_roles.py index 553a50853fa..a7e93637632 100644 --- a/tests/test_roles.py +++ b/tests/test_roles.py @@ -4,7 +4,7 @@ Test sphinx.roles - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_search.py b/tests/test_search.py index 18407875ff5..4c74ac24a50 100644 --- a/tests/test_search.py +++ b/tests/test_search.py @@ -4,7 +4,7 @@ Test the search index builder. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_setup_command.py b/tests/test_setup_command.py index 0561b2fc4fa..0a1176ae654 100644 --- a/tests/test_setup_command.py +++ b/tests/test_setup_command.py @@ -4,7 +4,7 @@ Test setup_command for distutils. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_smartquotes.py b/tests/test_smartquotes.py index fda34a28edd..a46e667ca4a 100644 --- a/tests/test_smartquotes.py +++ b/tests/test_smartquotes.py @@ -4,7 +4,7 @@ Test smart quotes. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_templating.py b/tests/test_templating.py index 3a7c5821683..37e280c3b45 100644 --- a/tests/test_templating.py +++ b/tests/test_templating.py @@ -4,7 +4,7 @@ Test templating. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_theming.py b/tests/test_theming.py index e98d4071bbe..60dd72cdfed 100644 --- a/tests/test_theming.py +++ b/tests/test_theming.py @@ -4,7 +4,7 @@ Test the Theme class. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_toctree.py b/tests/test_toctree.py index 7a9f7a57808..33e73c98cc2 100644 --- a/tests/test_toctree.py +++ b/tests/test_toctree.py @@ -4,7 +4,7 @@ Test the HTML builder and check output against XPath. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import re diff --git a/tests/test_transforms_post_transforms.py b/tests/test_transforms_post_transforms.py index 26af550316b..fe0a7b06b2a 100644 --- a/tests/test_transforms_post_transforms.py +++ b/tests/test_transforms_post_transforms.py @@ -4,7 +4,7 @@ Tests the post_transforms - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_transforms_post_transforms_code.py b/tests/test_transforms_post_transforms_code.py index 449cba78a74..11369d2ba90 100644 --- a/tests/test_transforms_post_transforms_code.py +++ b/tests/test_transforms_post_transforms_code.py @@ -2,7 +2,7 @@ test_transforms_post_transforms_code ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util.py b/tests/test_util.py index 9b25aac5803..0023bbcdba8 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -4,7 +4,7 @@ Tests util functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_docstrings.py b/tests/test_util_docstrings.py index 58c3f188452..73f155cf38d 100644 --- a/tests/test_util_docstrings.py +++ b/tests/test_util_docstrings.py @@ -4,7 +4,7 @@ Test sphinx.util.docstrings. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_docutils.py b/tests/test_util_docutils.py index 4b89a1b9e93..9a7a05e4908 100644 --- a/tests/test_util_docutils.py +++ b/tests/test_util_docutils.py @@ -4,7 +4,7 @@ Tests util.utils functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_fileutil.py b/tests/test_util_fileutil.py index 25908c8e12e..4d6edd0cee3 100644 --- a/tests/test_util_fileutil.py +++ b/tests/test_util_fileutil.py @@ -4,7 +4,7 @@ Tests sphinx.util.fileutil functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_i18n.py b/tests/test_util_i18n.py index 180350e867b..3f4e8d52a80 100644 --- a/tests/test_util_i18n.py +++ b/tests/test_util_i18n.py @@ -4,7 +4,7 @@ Test i18n util. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_images.py b/tests/test_util_images.py index bf71f4c4926..e2c0c61f0cf 100644 --- a/tests/test_util_images.py +++ b/tests/test_util_images.py @@ -4,7 +4,7 @@ Test images util. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index f331acb233e..23b6dd35c7a 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -4,7 +4,7 @@ Tests util.inspect functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_inventory.py b/tests/test_util_inventory.py index f12ae50113d..305ef4353bf 100644 --- a/tests/test_util_inventory.py +++ b/tests/test_util_inventory.py @@ -4,7 +4,7 @@ Test inventory util functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_logging.py b/tests/test_util_logging.py index 057d38546d8..3c78368d16c 100644 --- a/tests/test_util_logging.py +++ b/tests/test_util_logging.py @@ -4,7 +4,7 @@ Test logging util. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_matching.py b/tests/test_util_matching.py index 008dc626729..651546c9230 100644 --- a/tests/test_util_matching.py +++ b/tests/test_util_matching.py @@ -4,7 +4,7 @@ Tests sphinx.util.matching functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from sphinx.util.matching import Matcher, compile_matchers diff --git a/tests/test_util_nodes.py b/tests/test_util_nodes.py index 421930cf5a2..1e08244cc05 100644 --- a/tests/test_util_nodes.py +++ b/tests/test_util_nodes.py @@ -4,7 +4,7 @@ Tests uti.nodes functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ from textwrap import dedent diff --git a/tests/test_util_rst.py b/tests/test_util_rst.py index 7e14eb3f7a0..da3dba70709 100644 --- a/tests/test_util_rst.py +++ b/tests/test_util_rst.py @@ -4,7 +4,7 @@ Tests sphinx.util.rst functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_template.py b/tests/test_util_template.py index bc325ac9de7..36f1dac3501 100644 --- a/tests/test_util_template.py +++ b/tests/test_util_template.py @@ -4,7 +4,7 @@ Tests sphinx.util.template functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_util_typing.py b/tests/test_util_typing.py index 0b2324e294b..91db88b09e5 100644 --- a/tests/test_util_typing.py +++ b/tests/test_util_typing.py @@ -4,7 +4,7 @@ Tests util.typing functions. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_versioning.py b/tests/test_versioning.py index 8de99138951..9961fe46406 100644 --- a/tests/test_versioning.py +++ b/tests/test_versioning.py @@ -4,7 +4,7 @@ Test the versioning implementation. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_writer_latex.py b/tests/test_writer_latex.py index c3337b1dfb9..ccb578f3e50 100644 --- a/tests/test_writer_latex.py +++ b/tests/test_writer_latex.py @@ -4,7 +4,7 @@ Test the LaTeX writer - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ From e023d1082d574d422ce50a8a99c8c012d6a21f92 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 1 Jan 2022 20:03:17 +0900 Subject: [PATCH 131/192] A happy new year! (again) --- sphinx/locale/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index 8fc6c15197e..5378da0a351 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -4,7 +4,7 @@ Locale utilities. - :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2022 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ From 0ba202009d8aeca27d0fab1bc0760bc5245f77ff Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 1 Jan 2022 21:38:08 +0900 Subject: [PATCH 132/192] refactor: Reduce usages of distutils (refs: #9820) distutils module is now deprecated and will be removed since Python 3.12. So this reduces the usages of the module. --- setup.py | 5 ++--- tests/roots/test-setup/setup.py | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index c0a9c2b0da7..e222d24300f 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,5 @@ import os import sys -from distutils import log from io import StringIO from setuptools import find_packages, setup @@ -148,8 +147,8 @@ def _run_domain_js(self, domain): if catalog.fuzzy and not self.use_fuzzy: continue - log.info('writing JavaScript strings in catalog %r to %r', - po_file, js_file) + self.log.info('writing JavaScript strings in catalog %r to %r', + po_file, js_file) jscatalog = {} for message in catalog: diff --git a/tests/roots/test-setup/setup.py b/tests/roots/test-setup/setup.py index 3cd86415ad6..efff6f2e1dd 100644 --- a/tests/roots/test-setup/setup.py +++ b/tests/roots/test-setup/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup +from setuptools import setup from sphinx.setup_command import BuildDoc From 42d7351fda74af22af77ce406582746769bcb014 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 2 Jan 2022 00:12:37 +0000 Subject: [PATCH 133/192] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70589 -> 70297 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101386 -> 100906 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 189 +++++++++-------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 76339 -> 76037 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 86421 -> 86012 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 191 ++++++++++-------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83458 -> 83036 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19643 -> 19643 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80635 -> 80263 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 189 +++++++++-------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/sphinx.pot | 185 +++++++++-------- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78631 -> 78230 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 189 +++++++++-------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 183 +++++++++-------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 181 +++++++++-------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63197 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 185 +++++++++-------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 183 +++++++++-------- 105 files changed, 5471 insertions(+), 4252 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 795f0eb62f493b6ffd0bd0eb91305b87f3a10c42..2cadd62569ee7f2a8e5ce12795570e0ecf1f2721 100644 GIT binary patch delta 38 ocmZp)YqZ-SE5L4~Yhb8rU^H1pK#>>9RxmKIGBny8B(R>BHZ)Q&Ft9Q-+#DpZo(}-AQwZ$< diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 4c15203d8f8..97d0db8dbc8 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "متغير" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "كائن" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2009,7 +2019,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2023,20 +2033,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2067,7 +2077,7 @@ msgstr "" msgid "object" msgstr "كائن" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2079,92 +2089,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "متغيرات" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "فشل" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 481eacab81120dd2b709f4cc9d5d5a22fd381b3b..371c92eecd02d271018142c0aaa85c6dbf9c1bfb 100644 GIT binary patch delta 35 lcmey${FQk^GrN(lfuXK}(ZnuAUMN$+z`)ATXyXoBMgYDn3AO+L delta 35 ncmey${FQk^GrOU#p^>hU*~BhIUNF\n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index c9c413e9b03cb575701abfad12d990d14cc37af4..15acf9527adaef895bc67440ec4db094d39c7251 100644 GIT binary patch delta 38 pcmbPjKihu8W?pt9T?0d11Ea~icolh}Yy|@YD?_8rFL*Z#0sz`o3flkx delta 38 rcmbPjKihu8W?ptfT|*;XBeTi7coliUY(paj0|P5V!_6;vHwyv)+Y}1p diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index dc80d7b2ae0..df8971873dd 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "প্যারামিটার" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "রিটার্নস" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "ফাংশন" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "ক্লাস" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -2008,7 +2018,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "এ্যট্রিবিউট" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "মডিউল" @@ -2066,7 +2076,7 @@ msgstr "অপারেটর" msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "এক্সেপশন" @@ -2078,92 +2088,92 @@ msgstr "স্ট্যাটমেন্ট" msgid "built-in function" msgstr "বিল্ট-ইন ফাংশন" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index a50bcf73fc80644f5e7751778c7f41351299734a..0ebfea646e8f082f91b44a24008a51db7f1888dd 100644 GIT binary patch delta 38 ocmbQMGgoKBJYIGqT?0d11Ea}Hc@=q~Yy|@YD?_8rmwCN70MFkF2mk;8 delta 38 qcmbQMGgoKBJYIG~T|*;XBeTg%c@=rVY(paj0|P5V!_Aj@y*L2So(d2E diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index bc8e294b6d2..69d26c248f3 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+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" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paràmetres" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Tipus de retorn" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funció" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "class" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" @@ -2008,7 +2018,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "mòdul" @@ -2066,7 +2076,7 @@ msgstr "operador" msgid "object" msgstr "objecte" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "excepció" @@ -2078,92 +2088,92 @@ msgstr "sentència" msgid "built-in function" msgstr "funció interna" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (obsolet)" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 43b20d0f9e544f199e0fcc7793e11d953fcf4286..d0dbb21f97caeb74862b080d3133b010c544b781 100644 GIT binary patch delta 20 bcmaDU^ipU;0V}(au7RPhfzjr2)=$g;N_YmA delta 20 bcmaDU^ipU;0V}(quAz~xk=f>Q)=$g;N~H#! diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index cddbf878b00..9a11a94b204 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Jalajöj" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "retal jalöj" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "Ruwäch" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2008,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2066,7 +2076,7 @@ msgstr "" msgid "object" msgstr "wachinäq" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Retal jalöj" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 836db0bef82c0a44636f33095adc52e6635ab087..2a34e0b74a07fe0c622929cd53df1f436a582f3a 100644 GIT binary patch delta 38 ocmbQ^G{0J@e5NB{r; delta 38 qcmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Vrací" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Typ návratové hodnoty" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "proměnná" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkce" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "Vyvolá" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "třída" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -2009,7 +2019,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2023,20 +2033,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2067,7 +2077,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "výjimka" @@ -2079,92 +2089,92 @@ msgstr "příkaz" msgid "built-in function" msgstr "vestavěná funkce" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Proměnné" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 41f70d9cdc6175b0a1eebebab17808d0be48c825..dadd29e69cb598116486116d90e219a1daa58d91 100644 GIT binary patch delta 38 ocmbPZG{DgXcg delta 38 qcmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramedrau" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "ffwythiant" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2009,7 +2019,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2023,20 +2033,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modiwl" @@ -2067,7 +2077,7 @@ msgstr "gweithredydd" msgid "object" msgstr "gwrthrych" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2079,92 +2089,92 @@ msgstr "datganiad" msgid "built-in function" msgstr "ffwythiant built-in" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index e1d9bddfd3f48c82c3bcc39dc6d7bde7eedd7242..0275eb81fd6ea9397042ab9cc57cbbdab889c5bf 100644 GIT binary patch delta 38 ocmdm)u`^?Xjsm-pu7RPhfzf1R1w~#cTfxA<%Ft+YqQVVf0Mp\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -462,6 +462,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1197,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1874,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" @@ -1883,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Returnerer" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Returtype" @@ -1901,7 +1911,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funktion" @@ -1979,7 +1989,7 @@ msgid "Throws" msgstr "Kaster" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klasse" @@ -1996,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" @@ -2011,7 +2021,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" @@ -2025,20 +2035,20 @@ msgstr "Parametre" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2069,7 +2079,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "undtagelse" @@ -2081,92 +2091,92 @@ msgstr "erklæring" msgid "built-in function" msgstr "indbygget funktion" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variable" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (forældet)" @@ -2834,19 +2844,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2854,76 +2864,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2960,56 +2970,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,30 +3040,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3512,6 +3528,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 986de00619dd5ff2787da33d4cf7c0041c5dd0e5..933de17f51151637fa2425109b9296738048304d 100644 GIT binary patch delta 38 pcmZ1)xioUa0x5PQT?0d11Ea~yr4)IgYy|@YD?_8rSEVip0s!MW3oZZv delta 38 rcmZ1)xioUa0x5PwT|*;XBeTiNr4)I=Y(paj0|P5V!_8NvE(ihu\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -462,6 +462,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1197,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1874,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" @@ -1883,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Rückgabe" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Rückgabetyp" @@ -1901,7 +1911,7 @@ msgid "variable" msgstr "Variable" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "Funktion" @@ -1979,7 +1989,7 @@ msgid "Throws" msgstr "Wirft" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "Klasse" @@ -1996,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" @@ -2011,7 +2021,7 @@ msgstr "%s() (Klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" @@ -2025,20 +2035,20 @@ msgstr "Parameter" msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "Attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "Modul" @@ -2069,7 +2079,7 @@ msgstr "Operator" msgid "object" msgstr "Objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "Exception" @@ -2081,92 +2091,92 @@ msgstr "Anweisung" msgid "built-in function" msgstr "Builtin-Funktion" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variablen" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (veraltet)" @@ -2834,19 +2844,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2854,76 +2864,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2960,56 +2970,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,30 +3040,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3512,6 +3528,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index c596d81e7db023ddb7859f181ae0c93f564ef87f..abc7aa4fc8ced18f884748c3479fbe5887105f19 100644 GIT binary patch delta 68 zcmZo@V{K?--5}j$YNTsmsB2)PU|?WnXryfb1Y80BxNW>7Z8!h`d504Z delta 68 zcmZo@V{K?--5}j$YN%^yq-$iRU|?WnXryfb1Y80BxB&0DB4(7XSbN diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 7870646ba60..424963da6f5 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "η οδηγία %r έει ήδη καταχωρηθεί, θα υπερσ msgid "role %r is already registered, it will be overridden" msgstr "ο ρόλος %r έχει ήδη καταχωρηθεί, θα υπερσκελιστεί" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε από το δημιουργό της επέκτασης να το ελέγχει και να το κάνει σαφές" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,12 +158,12 @@ msgid "" "explicit" msgstr "η επέκταση %s δεν καθορίζει αν είναι ασφαλής η παράλληλη ανάγνωση, υποθέτοντας ότι δεν είναι - παρακαλείσθε να ζητήσετε το δημιουργό της επέκτασης να το ελέγξει και να το κάνει σαφές" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "εκτέλεση σειριακής %s" @@ -461,6 +461,16 @@ msgstr "η επέκταση %r επιστρέφει ένα μη υποστηρι msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1196,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1873,7 +1883,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Παράμετροι" @@ -1882,12 +1892,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Επιστρέφει" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" @@ -1900,7 +1910,7 @@ msgid "variable" msgstr "μεταβλητή" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "συνάρτηση" @@ -1978,7 +1988,7 @@ msgid "Throws" msgstr "Προκαλεί" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "κλάση" @@ -1995,7 +2005,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" @@ -2010,7 +2020,7 @@ msgstr "%s() (κλάση)" msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" @@ -2024,20 +2034,20 @@ msgstr "Παράμετροι" msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "ιδιότητα" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "μονάδα" @@ -2068,7 +2078,7 @@ msgstr "τελεστής" msgid "object" msgstr "αντικείμενο" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "εξαίρεση" @@ -2080,92 +2090,92 @@ msgstr "δήλωση" msgid "built-in function" msgstr "ενσωματωμένη συνάρτηση" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Μεταβλητές" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -2833,19 +2843,19 @@ msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "σφάλμα κατά τη μορφοποίηση των ορισμάτων για %s:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "απουσιάζει το χαρακτηριστικό %s στο αντικείμενο %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2853,76 +2863,76 @@ msgid "" "explicit module name)" msgstr "δεν γνωρίζω ποιο δομοστοιχείο να εισάγω για αυτόματη τεκμηρίωση %r (προσπαθήστε να τοποθετήσετε μία οδηγία \"module\" ή \"currentmodule\" στο έγγραφο, ή να δώσετε ένα σαφές όνομα δομοστοιχείου)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" στο όνομα automodule δεν βγάζει νόημα" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "ορίσματα υπογραφής ή επιστροφή σημείωσης η οποία δόθηκε για το automodule %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ πρέπει να είναι λίστα στοιχειοσειράς, όχι %r (στο δομοστοιχείο %s) -- θα αγνοηθεί το __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Βάσεις: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2959,56 +2969,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "αδυναμία ανάλυσης ονόματος %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "Το autosummary δημιουργεί αρχεία .rst εσωτερικά. Αλλά το δικό σας source_suffix δεν περιλαμβάνει .rst. Θα παραλειφθεί." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] δημιουργία autosummary για: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[αυτόματη περίληψη] εγγραφή στο %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,30 +3039,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nΔημιουργία ReStrucuredText χρησιμοποιώντας τις οδηγίες autosummary.\n\nΤο sphinx-autogen αποτελεί ένα πρόσθιο εργαλείο για το sphinx.ext.autosummary.generate. Δημιουργεί \nτα αρχεία reStructuredText από τις οδηγίες autosummary οι οποίες περιλαμβάνονται στα \nπαραδοθέντα αρχεία εισόδου.\n\nΗ μορφή της οδηγίας autosummary τεκμηρειώνεται στο \nδομοστοιχείο ``sphinx.ext.autosummary`` της Python και μπορεί να αναγνωστεί χρησιμοποιώντας το :: \n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "αρχεία πηγής για να δημιουργηθούν τα αρχεία reST" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "ο κατάλογος που θα τοποθετεί όλο το αποτέλεσμα εξόδου" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "προεπιλεγμένη επέκταση για αρχεία (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "προσαρμοσμένος κατάλογος προτύπου (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "μέλη εισαγμένα στο έγγραφο (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3511,6 +3527,13 @@ msgstr "παράβλεψη" msgid "failed" msgstr "αποτυχία" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 72435948f9efe887f525f1be020623fa23c1290c..9680e4c51d35337391fee1603cb7828c96661353 100644 GIT binary patch delta 18 Zcmcb?e1myHGrN(lfuXK}(Z()6MgTi;1*!l5 delta 18 Zcmcb?e1myHGrOU#p^>hU*~TtEMgTjP1+f4C diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 055d80c4eae..8e9ba8cf0f9 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 6988b4f0be06be339da90038ff96ac9e73620691..23eb6ae33f9501e31338be6104167cd852d7b554 100644 GIT binary patch delta 35 lcmeBT>0+7C%xV5n0+7C%x\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index ddedc0431a39be5e3a984a882a27ebfa547394b1..5c2d55fca2703f7f4dc3aca69e53e74623a76800 100644 GIT binary patch delta 18 ZcmZo=X=Rzv%xV5n\n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index d32fb0886931d8e824cdf888d9e8df81c74d1759..d20a5819579b3bb341a2510cacf318d4a6f527a0 100644 GIT binary patch delta 10942 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 Ir%Lnw52Xld761SM delta 11027 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\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" @@ -141,7 +141,7 @@ msgstr "la directiva %r ya está registrada, esa se reemplazará" msgid "role %r is already registered, it will be overridden" msgstr "el rol %r ya está registrado, ese se reemplazará" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "la extensión %s no es segura para lectura paralela" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +162,12 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "la extensión %s no es segura para escritura paralela" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" @@ -465,6 +465,16 @@ msgstr "extensión %r devuelve un objeto no soportado de su función setup(); de msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1200,7 +1210,7 @@ msgid "job number should be a positive number" msgstr "número de trabajo debe ser un número positivo" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1877,7 +1887,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parámetros" @@ -1886,12 +1896,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Devuelve" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Tipo del valor devuelto" @@ -1904,7 +1914,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "función" @@ -1982,7 +1992,7 @@ msgid "Throws" msgstr "Lanzamientos" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "clase" @@ -1999,7 +2009,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" @@ -2014,7 +2024,7 @@ msgstr "%s() (clase)" msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" @@ -2028,20 +2038,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "módulo" @@ -2072,7 +2082,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "excepción" @@ -2084,92 +2094,92 @@ msgstr "sentencia" msgid "built-in function" msgstr "función incorporada" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descripción duplicada del objeto de %s, otra instancia en %s, utilice :noindex: para uno de ellos" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "se encontró más de un objetivo para la referencia cruzada %r: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2837,19 +2847,19 @@ msgstr "firma inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "error al formatear argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "falta el atributo %s en el objeto %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "autodoc: no se pudo determinar %r que se documentará, se produjo la siguiente excepción:\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2857,76 +2867,76 @@ msgid "" "explicit module name)" msgstr "no sabe qué módulo importar para el autodocumento %r (intente colocar una directiva \"module\" o \"currentmodule\" en el documento o dar un nombre explícito al módulo)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" en el nombre del automodule no tiene sentido" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "argumentos de firma o anotación de retorno dada para automodule %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ debe ser una lista de cadenas, no %r (en el módulo %s) -- ignorando __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2963,56 +2973,62 @@ msgstr "autosummary: no se encontró el archivo stub %r. Verifique su configurac msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "fallo al analizar el nombre %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "fallo al importar el objeto %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: archivo no encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary genera archivos .rst internamente. Pero su source_suffix no contiene archivo .rst. Saltado." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: no se pudo determinar %r que se documentará, se produjo la siguiente excepción:\n%s" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] generar autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escribiendo a %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[autosummary] fallo al importar %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3027,30 +3043,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGenere ReStructuredText usando directivas de resumen automático \"autosummary\".\n\nsphinx-autogen es una interfaz para sphinx.ext.autosummary.generate. Genera\nlos archivos reStructuredText de las directivas autosummary contenidas en el\nlos archivos de entrada dados.\n\nEl formato de la directiva autosummary está documentado en el módulo Python\n``sphinx.ext.autosummary`` y se puede leer usando el siguiente comando::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "archivos fuente para generar archivos rST para" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "directorio para colocar toda la salida en" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufijo predeterminado para archivos (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "directorio de plantillas personalizadas (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documento importados miembros (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3515,6 +3531,13 @@ msgstr "omitido" msgid "failed" msgstr "fallado" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index c142874c64348a8e36a4e1a6f45c12585f579894..9b319e2a5e3692b37d8491a048df72b93eca608a 100644 GIT binary patch delta 38 ocmexw^50~Gp8&g&u7RPhfzjkp0YzRYTfxA<%Ft+Yv%nut0NxM^r~m)} delta 38 qcmexw^50~Gp8&g|uAz~xk=f)>0YzRg+t5hCz`)ATaC5W3A5H+?&kC>r diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index a184eb1e34f..0bdfa2db283 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Hobekuntza Proposamena; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroak" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Itzultzen du" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Itzulketa mota" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "aldagaia" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funtzioa" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "Jaurtitzen du" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klasea" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" @@ -2009,7 +2019,7 @@ msgstr "%s() (klasea)" msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" @@ -2023,20 +2033,20 @@ msgstr "Argumentuak" msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atributua" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modulua" @@ -2067,7 +2077,7 @@ msgstr "eragiketa" msgid "object" msgstr "objetua" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "salbuespena" @@ -2079,92 +2089,92 @@ msgstr "sententzia" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Aldagaiak" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (zaharkitua)" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 77a42149d9ae4aa5c7cf62bac8086124f7c0b186..2e924f8d953178b9541bfb3acedbd90cb0b5476b 100644 GIT binary patch delta 12041 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 aWVJ8M4PD)a&u2afbC+e!JRR;f9r`~|AP%_z delta 12190 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 CZbgCs diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 47577d8df67..7dbf7e8f795 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "دستور %r از قبل ثبت شده که مقدار قبلی ناد msgid "role %r is already registered, it will be overridden" msgstr "نقش %r از قبل ثبت شده که مقدار قبلی نادیده گرفته خواهد شد" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای خواندن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "افزونه ی %sبرای خواندن موازی امن نیست" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "افزونه‌ی %s مشخّص نکرده که آیا برای نوشتن موازی امن هست یا نه. که فرض می‌گیریم نیست. لطفاً از نویسنده‌ی افزونه بخواهید این موضوع را بررسی و آن را مشخّص کند" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "افزونه‌ی %s برای نوشتن موازی امن نیست" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "انجام چندباره‌ی %s" @@ -462,6 +462,16 @@ msgstr "افزونه‌ی %r شیئ پشتیبانی نشده‌‌ای از ت msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1197,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "برای اطّلاعات بیشتر به بروید." @@ -1874,7 +1884,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "پارامترها" @@ -1883,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "بازگشت ها" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "نوع برگشتی" @@ -1901,7 +1911,7 @@ msgid "variable" msgstr "متغیّر" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "تابع" @@ -1979,7 +1989,7 @@ msgid "Throws" msgstr "ایجاد" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "کلاس" @@ -1996,7 +2006,7 @@ msgstr "مؤلّفه‌ی قالب" msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" @@ -2011,7 +2021,7 @@ msgstr "%s (کلاس)" msgid "%s (global variable or constant)" msgstr "%s (متغیّر عمومی یا مقدار ثابت)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" @@ -2025,20 +2035,20 @@ msgstr "نشانوندها" msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "متد" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "داده" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "مشخّصه" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "ماژول" @@ -2069,7 +2079,7 @@ msgstr "عملگر" msgid "object" msgstr "شیء" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "ایراد" @@ -2081,92 +2091,92 @@ msgstr "گذاره" msgid "built-in function" msgstr "توابع درونی" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "متغیر ها" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s شگرد کلاس)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "%s(%sویژگی)" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "نمایه ی ماژول های پایتون" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "class method" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "متد استاتیک" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "ویژگی" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "توضیح تکراری شیئ %s، نمونه‌ی دیگر در %s قرار دارد، برای یک مورد از :noindex: استفاده کنید" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "برای ارجاع متقابل %r بیش از یک هدف پیدا شد: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (منسوخ)" @@ -2834,19 +2844,19 @@ msgstr "امضای ناشناخته‌ برای %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "خطا در قالب بندی نشانوند برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "ویژگی ناموجود %s در شیئ %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "مستندسازی خودکار: شکست در تشخیص %r برای مستندسازی، این ایراد به وجود آمد:\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2854,76 +2864,76 @@ msgid "" "explicit module name)" msgstr "مشخّص نیست کدام پیمانه را برای مستندسازی خودکار فراخوان کند %r (سعی کنید دستورالعمل «module» یا «currentmodule» را در سند قرار دهید، یا یک نام واضح برای پیمانه ارائه دهید)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "شیئ ساختگی شناسایی شد: %r" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "خطا در قالب بندی امضا برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" در پیمانه‌ی خودکار معنی نمی‌دهد" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "نشانوند‌های امضا یا یادداشت مقدار برگشتی داده شده برای پیمانه‌ی خودکار %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ باید لیستی از رشته‌متن ها باشد، نه %r (در پیمانه‌ی %s) -- __all__ نادیده گرفته می‌شود" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "ویژگی نایاب در گزینه‌ی :members: قید شده: پیمانه‌ی:%s، ویژگی %s" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "شکست در دریافت امضای سازنده‌ی شیئ برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "پایه ها:%s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "نام جانشین %s" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "نام جانشین نوع متغیر(%s)" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2960,56 +2970,62 @@ msgstr "خلاصه‌ی خودکار: خرده‌پرونده‌ی %r پیدا msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "خلاصه‌ی خودکار عنوان‌ٔار نیازمند گزینه‌ی :toctree: است، نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" -msgstr "خلاصه‌ی خودکار: فراخوان %s شکست خورد" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "شکست در تجزیه تحلیل نام %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "شکست در وارد کردن شیئ %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "تولید خلاصه خودکار: پرونده پیدا نشد: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "خلاصه‌ی خودکار به طور داخلی پرونده‌های rst را ایجاد می‌کند. ولی پسوند منبع شما شامل rst نیست. نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "خلاصه‌ی خودکار: شکست در تشخیص %r برای مستندسازی، این ایراد به وجود آمد:\n%s" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[خلاصه‌ی خودکار] تولید خلاصه‌ی خودکار برای: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[خلاصه‌ی خودکار] نوشتن در %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[خلاصه‌ی خودکار]: فراخوان %r: %s شکست خورد" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,30 +3040,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nتولید ReStructuredText با استفاده از دستورالعمل‌های خلاصه‌ی خودکار.\n\nخودکارساز اسفینکس رابط کابر پسندی برای sphinx.ext.autosummary.generate (پیمانه‌ی افزونه‌ی خلاصه‌ساز اسفنیکس) است.\nاین افزونه پرونده های متن reStructuredText را از دستورالعمل‌های خلاصه‌ی خودکاری تولید می‌کند که در پرونده‌های درون‌داد مشخّص شده قرار دارد.\n\nقالب دستورالعمل خلاصه‌ی خودکار درپیمانه‌ی افزونه‌ی خلاصه‌ی خودکار اسفنیکس (sphinx.ext.autosummary) مستند سازی شده می توان آن را با دستور زیر خواند::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "پرونده‌های منبع برای تولید پرونده‌های rST" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "پوشه‌ای برای قرار دادن همه‌ی برون دادها در آن" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "پسوند پیش فرض برای پرونده‌ها (پیش‌فرض: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "شاخه‌ی سفارشی قالب (پیش‌گزیده: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "اجزای فراخوان شده‌ی سند (پیش‌گزیده: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3512,6 +3528,13 @@ msgstr "رد شدن و نادیده انگاشتن" msgid "failed" msgstr "شکست خورد" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 9109a3bde51d4d3758c0e7c0b639ecfa3dc95c42..bdfc080e5849e267dd29f7d98ab90010c24e708b 100644 GIT binary patch delta 38 ocmaDL_CRdIaW-}%T?0d11Eb03*c5r8Yy|@YD?_8rf7nu30OcqO-T(jq delta 38 qcmaDL_CRdIaW-~CT|*;XBeTip*c5reY(paj0|P5V!_9x#Qdj`x=L+Tk diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 8f2fcf57adf..b60021bb5d0 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2008,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "moduuli" @@ -2066,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (poistettu)" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 376ae106ea05c9136be1302c125c69012ead65d6..25bc8152343f89c11beaf5d088753cf08263dce8 100644 GIT binary patch delta 11474 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 diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index d9e876024e2..8e623f8ceaf 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -34,8 +34,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+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" @@ -161,7 +161,7 @@ msgstr "la directive %r est déjà enregistrée, elle sera écrasée" msgid "role %r is already registered, it will be overridden" msgstr "le rôle %r est déjà enregistré, il sera écrasé" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -169,12 +169,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "l'extension %s n'est pas compatible avec les lectures parallèles" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -182,12 +182,12 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "l'extension %s n'est pas compatible avec les écritures parallèles" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "sérialisation en cours %s" @@ -485,6 +485,16 @@ msgstr "l'extension %r a renvoyé par sa fonction setup() un type d'objet non su msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1220,7 +1230,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "Pour plus d'informations, visitez le site ." @@ -1897,7 +1907,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramètres" @@ -1906,12 +1916,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Renvoie" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Type renvoyé" @@ -1924,7 +1934,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "fonction" @@ -2002,7 +2012,7 @@ msgid "Throws" msgstr "Déclenche" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "classe" @@ -2019,7 +2029,7 @@ msgstr "paramètre du modèle" msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" @@ -2034,7 +2044,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" @@ -2048,20 +2058,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "module" @@ -2092,7 +2102,7 @@ msgstr "opérateur" msgid "object" msgstr "objet" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "exception" @@ -2104,92 +2114,92 @@ msgstr "état" msgid "built-in function" msgstr "fonction de base" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "propriété" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "description dupliquée pour l'objet %s; l'autre instance se trouve dans %s, utilisez :noindex: sur l'une d'elles" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "plusieurs cibles trouvées pour le renvoi %r : %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (obsolète)" @@ -2857,19 +2867,19 @@ msgstr "signature invalide pour auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erreur pendant la mise en forme de l'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "attribut manquant %s dans l'objet %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "autodoc : impossible de déterminer si %r est documenté; l'exception suivante a été levée :\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2877,76 +2887,76 @@ msgid "" "explicit module name)" msgstr "module à importer pour auto-documenter %r est inconnu (essayer de placer une directive \"module\" ou \"currentmodule\" dans le document, ou de donner un nom de module explicite)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" dans le nom d'automodule n'a pas de sens" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "arguments de signature ou annotation de return donnés pour l’automodule %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ devrait être une liste de chaînes, pas %r (dans module %s) -- __all__ sera ignoré" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Échec pour obtenir la signature de la fonction pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Échec pour obtenir la signature du constructeur pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, 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:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,56 +2993,62 @@ msgstr "autosummary : fichier stub non trouvé %r. Vérifiez votre paramètre au msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "échec de l’analyse du nom %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "échec d’importation de l'object %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate : fichier nontrouvé : %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "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:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, 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:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] engendrement d’un auto-sommaire pour : %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] écriture dans %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[autosummary] échec de l'import de %r : %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3047,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nEngendre du ReStructuredText par les directives autosummary.\n\nsphinx-autogen est une interface à sphinx.ext.autosummary.generate. Il\nengendre les fichiers reStructuredText à partir des directives autosummary\ncontenues dans les fichiers donnés en entrée.\n\nLe format de la directive autosummary est documentée dans le module\nPython \"sphinx.ext.autosummary\" et peut être lu via : ::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "fichiers sources pour lesquels il faut produire des fichiers rST" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, 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:643 +#: sphinx/ext/autosummary/generate.py:652 #, 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:647 +#: sphinx/ext/autosummary/generate.py:656 #, 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 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3535,6 +3551,13 @@ msgstr "ignoré" msgid "failed" msgstr "échoué" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 93a8881c647f71da59379d7eb7342079f6405ac7..a150249553862c09b9e0553dfee2ae36fc6342a1 100644 GIT binary patch delta 35 lcmZo*X<(Vq%xV5n\n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 3f276b90cbabdbd4f4e9a4a727d2da99ed8fba78..eb184e31070fad191a32a8b1c4450595e202f36c 100644 GIT binary patch delta 20 ccmZ3YzC?Y)elB(+T?0d11EbByxbATP07*Rt&j0`b delta 20 ccmZ3YzC?Y)elB)HT|*;XBeTuNxbATP07+^F)&Kwi diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 83986b60539..138804b6b8e 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "פרמטרים" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "משתנה" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "פונקציה" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "מחלקה" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2008,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "מודול" @@ -2066,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "משתנים" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 4ce4497355742da387a96f004f82697b08437020..4f6e1bfa6369cd5379a50e6acce208102cb7e7f1 100644 GIT binary patch delta 35 lcmey*{GWM3GrN(lfuXK}(ZnuAUMN$+z`)ATXyXodMgYL*3Df`p delta 35 ncmey*{GWM3GrOU#p^>hU*~BhIUNF\n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 46ff664cb21f2b53e3d103b47c82240913e21e6f..5c2cab100c4d166030cf8125a36695b1409b2ade 100644 GIT binary patch delta 38 ocmewt{V#gME-7{+T?0d11Ea|Yr4)IgYy|@YD?_8r@1^*K0Rj;Va{vGU delta 38 qcmewt{V#gME-7|HT|*;XBeTf|r4)I=Y(paj0|P5V!_Dud_=N!i&\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" @@ -140,7 +140,7 @@ msgstr "a(z) %r direktíva már regisztrálva van, felül lesz bírálva" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +161,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -464,6 +464,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Fejlesztési Javaslatok; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1199,7 +1209,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1876,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paraméterek" @@ -1885,12 +1895,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Visszatérési érték" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Visszatérés típusa" @@ -1903,7 +1913,7 @@ msgid "variable" msgstr "változó" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "függvény" @@ -1981,7 +1991,7 @@ msgid "Throws" msgstr "Dob" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "osztály" @@ -1998,7 +2008,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" @@ -2013,7 +2023,7 @@ msgstr "%s() (osztály)" msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" @@ -2027,20 +2037,20 @@ msgstr "Argumentum" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attribútum" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2071,7 +2081,7 @@ msgstr "operátor" msgid "object" msgstr "objektum" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "kivétel" @@ -2083,92 +2093,92 @@ msgstr "utasítás" msgid "built-in function" msgstr "beépített függvény" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Változók" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Kivétel" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (elavult)" @@ -2836,19 +2846,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2856,76 +2866,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2962,56 +2972,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3026,30 +3042,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3514,6 +3530,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 059f0d924f5b999c7f213ce46e0b9434d6f785ae..9b15e7c3f2b5e26c983b36e3128078176d9c0c8c 100644 GIT binary patch delta 40 rcmeCV%iMF9dBfZ`b|YN_LtO)-$xGT4d7*3t0|P5Vqs^DvcBKOV9bgTG delta 40 tcmeCV%iMF9dBfZ`c0*l5BV8l2$xGT4dBJQ$BLxEkD?`K0m)drv0{|W$4UGT* diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 21d04d1ba17..9451efec72a 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" @@ -139,7 +139,7 @@ msgstr "pengarahan %r sudah terdaftar, itu akan diganti" msgid "role %r is already registered, it will be overridden" msgstr "peran %r sudah terdaftar, itu akan diganti" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,12 +147,12 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "ekstensi %s tidak aman untuk pembacaan paralel" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -160,12 +160,12 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "ekstensi %s tidak aman untuk penulisan paralel" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" @@ -463,6 +463,16 @@ msgstr "ekstensi %r mengembalikan objek yang tidak didukung dari fungsi setup() msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1198,7 +1208,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1875,7 +1885,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" @@ -1884,12 +1894,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Kembali" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Return type" @@ -1902,7 +1912,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "fungsi" @@ -1980,7 +1990,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "class" @@ -1997,7 +2007,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" @@ -2012,7 +2022,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2026,20 +2036,20 @@ msgstr "Argumen" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2070,7 +2080,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "eksepsi" @@ -2082,92 +2092,92 @@ msgstr "statement" msgid "built-in function" msgstr "fungsi built-in" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variabel" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "lebih dari satu target ditemukan untuk referensi silang %r: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (obsolet)" @@ -2835,19 +2845,19 @@ msgstr "tanda tangan tidak valid untuk outo %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "kesalahan saat memformat argumen untuk %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut hilang %s dalam objek %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2855,76 +2865,76 @@ msgid "" "explicit module name)" msgstr "tidak tahu modul mana yang akan diimpor untuk autodocumenting %r (coba letakkan pengarahan \"module\" atau \"currentmodule\" dalam dokumen, atau berikan nama modul yang eksplisit)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" dalam nama automodule tidak masuk akal" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "argumen tanda tangan atau anotasi kembalian diberikan untuk automodule %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ harus berupa daftar string, bukan %r (dalam modul %s) -- mengabaikan __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2961,56 +2971,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "gagal mengurai nama %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary menghasilkan file .rst secara internal. Tapi source_suffix Anda tidak mengandung .rst. Dilewati." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] menghasilkan autosummary untuk: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] menulis ke %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3025,30 +3041,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nHasilkan ReStructuredText menggunakan pengarahan autosummary.\n\nsphinx-autogen adalah tampilan depan ke sphinx.ext.autosummary.generate. Ini menghasilkan \nfile reStructuredText dari pengarahan autosummary yang terkandung dalam \nfile input yang diberikan.\n\nFormat pengarahan autosummary didokumentasikan dalam \nmodul ``sphinx.ext.autosummary`` dan dapat dibaca menggunakan::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "berkas sumber untuk menghasilkan file rST untuk" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "direktori untuk menempatkan semua keluaran dalam" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "akhiran bawaan untuk berkas (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "direktori templat ubahsuai (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "mendokumentasikan anggota yang diimpor (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3513,6 +3529,13 @@ msgstr "dilewati" msgid "failed" msgstr "gagal" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 921ff6d019fc2538768b100b57331c3ce4bb4f72..29637002a496b4359a7e933e788b41439ca40e72 100644 GIT binary patch delta 20 bcmaDY`C4*A5j(q)u7RPhfzjql_99jQO9}=u delta 20 bcmaDY`C4*A5j(q~uAz~xk=f=-_99jQOE(5N diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 8dcc93a63d8..020df7175f2 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2008,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2066,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 5caa0716508bec691db34a278f7cb5c3adbdf62e..804e37613bcd95edf5b6cf409e0cfcd3a54b7e6a 100644 GIT binary patch delta 38 ocmaFq|I&YhlLWhwu7RPhfzf172}NEgTfxA<%Ft+YxkM2^0NpwYA^-pY delta 38 qcmaFq|I&YhlLWh=uAz~xk=bNV2}NEo+t5hCz`)ATaC5mt5kCOk`3fok diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index c531e4897e5..11b40dbf5d0 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+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" @@ -139,7 +139,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,12 +147,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -160,12 +160,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -463,6 +463,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1198,7 +1208,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1875,7 +1885,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1884,12 +1894,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Ritorna" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Tipo di ritorno" @@ -1902,7 +1912,7 @@ msgid "variable" msgstr "variabile" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funzione" @@ -1980,7 +1990,7 @@ msgid "Throws" msgstr "Solleva" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "classe" @@ -1997,7 +2007,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" @@ -2012,7 +2022,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" @@ -2026,20 +2036,20 @@ msgstr "Parametri" msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modulo" @@ -2070,7 +2080,7 @@ msgstr "operatore" msgid "object" msgstr "oggetto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "eccezione" @@ -2082,92 +2092,92 @@ msgstr "statement" msgid "built-in function" msgstr "funzione built-in" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variabili" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (deprecato)" @@ -2835,19 +2845,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2855,76 +2865,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2961,56 +2971,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3025,30 +3041,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3513,6 +3529,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index a6c86fa592b9f2e807d6914fac9f7a14c8c510de..7d5ba92790f6e5ba10330f0dcecc64e5526fd974 100644 GIT binary patch delta 11994 zcmYM)34G00`p5Be?TLtxg-B!}i8PT&A_*cAyAWaxYL9*2LM_Fm)>>MGRxPz_b<~zl zZ4Ih5#b~EmwH4KtcB-XRsdmu+=X=lZ_4@ZUGw<`9`&-U=o^#Hgw^b*zg%yx+87;zvg zCL2>xH%>w=vYDvbFF_`4-bJmEA5fX_;prM+0J1zx97bS&)cvzjC3z)_{MVqdkq*u5 zFzQ8DPy_oO^Y9Mp1(}RS4#b+c2uYIJfmFqOi$NIN)Gp>E)EerF4x zgahcJva3$vA*H|6vG`BNvikd(UvQABB)Y@8zD#1F`fZjo6 z&iw%mvSuD)GS+WlUo-^iGVh?)$Q?|;Fh&uN?NN(xD%QbWSPRcP{eL)dd@GxwJgm*< zFQZEIE=Fqq|I@kPB8Kxp)z-FFDX0>3MWwheDz$4+HQa-mSqYZHbI2IYdDOvEy^a06 z1(qT1f%RR+^ua{p<)qO|`~MgXb)3es_!zZ#o;e1zwHb*+y>J}f#<}Q&W82vbyomaI zEB3|%s5RnGon$g9^&RnfEWk+KZ;sGV&95P+q`8CM7}4I&C?1uWaX1!VMUrKnp%1p~ zVDImY6^RQ_{bMizr(-O>je71m)IhGHTOD_u3;skcrdoM+do)I+u08g`&ZrFS!t%Hu z>*8SyBDFta0P(Yq_J03Pwp3B50i<9B?2XFs;7;UU1DH;SYC9i8aXo5V9&$X7I=Oyz zEZ^B)ACAHFr(+CuLM_@UI06r&G8)yz7^-D@pw5HMsEl6dLjKiwM2B7w)YY1Z(}-K6 zYI+=f@jPne-=iP?iAuG1H(P>gSe3Yr6K9}SeLIZ8vFMLQsQcb>(Um8t09&H&dmc4`A;{rsCZP@>_dXh4G(JVv zowx$_6jh3}{)`T@aWGy%l3}t381n+Yj;gV50qMp- z)HV&q2n<7IDjS2a5JPY=Dg!%E?>mj|Od76%Hsx8U0jxpQY71(=zk}N6dr^z?8V2HB z)IiD%;$c`3$-4Op7h^p}?>Qe(1NaejeQDCIwc|a6{Od(QPDdCjjzcZF6jUi1;}Tqq z*%&m`o^0JQg?Jw7fd^2F>m$^WdkM8G9-#*AHO%wl$kf0Z#NCFu?Tp9Kq5U`w8KhZ& z8u`zt7gQf^e+lJc8u4zV?B*tNXqsjt>|%Ts+Ylc_4aAJJsSZSCtOGX0L8#KKchm5q zQH;@8f&=h-)C^jVvcH4|qP`>MIIci#tIb#ui!la|VHEy=!B}y$eNHrL#w}0->xbd! zE~L?nMiFZDe}xH{G{(NTABGaoMBTU+BXJLECg-p$dXKdk^h0gqnphr_QH!k+rsD)` zjBjIG?f;ujN8&j9JwFn2xL`Xr!n>%H#TRfj9m070!togf6UWW88Ec6u;b3ftW3dCig(TZNbkk6ZN6oT}YbKT>UXC^J zb*zT_QQPzkY9RW9V;EM$bWBIKlNp1$?f~lkKT#zOm~GcWE7UINgL&xQM#HlPP^aSRc00BhoU)XWZ}27D1!`|^wIKqE1TxGBb9 z4~)cFsDW<6=Xk$4OCtdvIYzx~Z|H*M>7RzJa1Q$5C#ZdV9vk4_SPL60wwdgO%FtZY zKsP#;IQ?IvuKxqwnt6>Sc9BJ(YTVFq3~IG+LCxR*Hpc5%4r?s6Mxq`Vi<)6B=HM9T z^Y^hfaS3Wd-(pMrX({}sBa(Zr`w zCHNKfLa$e?30Rl7Gb%H)Fag)TO8#SMoT5V`x{sPc`f@vvo~Q>6LS47eiT9#1a2_k* z*XWBkQP({{oe!Za>_pN~`#%FCun;@pDmM+K?iOk_S6FFptc@LsGf^d2idvkTQ7`-_ z`r%R3%>RRx@F8j-rHky0tD-WPjT%^cR0bzI{q7?);^;Vqdhi2G#wV!7mAJ~LY$&QU zFJV<&hT09A&>!D-;xky8_y+2_d#JTjdbM3+aj4QZ$5eg)x1kY0#|+d=R-jUQ00-ew zR84EWX8SX-B5@0>gB>vgr(gu`$ENrtYOw{pZntSDYCw%p18R?P+W&=4$D7!L4^Cnh z)?8yV&bwA zG<4xHR4pH(UgY(rJsG1>FNjBNn;xi{%tu}K57e&t#PKK8z$w{hYThwotL;PAKj zKH$C~JDCJFdB<);pMThl2BS(8?xt~rMi+b@>+iBNUWSv1uVZiQ`mQ}E_Mo=c7pNJ0 zhdQ{PVHCF5ZP&(d)P7%%W$_Ry1IMrmUP7HW?%Oo9s>|-N+p03^gAlBS>8S0Q=kyOk zrFxe0`PI*`u@|_ zJOi5(cfd$ojva76sG8{#)n=f)3`_nSL3 zs^jmd?NRBF-N!+wT`(Ej;!7Dj(Rz6@z+kb5u<`Vr86)UbqM+<4VlL3MJN7Sc~{2d=amk$Z9Ekl5WkPvco(%M68~kl?MrSNgXs7K8)5t>HWNco4;qclu^1Ea5!S=#Q}()i zY)RY)m5I%$nf?Pcp@Ucs&!I|n33YwmX**GO5e?nA6Gyms5#|!t{I|Vv1ZumCcjDuy zMfnL<#p|dU-A8|Hb(XsFoaZrw*!wg4YdQu)i6`S2T#4bVKYqH{FOvvV>RaPt?1N$W zBSvC5Hun&WMa}RP9E$5u`@PgTew1Juj>C^o&#V81J z1bt~oS{D_!MJ=xWSO*WIX7(K_wa;)0mOXFdnU3>t82w9d6B&7czQn68*!#C)Ro-uo z(a-?CKs_+*qWvWkjg^U8qh8z{qi~kvR!ky3<-~uYzD>g}*_pOQT|W>tfrXfZ-{C@x zzfAtS(h5$bMBTUxtKunCM!rVX{5uTAU!8uR>$cw?m8l5SVoq|*K)tXfR>Kjf z=gq+yxad0h*Nt20&hs2lw8 z3!CC(yn)J4_iybHKF3W%i>w&+;M1s#eD1`q?`(esjHJIZzKF><1>eOqjQ-xPq27*f zVSV}^U^dpdX?M>se1rH?)RFHVcFX>1U5$G22~5EUn20eyu*EPR=iq&ug@r#_f5SrJ z3IDYNxrOzJLw@2Vn2WP9__jUZ)?xH-bK6A%zv;4bkW#ST4CcFJ=OWGS1564s-hs|&shHC%+K!cH(()a8SjJlXl zJP3Q?AzY3D_w9qWJMMBU#n98+&4b%jMZ6hcTV_ z4u)VzyQ_66ankv)%1a2@u?%TC;=jLY-q_9@tx z{t{GeL&~~5KTrms?k~Yq{2TSc)N=ND?NBdXgkktDD#PxxG=|Z*g`==Td6(y}%MYP4 z@)Wf@>Q!)gwr5XN>R)j@h7rW~P$jJ5eJ{* zM=mN=>rjhtJGRDas0T$=v?Xbc>Mumi@Gy?V&rvgM?BnwM7#-la0fXqj;>7n+&r7W2 z;yZx)ccRgpj!~$6yc-#rd5qd_e!ecxst-mj*1f3f%T=~1Y>QeW1F;*fM-A*gsubn@ zteL0*PQZEi8v46k)Ub-n^B0cws=7P}#w-lrg88TuZY?T9(f%&awwsJf=|0pE{R?V8 zhXlAhyQBp+B%X^Y_<B04tE(1T+5m-yM3k6O*EQK{O8)9_22 zg&nHdQk_MW>H>PBZ*`aFpbADm;uus$8(PX+ zuA@>pxrTKKYF}?g4fH+Kx7hDE7;A;tfh@#0;+3dvSb{S!DAeUSfQqmlarv6$zcGyl zHEk^maT)PaoPagL>`a%U2J#vzGrKScPoV}>g>R(M7=?;gph~h0Gx4m`?-k+l{4qZi zx6uEBn}#k3j&zwK?2hqx8?|_XYS~qvi>lpJ)Qfhb7F$Sdd);_UA>NKElR66(5B$P3LS)BzSySI=Spx1v#-jv1)cxe1l})2IhN!}?e; z!5%!>jtel7{!dY*`4#gpI?=9yNvQi5q6V@Gb=?&lh<^1L81FZQG?an4>cEqzZT1zm z!EQ-5UXS`bB-xfE9`%A0?1I^-U9b|hi~hi&*geI5SCpWR^iuWhfKt(|RXUx9M!p3# z)BC6aMW?zv{|aRos^&*gCs=TrJ;Sq5abHx4UP9epg4zZ5QAc{2bQ}AkwreD6dv;7` z|LcP3bmZea)FQir`Z6*N>;p%mZrp?#@Mky-AE6dizlL@o(@~3cBPugHQ0GLk6F1avEYp5glYt#dVX4qX(h)Vr`urq#x`Zh~$?3|RS&-bC$#D`cD zzel~$m1zeafx0dSbzM(4jk+|ZI~{MKGIAPK(=So0HKvI@Cwib}xC&LzepDqXZ=2jrY^o5?ivqHU-LUPUdcS}k1W7PfIrXlYC2 z-^$t(^`Z?p5sOjVHm0?mP;b=CUqzjGAL4AR+{Wek(YhSFYX5&rV+0?h<=C&yji}mO zLe=Uo)C0WR+Fv+5u@><}EQ_mAC0d6~@hoaLRBC4jl7sDuXP`=b8pH7s>i>Ucf^uyQ zN1#9PeALL_KrPCDqiXKg-e#s6YByx!I2?&OxUOJ3EZxD*Fb}5_Z^Y(UBhOB#FGdrO z!R{JS5e==<wSkUr;zHq1(iQv4x`xCXJhz z5s^D?%!p|P5#0(#4JjNxA|i7{;-pcYuBOAr6pR?1IB49Mtm1Q9mvt^)`>;Zp;wpa~ MELB|Q>56Xu2XHsu(EtDd delta 12119 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 lmG=YO7XS6QpnUtoJr(@Ji$nh3EB&9jHho6\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -151,7 +151,7 @@ msgstr "ディレクティブ %r は既に登録されています。ディレ msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s拡張は並列読み込みに対して安全ではありません" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -172,12 +172,12 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s拡張は並列書き込みに対して安全ではありません" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "直列で %sします" @@ -475,6 +475,16 @@ msgstr "拡張 %r のsetup()関数が、対応していないオブジェクト msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1210,7 +1220,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "詳しくは、を見てください。" @@ -1887,7 +1897,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "パラメータ" @@ -1896,12 +1906,12 @@ msgid "Return values" msgstr "戻り値" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "戻り値" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "戻り値の型" @@ -1914,7 +1924,7 @@ msgid "variable" msgstr "変数" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "の関数" @@ -1992,7 +2002,7 @@ msgid "Throws" msgstr "例外" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "クラス" @@ -2009,7 +2019,7 @@ msgstr "テンプレート・パラメータ" msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" @@ -2024,7 +2034,7 @@ msgstr "%s() (クラス)" msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" @@ -2038,20 +2048,20 @@ msgstr "引数" msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "の属性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "モジュール" @@ -2082,7 +2092,7 @@ msgstr "演算子" msgid "object" msgstr "オブジェクト" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "例外" @@ -2094,92 +2104,92 @@ msgstr "文" msgid "built-in function" msgstr "組み込み関数" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "変数" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "%s (%s のプロパティ)" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "プロパティ" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s のオブジェクト記述、 %s の他の​​インスタンスを複製し、そのうちの1つに :noindex: を使用します" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (非推奨)" @@ -2847,19 +2857,19 @@ msgstr "auto%s (%r) の署名が無効です" msgid "error while formatting arguments for %s: %s" msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "オブジェクト %s に属性 %s がありません" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "autodoc: ドキュメント化する %r の決定に失敗しました。次の例外が発生しました:\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2867,76 +2877,76 @@ msgid "" "explicit module name)" msgstr "ドキュメントの自動生成 %r のためにどのモジュールをインポートするのか分かりません (ドキュメントに \"module\"または \"currentmodule\"ディレクティブを配置するか、明示的なモジュール名を指定してください)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "モックオブジェクトが検出されました: %r" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "%s のシグネチャをフォーマット中にエラーが発生しました: %s" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 名の \"::\" は意味がありません" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule に与えられた署名引数、または戻り値となるアノテーション %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ は文字列のリストでなければなりません。%r (%s モジュールの中) ではないです -- ignoring __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "members: オプションで指定された属性がありません: モジュール %s、属性 %s" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s の関数シグネチャの取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "%s のコンストラクタ署名の取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "%sの別名です。" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)のエイリアスです。" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s のメソッド・シグネチャの取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "無効な __slots__ が %s で見つかりました。無視されました。" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2973,56 +2983,62 @@ msgstr "autosummary: stubファイルが見つかりません%r。autosummary_ge msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "キャプション付きオートサマリーには :toctree: オプションが必要です。" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" -msgstr "autosummary: %s のインポートに失敗しました。" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "%sの名前を解析できませんでした " -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "%sオブジェクトをインポートできませんでした " -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ファイルが見つかりません: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary は内部的に rst ファイルを生成します。しかしあなたの source_suffix は rst ファイルに含まれていませんでした。スキップします。" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, 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:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] %s の autosummary を生成中" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s に書き込み中" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[autosummary] %rのインポートに失敗しました: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3037,30 +3053,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nautosummary ディレクティブを使って ReStructuredText を生成します。\n\nsphinx-autogen は sphinx.ext.autosummary.generate のフロントエンドです。\n入力されたファイルを含む autosummary ディレクティブから reStructuredText ファイルを\n生成します。\n\nautosummary ディレクティブのフォーマットは\n``sphinx.ext.autosummary`` に記載されています。Pythonモジュールと :: を使って読むことができます。\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "rST ファイルを生成するためのソースファイル" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "ファイルのデフォルト拡張子 (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "カスタムテンプレートディレクトリ (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "インポートしたメンバーのドキュメント (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3525,6 +3541,13 @@ msgstr "スキップしました" msgid "failed" msgstr "失敗しました" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 405bfbc3f5502317cee37a3829ee7fc0326253bf..370263ce094fd864d77a2f1bb31f7557113f0f82 100644 GIT binary patch delta 12115 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 B_Fw=2 delta 12253 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\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -136,7 +136,7 @@ msgstr "%r 지시문이 이미 등록되어 있으며, 재정의됩니다" msgid "role %r is already registered, it will be overridden" msgstr "%r 역할이 이미 등록되어 있으며, 재정의됩니다" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 읽기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 확장 기능은 병렬 읽기에 안전하지 않습니다" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "%s 확장 기능은 병렬 쓰기에 안전한지 선언하지 않았으므로, 그렇지 않다고 가정합니다. 확장 기능 작성자에게 확인하고 명시하도록 요청하십시오" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 확장 기능은 병렬 쓰기에 안전하지 않습니다" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" @@ -460,6 +460,16 @@ msgstr "확장 기능 %r이(가) setup() 함수에서 지원되지 않는 개체 msgid "Python Enhancement Proposals; PEP %s" msgstr "Python 향상 제안; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "자세한 내용은 를 참조하십시오." @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "매개변수" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "반환값" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "반환" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "반환 형식" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "변수" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "함수" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "예외" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "클래스" @@ -1994,7 +2004,7 @@ msgstr "템플릿 매개변수" msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" @@ -2009,7 +2019,7 @@ msgstr "%s() (클래스)" msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" @@ -2023,20 +2033,20 @@ msgstr "인수" msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "메서드" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "속성" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "모듈" @@ -2067,7 +2077,7 @@ msgstr "연산자" msgid "object" msgstr "객체" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "예외" @@ -2079,92 +2089,92 @@ msgstr "문" msgid "built-in function" msgstr "내장 함수" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "변수" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "예외 발생" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "%s (%s의 특성)" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "폐지됨" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "특성" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s의 중복 객체 설명, 다른 인스턴스는 %s에 있으며, 이 중 하나에 :noindex:를 사용하십시오" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (폐지됨)" @@ -2832,19 +2842,19 @@ msgstr "auto%s (%r)에 대한 잘못된 서명" msgid "error while formatting arguments for %s: %s" msgstr "%s에 대한 인수를 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "%s 속성이 %s 객체에 없음" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "autodoc: 문서화 할 %r을(를) 결정하지 못했으며, 다음 예외가 발생했습니다:\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "%r의 자동 문서화를 위해 가져올 모듈을 알 수 없습니다 (문서에 \"module\" 또는 \"currentmodule\" 지시문을 배치하거나, 명시적으로 모듈 이름을 지정해 보십시오)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "모의 객체가 감지되었습니다: %r" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "%s에 대한 서명을 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 이름의 \"::\"은 의미가 없음" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule %s에 대해 서명 인수 또는 반환 값 주석이 지정됨" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__은 %r이(가) 아닌 문자열의 목록이어야 합니다 (모듈 %s) -- __all__을 무시합니다" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "%s의 별칭" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)의 별칭" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "autosummary: 스텁 파일 %r을(를) 찾을 수 없습니다. autosumma msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "캡션이 있는 자동 요약에는 :toctree: 옵션이 필요합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" -msgstr "autosummary: %s을(를) import 하지 못했습니다" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "이름 %s을(를) 해석하지 못함" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary는 내부적으로 .rst 파일을 생성합니다. 하지만 source_suffix에 .rst가 포함되어 있지 않습니다. 건너뜁니다." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, 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:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 자동 요약 생성: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s에 기록" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[autosummary] %r을(를) import 하지 못했습니다: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nautosummary 지시문을 사용하여 ReStructuredText를 생성합니다.\n\nsphinx-autogen은 sphinx.ext.autosummary.generate의 프런트엔드입니다.\n주어진 입력 파일에 포함된 autosummary 지시문에서 reStructuredText 파일을 생성합니다.\n\nautosummary 지시문의 형식은 ``sphinx.ext.autosummary`` Python 모듈에 문서화되어 있으며 다음 명령을 사용하여 읽을 수 있습니다.\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "rST 파일을 생성할 원본 파일" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "모든 출력을 저장할 디렉토리" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "파일의 기본 확장자 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "사용자 정의 템플릿 디렉토리 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "가져온 멤버 문서화 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "건너뜀" msgid "failed" msgstr "실패" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index cd9c5e5da0e050f233fa5a1a8217256affd964ae..ac4798d089c9dbe983fa18fb48c4e9a089113353 100644 GIT binary patch delta 66 zcmexk{>Oa7ZUIvxT?0d110w|k11m!#Z37_S3h>trN-fJQ&dkr#bxABqwNfxLFhWtc J`GWutHvpCU5@G-V delta 66 zcmexk{>Oa7ZUIw6T|*;XBQpg911m!#Z37_S3h>trN-fJQ&dkr#bxABqwNfxLFaoPH OGy\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrai" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Grąžinamos reikšmės" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "kintamasis" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "Išmeta" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klasė" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" @@ -2008,7 +2018,7 @@ msgstr "%s() (klasė)" msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" @@ -2022,20 +2032,20 @@ msgstr "Argumentais" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribudas" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modulis" @@ -2066,7 +2076,7 @@ msgstr "operatorius" msgid "object" msgstr "objektas" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "išimtis" @@ -2078,92 +2088,92 @@ msgstr "sakinis" msgid "built-in function" msgstr "įtaisytoji funkcija" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Kintamieji" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (atmestas)" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 7db4503f1cac75bfb806f55afea518b703a531d4..a727d5c6dbc8f334fb19f30f8409f0799c50da64 100644 GIT binary patch delta 38 ocmcai_@% delta 38 qcmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Atgriež" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Atgriežamais tips" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "mainīgais" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "Izmet" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klase" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" @@ -2021,20 +2031,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atributs" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modulis" @@ -2065,7 +2075,7 @@ msgstr "operators" msgid "object" msgstr "objekts" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "izņēmums" @@ -2077,92 +2087,92 @@ msgstr "priekšraksts" msgid "built-in function" msgstr "iebūvēta funkcija" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Mainīgie" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 6974094e9969d81ed71e89256f53bf85844b1df4..61b1c1a57e35d0c0a0b4e30b909eed4883d56c05 100644 GIT binary patch delta 38 ocmX@hf0lp46=rrLT?0d11Ea~enH71VYy|@YD?_8roGeF}0o=<9C;$Ke delta 38 qcmX@hf0lp46=rrrT|*;XBeTi3nH71#Y(paj0|P5V!_Ay5N0\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Предлог за подобрување на Python; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Враќа" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Повратен тип" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "променлива" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функција" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "Фрла" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "класа" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -2008,7 +2018,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2066,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index e05d0ab508f5822f89d8ee1df5fc091fc9bb636c..ea328fcbecb4f7b455a758bba3fc0358b320d72a 100644 GIT binary patch delta 38 ocmX?TdeC%(kRZE}u7RPhfzf11K}B9DTfxA<%Ft-DyI>V30KLoz`v3p{ delta 38 qcmX?TdeC%(kRZFEuAz~xk=bNPK}B9L+t5hCz`)ATaI?E$6(<0`iwOe& diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 5d509f06041..c2355b6d584 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametere" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Returnere" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Retur type" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funksjon" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "Kaster" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klasse" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" @@ -2007,7 +2017,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2021,20 +2031,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attributt" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2065,7 +2075,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "untak" @@ -2077,92 +2087,92 @@ msgstr "uttrykk" msgid "built-in function" msgstr "innebygde funksjoner" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (foreldet)" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 7bb5ce1e52ecdab362414254439af3a2542d8a24..8c2472afb3e1039b2f15ed40b06244224fbe1989 100644 GIT binary patch delta 38 ocmbQ~Hq&jxK>>CnT?0d11Ea|&1QdCpYy|@YD?_8r-vpF}0N#8Gi2wiq delta 38 qcmbQ~Hq&jxK>>C{T|*;XBeTgT1QdC}Y(paj0|P5V!_D6Wl!XA_I|`8i diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 63ebc7159a0..d532cae0c47 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Return type" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "चल" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "फन्क्सन" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "Throws" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "कक्षा" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" @@ -2009,7 +2019,7 @@ msgstr "%s() (कक्षा)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -2023,20 +2033,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attribute" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "मडुल" @@ -2067,7 +2077,7 @@ msgstr "सन्चालक" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "अपबाद" @@ -2079,92 +2089,92 @@ msgstr "भनाई" msgid "built-in function" msgstr "built-in फन्क्सन" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "चलहरू" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "(deprecated)" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 0fb552a49b076c963f3725ddf734cf56da8732fb..bceab49fa26b0ca11c0ce342896359a52b4bf62d 100644 GIT binary patch delta 40 qcmdlzlX3S<#tlw7>_)lk diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 7c3d696534c..57bbf2ec54a 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+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" @@ -141,7 +141,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -149,12 +149,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -162,12 +162,12 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" @@ -465,6 +465,16 @@ msgstr "de setup() functie van extensie %r retourneerde een niet-ondersteund obj msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1200,7 +1210,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1877,7 +1887,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" @@ -1886,12 +1896,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Return type" @@ -1904,7 +1914,7 @@ msgid "variable" msgstr "variabele" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "functie" @@ -1982,7 +1992,7 @@ msgid "Throws" msgstr "Werpt" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klasse" @@ -1999,7 +2009,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" @@ -2014,7 +2024,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" @@ -2028,20 +2038,20 @@ msgstr "Argumenten" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "module" @@ -2072,7 +2082,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "exceptie" @@ -2084,92 +2094,92 @@ msgstr "statement" msgid "built-in function" msgstr "ingebouwde functie" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variabelen" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (verouderd)" @@ -2837,19 +2847,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2857,76 +2867,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2963,56 +2973,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3027,30 +3043,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3515,6 +3531,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 9044280b605fdbb8641f4c2ff55f7b1d035d90b9..13dceb7630e2a18378c1be66a0cf2016791a24a6 100644 GIT binary patch delta 40 qcmaF)lJVtB#tkw~>_)l\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "dyrektywa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" msgid "role %r is already registered, it will be overridden" msgstr "rola %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "tworzenie serii %s" @@ -462,6 +462,16 @@ msgstr "rozszerzenie %r zwróciło nie wspierany obiekt ze swojej funkcji setup( msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1197,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1874,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" @@ -1883,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Zwraca" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Typ zwracany" @@ -1901,7 +1911,7 @@ msgid "variable" msgstr "zmienna" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcja" @@ -1979,7 +1989,7 @@ msgid "Throws" msgstr "Wyrzuca" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klasa" @@ -1996,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -2011,7 +2021,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -2025,20 +2035,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atrybut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "moduł" @@ -2069,7 +2079,7 @@ msgstr "operator" msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "wyjątek" @@ -2081,92 +2091,92 @@ msgstr "instrukcja" msgid "built-in function" msgstr "funkcja wbudowana" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (niezalecane)" @@ -2834,19 +2844,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "brakujący atrybut %s w obiekcie %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2854,76 +2864,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2960,56 +2970,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,30 +3040,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, 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:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3512,6 +3528,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 50ceeaf1f0931ac8165ea337ac401760c7afda6b..9f0a18902f0de1a1db325609c63016da10788ee6 100644 GIT binary patch delta 18 Zcmeyy{Ec}+GrN(lfuXK}(Z;SEMgTvl1_S^A delta 18 Zcmeyy{Ec}+GrOU#p^>hU*~YFMMgTw01`7ZH diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index cacf23ccc5a..bb2da7c3e0f 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 51d5ea7626fd21481c2c47a2a44b810166fe97e5..9aa31ca464a724a02dba49ac4e51de0e946171fe 100644 GIT binary patch delta 12129 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 P>9m`dU8Tjh3p)HC@)H6E delta 12271 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 ops%y\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -140,7 +140,7 @@ msgstr "diretiva %r já está registrada, ela será sobrescrita" msgid "role %r is already registered, it will be overridden" msgstr "papel %r já está registrado, ele será sobrescrito" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "a extensão %s não é segura para leitura em paralelo" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +161,12 @@ msgid "" "explicit" msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja – peça ao autor da extensão para verificar e torná-la explícita" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "a extensão %s não é segura para escrita em paralelo" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "fazendo serial %s" @@ -464,6 +464,16 @@ msgstr "a extensão %r retornou um objeto não suportado de sua função setup() msgid "Python Enhancement Proposals; PEP %s" msgstr "Propostas Estendidas Python; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1199,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "número de tarefas deve ser um número positivo" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "Para mais informações, visite ." @@ -1876,7 +1886,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" @@ -1885,12 +1895,12 @@ msgid "Return values" msgstr "Valores de retorno" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Tipo de retorno" @@ -1903,7 +1913,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "função" @@ -1981,7 +1991,7 @@ msgid "Throws" msgstr "Lança" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "classe" @@ -1998,7 +2008,7 @@ msgstr "parâmetro de modelo" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -2013,7 +2023,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2027,20 +2037,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "módulo" @@ -2071,7 +2081,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "exceção" @@ -2083,92 +2093,92 @@ msgstr "comando" msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "propriedade" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noindex: para um deles" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "mais de um alvo localizado para referência cruzada %r: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2836,19 +2846,19 @@ msgstr "assinatura inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erro ao formatar argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "faltando atributo %s no objeto %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "autodoc: falhou em determinar %r a ser documentado, a seguinte exceção foi levantada:\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2856,76 +2866,76 @@ msgid "" "explicit module name)" msgstr "não sei qual módulo importar para documentação automática %r (tente colocar uma diretiva “module” ou “currentmodule” no documento ou forneça um nome explícito para o módulo)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "Um objeto simulado foi detectado: %r" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "erro ao formatar assinatura para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "“::” no nome de automodule não faz sentido" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "argumentos de assinatura ou anotação de retorno fornecidos para automodule %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ deve ser uma lista de strings, não %r (no módulo %s) -- ignorando __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "Falha ao obter uma assinatura de construtor para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "apelido de %s" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "apelido de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2962,56 +2972,62 @@ msgstr "autosummary: arquivo stub não encontrado %r. Verifique sua configuraç msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Um autosummary com legenda requer a opção :toctree:. Ignorado." -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" -msgstr "autosummary: falha ao importar %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "falha ao analisar o nome %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "falha ao importar o objecto %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: arquivo não encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary gera arquivos .rst internamente. Mas seu source_suffix não contém .rst. Ignorado." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: falhou em determinar %r a ser documentado, a seguinte exceção foi levantada:\n%s" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] gerando autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escrevendo em %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[autosummary] falha ao importar %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3026,30 +3042,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGera ReStructuredText usando diretivas de resumo automático.\n\nsphinx-autogen é um frontend para sphinx.ext.autosummary.generate.\nEle gera os arquivos reStructuredText a partir de diretivas autosummary\ncontidas nos arquivos de entrada fornecidos.\n\nO formato da diretiva autosummary está documentado no módulo Python\n``sphinx.ext.autosummary`` e pode ser lido usando:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "arquivos-fonte para gerar arquivos rST" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "diretório para colocar toda a saída" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufixo padrão para arquivos (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "diretório de modelos personalizado (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documenta membros importados (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3514,6 +3530,13 @@ msgstr "ignorado" msgid "failed" msgstr "falhou" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 4c7184639f4b6a70899425adfbf1d610fc4e0281..4cf0357f4e3f276023803e5414bcfd087ff7e6d4 100644 GIT binary patch delta 19 acmX@)cF1jmwJ5uhu7RPhfze_oQ9b}cl?87A delta 19 acmX@)cF1jmwJ5uxuAz~xk=bG=Q9b}cy9IUt diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index c743df2c81f..f27bc0a13b0 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Propuneri de Îmbunătățire Python; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrii" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Întoarce" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Tipul întors" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "variabilă" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funcție" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "Generează" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "clasă" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -2009,7 +2019,7 @@ msgstr "%s() (clasă)" msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2023,20 +2033,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2067,7 +2077,7 @@ msgstr "operator" msgid "object" msgstr "obiect" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "excepție" @@ -2079,92 +2089,92 @@ msgstr "declarație" msgid "built-in function" msgstr "funcție integrată" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variabile" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Generează" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "(învechit)" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 194dff8ad451569931d7de094eba9fb5b0e87db2..2dc89edf623a112947ef7ed0433b31a1535ce5d0 100644 GIT binary patch delta 40 qcmX@s#CWWUaf69GyOFMep{{|^WNUdvUMO3^z`)ATXmh6gT}1%o%?hjl delta 40 scmX@s#CWWUaf69GyP>Y3k*<;1WNUdvUNGCxNWs9s%Fu9gru\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" @@ -140,7 +140,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -148,12 +148,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -161,12 +161,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -464,6 +464,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Предложения об улучшениях Python; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1199,7 +1209,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1876,7 +1886,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметры" @@ -1885,12 +1895,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Результат" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Тип результата" @@ -1903,7 +1913,7 @@ msgid "variable" msgstr "переменная" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функция" @@ -1981,7 +1991,7 @@ msgid "Throws" msgstr "Бросает исключение" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "класс" @@ -1998,7 +2008,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" @@ -2013,7 +2023,7 @@ msgstr "%s() (класс)" msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -2027,20 +2037,20 @@ msgstr "Аргументы" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "модуль" @@ -2071,7 +2081,7 @@ msgstr "оператор" msgid "object" msgstr "объект" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "исключение" @@ -2083,92 +2093,92 @@ msgstr "команда" msgid "built-in function" msgstr "базовая функция" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Переменные" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "(использование не рекомендуется)" @@ -2836,19 +2846,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2856,76 +2866,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2962,56 +2972,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3026,30 +3042,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3514,6 +3530,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 705d02581b4891128fb4146b7e7efeee5a915409..aeae858f0ced7d7d5125f4d57225179d73936cb6 100644 GIT binary patch delta 38 ocmeB|>6h8Ci;dk#*T7KMz-aP8Hbq`2TfxA<%Ft-@do~4j0L$tL-~a#s delta 38 qcmeB|>6h8Ci;dk-*U(7U$ZYaKHbq`A+t5hCz`)ATaPxaM1$F?;sR`%+ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 04f2cbc7875..6ae1d16d8f9 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "පරාමිතීන්" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "විචල්‍යය" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "ක්‍රියාව" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2008,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2066,7 +2076,7 @@ msgstr "" msgid "object" msgstr "වස්තුව" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "විචල්‍ය" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 4c1cdfac6739c6c875c3ae73db6ddc9232d7757f..9d6bb67a671e4196636d8fcc159c943c18a3677c 100644 GIT binary patch delta 40 rcmX>yi{;2HmJMI0up8+b80s1rP5v`Qkr&EVFfgz(G}^2+RjL92Ees76 delta 40 tcmX>yi{;2HmJMI0up8\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" @@ -137,7 +137,7 @@ msgstr "direktíva %r už je registrovaná, bude prepísaná" msgid "role %r is already registered, it will be overridden" msgstr "rola %r už je registrovaná, bude prepísaná" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,12 +145,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -158,12 +158,12 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "rozšírenie %s nie je bezpečné pre paralelné zostavenie" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "sériové spracovanie %s" @@ -461,6 +461,16 @@ msgstr "rozšírenie %r vrátilo so svojej funkcie setup() nepodporovaný objekt msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1196,7 +1206,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1873,7 +1883,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" @@ -1882,12 +1892,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Vracia" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Návratový typ" @@ -1900,7 +1910,7 @@ msgid "variable" msgstr "premenná" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcia" @@ -1978,7 +1988,7 @@ msgid "Throws" msgstr "Vyvoláva" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "trieda" @@ -1995,7 +2005,7 @@ msgstr "parameter šablóny" msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" @@ -2010,7 +2020,7 @@ msgstr "%s() (trieda)" msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" @@ -2024,20 +2034,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribút" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2068,7 +2078,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "výnimka" @@ -2080,92 +2090,92 @@ msgstr "príkaz" msgid "built-in function" msgstr "zabudovaná funkcia" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Premenné" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "%s (vlastnosť %s)" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "vlastnosť" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "duplicitný popis objektu %s, ďalší výskyt v %s, použite :noindex: pre jeden z nich" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "nájdený viac ako jeden cieľ krížového odkazu %r: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (zastarané)" @@ -2833,19 +2843,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "chyba formátovania argumentov %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "chýba atribút %s objektu %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2853,76 +2863,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "„::” v automodule nedáva zmysel" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ má byť zoznam reťazcov, nie %r (v module %s) -- ignorované __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "alias pre %s" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias pre TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2959,56 +2969,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Autosummary s popiskom vyžaduje voľbu :toctree: , ignorované." -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "zlyhalo spracovanie mena %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "zlyhal import objektu %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: súbor nenájdený: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary interne generuje súbory .rst. Ale Váš source_suffix neobsahuje .rst. Preskočené." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,30 +3039,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "adresár umiestnenia výstupu" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "predvolená prípona súboru (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "vlastný adresár šablón (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "dokumentovať importovaných členov (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3511,6 +3527,13 @@ msgstr "preskočené" msgid "failed" msgstr "zlyhalo" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 66fef2c43c5540aa833eb8bde649b41d9d00b2b0..dd5873720adc6a0a87027f7b3e33f98c483f3c2e 100644 GIT binary patch delta 38 ocmeyM^+9Wc5ih%uu7RPhfzf13UPWFgTfxA<%Ft+YIxi;&0L|wKB>(^b delta 38 qcmeyM^+9Wc5ih%;uAz~xk=bNRUPWFo+t5hCz`)ATaC15@CkFt|rU@+o diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 7f86e99a508..0f8a1226e1a 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Vrne" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Vrne tip" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "razred" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -2007,7 +2017,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2065,7 +2075,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "izjema" @@ -2077,92 +2087,92 @@ msgstr "izjava" msgid "built-in function" msgstr "vgrajene funkcije" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (zastarelo)" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 14bfbf1f999..7e1c249f58d 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -1,14 +1,14 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2021. +# FIRST AUTHOR , 2022. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: Sphinx 4.4.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -133,7 +133,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,12 +141,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -154,12 +154,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1199,7 +1209,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1888,7 +1898,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1897,12 +1907,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1915,7 +1925,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1993,7 +2003,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -2010,7 +2020,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2025,7 +2035,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2039,20 +2049,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2083,7 +2093,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2095,92 +2105,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: " "for one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2847,20 +2857,20 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception" -" was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following " +"exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2868,75 +2878,75 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." @@ -2973,34 +2983,37 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does " "not contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following " @@ -3008,22 +3021,25 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3040,30 +3056,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3527,6 +3543,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role " +"is not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 9c5ec223c7be7bbd82756ea608f68a7d7ed2ab04..f18a6db519a08bd9486d1ef9ece9f17e243faeeb 100644 GIT binary patch delta 11592 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 delta 11741 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\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "direktiva %r është e regjistruar tashmë, do të anashkalohet" msgid "role %r is already registered, it will be overridden" msgstr "roli %r është e regjistruar tashmë, do të anashkalohet" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për lexim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "zgjerimi %s s’është i sigurt për lexim paralel" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "zgjerimi %s nuk deklaron nëse është i parrezik për shkrim paralel, po merret se s’është - ju lutemi, kërkojini autorin të zgjerimit ta kontrollojë dhe ta bëjë këtë shprehimisht" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "zgjerimi %s s’është i sigurt për shkrim paralel" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "zgjerimi %r u përgjigj me një objekt të pambuluar prej funksionit të msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,7 +1204,7 @@ msgid "job number should be a positive number" msgstr "numri i aktit duhet të jetë një numër pozitiv" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "Për më tepër hollësi, vizitoni ." @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametra" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Kthime" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Lloj kthimi" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "ndryshore" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funksion" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klasë" @@ -1993,7 +2003,7 @@ msgstr "parametër gjedheje" msgid "%s() (built-in function)" msgstr "%s() (funksion i brendshëm)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (metodë %s)" @@ -2008,7 +2018,7 @@ msgstr "%s() (klasë)" msgid "%s (global variable or constant)" msgstr "%s ( ndryshore globale ose konstante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -2022,20 +2032,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metodë" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "të dhëna" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2066,7 +2076,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "përjashtim" @@ -2078,92 +2088,92 @@ msgstr "deklarim" msgid "built-in function" msgstr "funksion i brendshëm" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Ndryshore" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (te moduli %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (te moduli %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (ndryshore e brendshme)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (klasë e brendshme)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klasë te %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metodë klase %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "%s (veti %s)" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metodë statike %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Tregues Modulesh Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Nxjerrë nga përdorimi" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "metodë klase" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "metodë statike" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "veti" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "përshkrim i përsëdytur objekti për %s, instancë tjetër te %s, përdorni :noindex: për një prej tyre" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "për ndërreferencën %r u gjet më shumë se një objektiv: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" @@ -2831,19 +2841,19 @@ msgstr "nënshkrim i pavlefshëm për auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "gabim gjatë formatimi argumentesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut %s që mungon te objekt %s" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "autodoc: s’u arrit të përcaktohet %r për dokumentim, u shfaq përjashtimi vijues:\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "s’dihet cili modul të importohet për vetëdokumentim të %r (provoni të vendosni te dokumenti një direktivë \"module\" ose \"currentmodule\", ose të jepni shprehimisht një emër moduli)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "gabim gjatë formatimi nënshkrimesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" në emër automoduli nuk ka kuptim" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ should duhet të jetë një listë vargjesh, jo %r (në module %s) -- ignoring __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Baza: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "alias për %s" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias për TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "vetëpërmbledhje: s’u gjet kartelë stub %r. Kontrolloni rregullimin msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" -msgstr "vetëpërmbledhje: s’u arrit të importohej %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "s’u arrit të përtypej emri %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "vetëpërmbledhja prodhon së brendshmi kartela .rst. Por source_suffix juaj s’përmban .rst. U anashkalua." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "vetëpërmbledhje: s’u arrit të përcaktohet %r për t’u dokumentuar, u shfaq përjashtimi vijues:\n%s" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[vetëpërmbledhje] prodhim vetëpërmbledhje për: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[vetëpërmbledhje] po shkruhet te %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[vetëpërmbledhje] s’u arrit të importohej %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nProdhoni ReStructuredText duke përdorur direktiva vetëpërmbledhje.\n\nsphinx-autogen është një ndërfaqe pamore për sphinx.ext.autosummary.generate. Prodhon\nkartela reStructuredText nga direktiva vetëpërmbledhjeje që përmbahen te\nkartelat e dhëna.\n\nFormati i direktivës vetëpërmbledhje dokumentohet te\nmoduli Python ``sphinx.ext.autosummary`` dhe mund të lexohet duke përdorur::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "kartela burim për të cilat të krijohen kartela rST" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "drejtori ku të vendosen krejt përfundimet" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "prapashtesë parazgjedhje për kartela (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "drejtori gjedhesh vetjake (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "pjesë të importuara të dokumentit (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "e anashkaluar" msgid "failed" msgstr "e dështuar" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 3a6baa38cb539e757ddb5a78b2f44ff037389493..9dd2bfbacfb14c82a012b88126b2de70ce14cf0d 100644 GIT binary patch delta 38 pcmX@$dBAhS2_bePT?0d11Eb03g%o+AYy|@YD?_8re}xVU0s!si3zq-@ delta 38 rcmX@$dBAhS2_bevT|*;XBeTipg%o+gY(paj0|P5V!_9w%4hsSR?xhQ# diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 70231472fe4..eaa0302f090 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Резултат" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Тип резултата" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "променљива" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функција" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "класа" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (уграђена функција)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метода)" @@ -2009,7 +2019,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "%s (глобална променљива или константа)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -2023,20 +2033,20 @@ msgstr "Аргументи" msgid "%s (module)" msgstr "%s (модул)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "метода" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "модул" @@ -2067,7 +2077,7 @@ msgstr "оператор" msgid "object" msgstr "објекат" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "изузетак" @@ -2079,92 +2089,92 @@ msgstr "наредба" msgid "built-in function" msgstr "уграђена функција" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Променљиве" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (у модулу %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (у модулу %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (уграђена променљива)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (уграђена класа)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (класа у %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метода класе %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статичка метода %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Застарело" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "метода класе" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "статичка метода" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 5903ed288f42d38eb5ea83028a09ad1b5b0bc737..5eb22b8d3a44e9bf53cbbf45bf67843ce5b77aba 100644 GIT binary patch delta 35 lcmX@Za)xC>GrN(lfuXK}(ZnuAUMN$+z`)ATXycA4i~zJa3B3RS delta 35 ncmX@Za)xC>GrOU#p^>hU*~BhIUNF\n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index d57ce21f145a0502a02914ddfe1a910524fe89af..fbc438717b7444e8a39610fc844c0c8fb26bc26a 100644 GIT binary patch delta 38 ocmdmFy2*6I7Xfx7T?0d11Ea~m1r&LqYy|@YD?_8rnu4920O@rKkN^Mx delta 38 qcmdmFy2*6I7XfxdT|*;XBeTiB1r&L~Y(paj0|P5V!_At4otyybGzypi diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index e77919a447d..29c30665166 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrar" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Returnerar" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Returtyp" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funktion" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "Kastar" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klass" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -2007,7 +2017,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -2021,20 +2031,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "attribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2065,7 +2075,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "undantag" @@ -2077,92 +2087,92 @@ msgstr "uttryck" msgid "built-in function" msgstr "inbyggda funktioner" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index c39881e293f5d6ea7ab751b301d25ea770887cf9..285c29225f705f795decec2497a5134336395f43 100644 GIT binary patch delta 35 mcmey)@||VEMs_1z14CT{qlr5dd7(@N0|P5Vqm9odG6Dd}Bnp}U delta 35 ocmey)@||VEMs`D8LnB=yvxz$tdBIFWBLxEkD?`JL&n7Yg0Ljz}q5uE@ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index e88e43c1ae3..75fa1a471c2 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2008,7 +2018,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2066,7 +2076,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2078,92 +2088,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 1af3f6ae099d580f85faa7a6b14bd1a142998c32..421943a5102afe9a77d466883181ffdbad4dcf7b 100644 GIT binary patch delta 35 lcmeyw{E2x&GrN(lfuXK}(ZnuAUMN$+z`)ATXyXnmMgYB939SGC delta 35 ncmeyw{E2x&GrOU#p^>hU*~BhIUNF\n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index a78c429816cb4fc265a2b01f31f8c6ae59eebede..3847422975128d2390b45697e5a2aa3c411cc56b 100644 GIT binary patch delta 40 qcmbPsih0^8<_+w%>_)l\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "yönerge %r zaten kayıtlı, geçersiz kılınacaktır" msgid "role %r is already registered, it will be overridden" msgstr "rol %r zaten kayıtlı, geçersiz kılınacaktır" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel okuma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s uzantısı paralel okuma için güvenli değil" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "%s uzantısı paralel yazma için güvenli olup olmadığını bildirmez, olmadığını varsayarak - lütfen uzantıyı hazırlayandan gözden geçirmesini ve açık hale getirmesini isteyin" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s uzantısı paralel yazma için güvenli değil" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "%s seri nosu yapılıyor" @@ -462,6 +462,16 @@ msgstr "%r uzantısı, setup() işlevinden desteklenmeyen bir nesne döndürdü; msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Geliştirme Önerileri; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1197,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "iş numarası pozitif bir sayı olmalıdır" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1874,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametreler" @@ -1883,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Dönüşler" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Dönüş türü" @@ -1901,7 +1911,7 @@ msgid "variable" msgstr "değişkeni" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "işlevi" @@ -1979,7 +1989,7 @@ msgid "Throws" msgstr "Şunu verir: " #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "sınıfı" @@ -1996,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (yerleşik işlev)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s yöntemi)" @@ -2011,7 +2021,7 @@ msgstr "%s() (sınıf)" msgid "%s (global variable or constant)" msgstr "%s (genel değişken veya sabit)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s özniteliği)" @@ -2025,20 +2035,20 @@ msgstr "Bağımsız Değişkenler" msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "yöntemi" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "özniteliği" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modülü" @@ -2069,7 +2079,7 @@ msgstr "işleç" msgid "object" msgstr "nesne" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "özel durum" @@ -2081,92 +2091,92 @@ msgstr "ifade" msgid "built-in function" msgstr "yerleşik işlev" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Değişkenler" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Harekete geçirir" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (yerleşik değişken)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (yerleşik sınıf)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içindeki sınıf)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf yöntemi)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s sabit yöntemi)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "modülleri" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Kullanım dışı" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "sınıf yöntemi" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "sabit yöntemi" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s kopya nesne açıklaması, %s içindeki diğer örnek, bunlardan biri için :noindex: kullanın" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "çapraz referans %r için birden fazla hedef bulundu: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (kullanım dışı)" @@ -2834,19 +2844,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2854,76 +2864,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2960,56 +2970,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,30 +3040,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3512,6 +3528,13 @@ msgstr "atlandı" msgid "failed" msgstr "başarısız oldu" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 1300ef577c833d6f749b3dabc0e43f0050764696..8512441d2386d78bb3140ebd84340bf407a261e2 100644 GIT binary patch delta 20 bcmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Повертає" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Тип повернення" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функція" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "клас" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -2008,7 +2018,7 @@ msgstr "%s() (клас)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" @@ -2022,20 +2032,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "атрибут" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "модуль" @@ -2066,7 +2076,7 @@ msgstr "оператор" msgid "object" msgstr "об'єкт" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "виняткова ситуація" @@ -2078,92 +2088,92 @@ msgstr "вираз" msgid "built-in function" msgstr "вбудована функція" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (застарілий)" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index e27c945574d3121274b4c6b480be6ccd06d1d498..74020d3e8cf9e95d169ace722193690b63f0b711 100644 GIT binary patch delta 20 ccmX@7cTR7^9A0)KT?0d11EbB0c~^4+08Od}zW@LL delta 20 ccmX@7cTR7^9A0)qT|*;XBeTtmc~^4+08Q5h#sB~S diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 4952a6831e8..460c601bb21 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Các đề nghị nâng cao Python; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Tham số" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Trả về" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Kiểu trả về" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "biến" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "hàm" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "Ném" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "lớp" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" @@ -2008,7 +2018,7 @@ msgstr "%s() (lớp)" msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" @@ -2022,20 +2032,20 @@ msgstr "Đối số" msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "thuộc tính" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "mô-đun" @@ -2066,7 +2076,7 @@ msgstr "toán tử" msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "ngoại lệ" @@ -2078,92 +2088,92 @@ msgstr "câu lệnh" msgid "built-in function" msgstr "hàm dựng sẵn" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 7d78eb7129d6f609140adf6a1b68a67ef799bdaa..3e1bd2e0c75fe1d213120cb26a112b3f50e3d0ac 100644 GIT binary patch delta 10891 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 delta 10992 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 HU!DH}LrTBS diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 284e0ed26e4..8af4b596475 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" "PO-Revision-Date: 2021-12-12 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -149,7 +149,7 @@ msgstr "指令 %r 已注册,将被覆盖" msgid "role %r is already registered, it will be overridden" msgstr "角色 %r 已注册,将被覆盖" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "扩展 %s 不是并行读取安全的" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -170,12 +170,12 @@ msgid "" "explicit" msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "扩展 %s 不是并行写入安全的" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "执行顺序 %s" @@ -473,6 +473,16 @@ msgstr "扩展 %r 在其 setup() 函数中返回了一个不支持的对象; msgid "Python Enhancement Proposals; PEP %s" msgstr "Python 提高建议; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1208,7 +1218,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1885,7 +1895,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "参数" @@ -1894,12 +1904,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "返回" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "返回类型" @@ -1912,7 +1922,7 @@ msgid "variable" msgstr "变量" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "函数" @@ -1990,7 +2000,7 @@ msgid "Throws" msgstr "抛出" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "类" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" @@ -2022,7 +2032,7 @@ msgstr "%s() (类)" msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" @@ -2036,20 +2046,20 @@ msgstr "参数" msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "属性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "模块" @@ -2080,7 +2090,7 @@ msgstr "运算符" msgid "object" msgstr "对象" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "例外" @@ -2092,92 +2102,92 @@ msgstr "语句" msgid "built-in function" msgstr "內置函数" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "变量" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "重复的对象描述%s ,另一实例出现在使用 noindex 中:对它们其中的一个 %s" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (已移除)" @@ -2845,19 +2855,19 @@ msgstr "无效的 auto%s 签名(%r)" msgid "error while formatting arguments for %s: %s" msgstr "格式化 %s 参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "属性 %s 不存在,在对象 %s 上" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "autodoc:无法判断是否生成 %r 的文档。出现了下列异常:\n%s" +msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2865,76 +2875,76 @@ msgid "" "explicit module name)" msgstr "无法判断导入哪个模块来自动生成文档 %r(尝试在文档中使用“module”或“currentmodule”指令,或者显式给定模块名)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 名中的“::”无意义" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule %s 给定了函数签名参数或返回类型标注" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ 应是一个字符串列表,而不是 %r (出现在模块 %s 中) -- 已忽略__all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2971,56 +2981,62 @@ msgstr "autosummary:无法找到根文件 %r。检查你的 autosummary_genera msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "无法解析名称 %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "无法导入对象 %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate:无法找到文件 %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary 内部生成 .rst 文件,但是 source_suffix 中不包含 .rst,已跳过。" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, 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:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 生成 autosummary:%s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] 写入 %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[autosummary] failed to import %r:%s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3035,30 +3051,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n用 autosummary 指令生成 ReStructuredText\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的前端,它根据给定\n的输入文件中的 autosummary 指令生成 reStructuredText  文件\n\nautosummary 指令的格式见 Python 模块 ``sphinx.ext.autosummary`` 的文\n档,并且可以这样调出文档阅读::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "用于生成 rST 文件的源文件" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "输出目录" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "默认的文件名后缀(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "自定义模板目录(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "文档导入的成员(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3523,6 +3539,13 @@ msgstr "跳过" msgid "failed" msgstr "失败" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 3b311b40c6b19902d6ec2358a31bd5b2b3f5635e..cbe2739ac4bdc75318bfa0bb5c054e4294095671 100644 GIT binary patch delta 35 lcmeBW>1CPF%xV5n5dfn82><{9 delta 35 ncmeBW>1CPF%x\n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" From 6a6a4b580014ddc4e1b27b6cf656755decc6fa8c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 2 Jan 2022 00:27:07 +0900 Subject: [PATCH 134/192] i18n: meta strings are not translated with docutils-0.18 i18n feature for meta strings does not work if docutils-0.18 used. Note: Since docutils-0.18, patch for meta directive is no longer needed because it uses a picklable meta nodes; ``docutils.nodes.meta``. --- sphinx/addnodes.py | 7 +++++++ sphinx/directives/patches.py | 7 +++---- sphinx/search/__init__.py | 9 +++++---- sphinx/transforms/i18n.py | 7 ++++++- sphinx/util/nodes.py | 11 +++++++++-- 5 files changed, 30 insertions(+), 11 deletions(-) diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index dc8fae0ba35..5b63d22f55d 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -16,6 +16,13 @@ if TYPE_CHECKING: from sphinx.application import Sphinx +try: + from docutils.nodes import meta as docutils_meta # type: ignore +except ImportError: + # docutils-0.17 or older + from docutils.parsers.rst.directives.html import MetaBody + docutils_meta = MetaBody.meta + class document(nodes.document): """The document root element patched by Sphinx. diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index f01423a88d4..5308b283887 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -29,13 +29,10 @@ from sphinx.util.typing import OptionSpec try: - from docutils.nodes import meta as meta_node # type: ignore from docutils.parsers.rst.directives.misc import Meta as MetaBase # type: ignore except ImportError: # docutils-0.17 or older from docutils.parsers.rst.directives.html import Meta as MetaBase - from docutils.parsers.rst.directives.html import MetaBody - meta_node = MetaBody.meta if TYPE_CHECKING: from sphinx.application import Sphinx @@ -74,8 +71,10 @@ class Meta(MetaBase, SphinxDirective): def run(self) -> List[Node]: result = super().run() for node in result: + # for docutils-0.17 or older. Since docutils-0.18, patching is no longer needed + # because it uses picklable node; ``docutils.nodes.meta``. if (isinstance(node, nodes.pending) and - isinstance(node.details['nodes'][0], meta_node)): + isinstance(node.details['nodes'][0], addnodes.docutils_meta)): meta = node.details['nodes'][0] meta.source = self.env.doc2path(self.env.docname) meta.line = self.lineno diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index 16b9fb0ed12..28f3ea036e9 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -15,7 +15,7 @@ from typing import IO, Any, Dict, Iterable, List, Optional, Set, Tuple, Type from docutils import nodes -from docutils.nodes import Node +from docutils.nodes import Element, Node from sphinx import addnodes, package_dir from sphinx.environment import BuildEnvironment @@ -193,8 +193,9 @@ def __init__(self, document: nodes.document, lang: SearchLanguage) -> None: self.found_title_words: List[str] = [] self.lang = lang - def is_meta_keywords(self, node: addnodes.meta) -> bool: - if isinstance(node, addnodes.meta) and node.get('name') == 'keywords': + def is_meta_keywords(self, node: Element) -> bool: + if (isinstance(node, (addnodes.meta, addnodes.docutils_meta)) and + node.get('name') == 'keywords'): meta_lang = node.get('lang') if meta_lang is None: # lang not specified return True @@ -220,7 +221,7 @@ def dispatch_visit(self, node: Node) -> None: self.found_words.extend(self.lang.split(node.astext())) elif isinstance(node, nodes.title): self.found_title_words.extend(self.lang.split(node.astext())) - elif isinstance(node, addnodes.meta) and self.is_meta_keywords(node): + elif isinstance(node, Element) and self.is_meta_keywords(node): keywords = node['content'] keywords = [keyword.strip() for keyword in keywords.split(',')] self.found_words.extend(keywords) diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index cac69b74f7f..6e75286f869 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -234,13 +234,18 @@ def apply(self, **kwargs: Any) -> None: # update translatable nodes if isinstance(node, addnodes.translatable): - node.apply_translated_message(msg, msgstr) + node.apply_translated_message(msg, msgstr) # type: ignore continue # update meta nodes if isinstance(node, nodes.pending) and is_pending_meta(node): + # docutils-0.17 or older node.details['nodes'][0]['content'] = msgstr continue + elif isinstance(node, addnodes.docutils_meta): + # docutils-0.18+ + node['content'] = msgstr + continue if isinstance(node, nodes.image) and node.get('alt') == msg: node['alt'] = msgstr diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index 27a21af4bca..b6542f1d36d 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -233,9 +233,11 @@ def is_translatable(node: Node) -> bool: return False return True - if isinstance(node, addnodes.meta): + if is_pending_meta(node) or isinstance(node, addnodes.meta): + # docutils-0.17 or older return True - if is_pending_meta(node): + elif isinstance(node, addnodes.docutils_meta): + # docutils-0.18+ return True return False @@ -274,9 +276,14 @@ def extract_messages(doctree: Element) -> Iterable[Tuple[Element, str]]: else: msg = '' elif isinstance(node, META_TYPE_NODES): + # docutils-0.17 or older msg = node.rawcontent elif isinstance(node, nodes.pending) and is_pending_meta(node): + # docutils-0.17 or older msg = node.details['nodes'][0].rawcontent + elif isinstance(node, addnodes.docutils_meta): + # docutils-0.18+ + msg = node["content"] else: msg = node.rawsource.replace('\n', ' ').strip() From c16b36c499794bdf6cbef9fb312d835004f6652f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 2 Jan 2022 15:03:20 +0900 Subject: [PATCH 135/192] CI: Remove unused no longer needed PYTHONWARNINGS --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index c006fa5a6f3..824ab3f387b 100644 --- a/tox.ini +++ b/tox.ini @@ -25,7 +25,7 @@ deps = extras = test setenv = - PYTHONWARNINGS = all,ignore::ImportWarning:importlib._bootstrap_external,ignore::DeprecationWarning:site,ignore::DeprecationWarning:distutils,ignore::DeprecationWarning:pip._vendor.packaging.version + PYTHONWARNINGS = all PYTEST_ADDOPTS = {env:PYTEST_ADDOPTS:} --color yes commands= python -X dev -m pytest --durations 25 {posargs} From 05a898ecb4ff8e654a053a1ba5131715a4514812 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 2 Jan 2022 01:06:24 +0900 Subject: [PATCH 136/192] Migrate to Node.findall() from Node.traverse() Node.traverse() was marked as deprecated since docutils-0.18. Instead of it, Node.findall() has been added as successor of traverse(). This applies a patch to docutils-0.17 or older to be available Node.findall() and use it. --- sphinx/builders/__init__.py | 2 +- sphinx/builders/_epub_base.py | 16 +++++------ sphinx/builders/gettext.py | 2 +- sphinx/builders/html/__init__.py | 2 +- sphinx/builders/html/transforms.py | 2 +- sphinx/builders/latex/__init__.py | 8 +++--- sphinx/builders/latex/transforms.py | 24 ++++++++-------- sphinx/builders/linkcheck.py | 4 +-- sphinx/builders/manpage.py | 2 +- sphinx/builders/singlehtml.py | 2 +- sphinx/builders/texinfo.py | 4 +-- sphinx/builders/xml.py | 2 +- sphinx/directives/patches.py | 2 +- sphinx/domains/c.py | 2 +- sphinx/domains/citation.py | 4 +-- sphinx/domains/cpp.py | 2 +- sphinx/domains/index.py | 2 +- sphinx/domains/math.py | 2 +- sphinx/domains/std.py | 2 +- sphinx/environment/__init__.py | 2 +- sphinx/environment/adapters/toctree.py | 12 ++++---- sphinx/environment/collectors/asset.py | 4 +-- sphinx/environment/collectors/title.py | 2 +- sphinx/environment/collectors/toctree.py | 2 +- sphinx/ext/autosectionlabel.py | 2 +- sphinx/ext/autosummary/__init__.py | 2 +- sphinx/ext/doctest.py | 2 +- sphinx/ext/extlinks.py | 2 +- sphinx/ext/ifconfig.py | 2 +- sphinx/ext/linkcode.py | 2 +- sphinx/ext/todo.py | 6 ++-- sphinx/ext/viewcode.py | 6 ++-- sphinx/transforms/__init__.py | 26 ++++++++--------- sphinx/transforms/compact_bullet_list.py | 4 +-- sphinx/transforms/i18n.py | 28 +++++++++---------- sphinx/transforms/post_transforms/__init__.py | 6 ++-- sphinx/transforms/post_transforms/code.py | 6 ++-- sphinx/transforms/post_transforms/images.py | 2 +- sphinx/util/docutils.py | 10 +++++++ sphinx/util/nodes.py | 23 +++++++-------- sphinx/versioning.py | 6 ++-- sphinx/writers/latex.py | 4 +-- sphinx/writers/manpage.py | 4 +-- sphinx/writers/texinfo.py | 4 +-- sphinx/writers/text.py | 2 +- tests/test_directive_code.py | 2 +- tests/test_domain_js.py | 4 +-- tests/test_domain_std.py | 2 +- tests/test_ext_doctest.py | 4 +-- 49 files changed, 140 insertions(+), 129 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 93e256ebd80..4cdd748ebb7 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -176,7 +176,7 @@ def get_asset_paths(self) -> List[str]: def post_process_images(self, doctree: Node) -> None: """Pick the best candidate for all image URIs.""" images = ImageAdapter(self.env) - for node in doctree.traverse(nodes.image): + for node in doctree.findall(nodes.image): if '?' in node['candidates']: # don't rewrite nonlocal image URIs continue diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index ab4eda4dde5..45368797848 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -277,7 +277,7 @@ def update_node_id(node: Element) -> None: new_ids.append(new_id) node['ids'] = new_ids - for reference in tree.traverse(nodes.reference): + for reference in tree.findall(nodes.reference): if 'refuri' in reference: m = self.refuri_re.match(reference['refuri']) if m: @@ -285,14 +285,14 @@ def update_node_id(node: Element) -> None: if 'refid' in reference: reference['refid'] = self.fix_fragment('', reference['refid']) - for target in tree.traverse(nodes.target): + for target in tree.findall(nodes.target): update_node_id(target) next_node: Node = target.next_node(ascend=True) if isinstance(next_node, nodes.Element): update_node_id(next_node) - for desc_signature in tree.traverse(addnodes.desc_signature): + for desc_signature in tree.findall(addnodes.desc_signature): update_node_id(desc_signature) def add_visible_links(self, tree: nodes.document, show_urls: str = 'inline') -> None: @@ -323,14 +323,14 @@ def footnote_spot(tree: nodes.document) -> Tuple[Element, int]: # a) place them after the last existing footnote # b) place them after an (empty) Footnotes rubric # c) create an empty Footnotes rubric at the end of the document - fns = list(tree.traverse(nodes.footnote)) + fns = list(tree.findall(nodes.footnote)) if fns: fn = fns[-1] return fn.parent, fn.parent.index(fn) + 1 - for node in tree.traverse(nodes.rubric): + for node in tree.findall(nodes.rubric): if len(node) == 1 and node.astext() == FOOTNOTES_RUBRIC_NAME: return node.parent, node.parent.index(node) + 1 - doc = list(tree.traverse(nodes.document))[0] + doc = next(tree.findall(nodes.document)) rub = nodes.rubric() rub.append(nodes.Text(FOOTNOTES_RUBRIC_NAME)) doc.append(rub) @@ -339,10 +339,10 @@ def footnote_spot(tree: nodes.document) -> Tuple[Element, int]: if show_urls == 'no': return if show_urls == 'footnote': - doc = list(tree.traverse(nodes.document))[0] + doc = next(tree.findall(nodes.document)) fn_spot, fn_idx = footnote_spot(tree) nr = 1 - for node in list(tree.traverse(nodes.reference)): + for node in list(tree.findall(nodes.reference)): uri = node.get('refuri', '') if (uri.startswith('http:') or uri.startswith('https:') or uri.startswith('ftp:')) and uri not in node.astext(): diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 53660aa5a87..58d36cdab97 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -146,7 +146,7 @@ def compile_catalogs(self, catalogs: Set[CatalogInfo], message: str) -> None: def write_doc(self, docname: str, doctree: nodes.document) -> None: catalog = self.catalogs[docname_to_domain(docname, self.config.gettext_compact)] - for toctree in self.env.tocs[docname].traverse(addnodes.toctree): + for toctree in self.env.tocs[docname].findall(addnodes.toctree): for node, msg in extract_messages(toctree): node.uid = '' # type: ignore # Hack UUID model catalog.add(msg, node) diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index 4e12a172076..ac1fbbaec9d 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -866,7 +866,7 @@ def post_process_images(self, doctree: Node) -> None: Builder.post_process_images(self, doctree) if self.config.html_scaled_image_link and self.html_scaled_image_link: - for node in doctree.traverse(nodes.image): + for node in doctree.findall(nodes.image): if not any((key in node) for key in ['scale', 'width', 'height']): # resizing options are not given. scaled image link is available # only for resized images. diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index 8c50ce0c4a0..ea1d69d12c3 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -48,7 +48,7 @@ class KeyboardTransform(SphinxPostTransform): def run(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.literal, classes=["kbd"]) - for node in self.document.traverse(matcher): # type: nodes.literal + for node in self.document.findall(matcher): # type: nodes.literal parts = self.pattern.split(node[-1].astext()) if len(parts) == 1 or self.is_multiwords_key(parts): continue diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index aa707bd5b2f..d7156b796b8 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -280,7 +280,7 @@ def write(self, *ignored: Any) -> None: encoding='utf-8', overwrite_if_changed=True) with progress_message(__("processing %s") % targetname): doctree = self.env.get_doctree(docname) - toctree = next(iter(doctree.traverse(addnodes.toctree)), None) + toctree = next(doctree.findall(addnodes.toctree), None) if toctree and toctree.get('maxdepth') > 0: tocdepth = toctree.get('maxdepth') else: @@ -310,7 +310,7 @@ def write(self, *ignored: Any) -> None: def get_contentsname(self, indexfile: str) -> str: tree = self.env.get_doctree(indexfile) contentsname = None - for toctree in tree.traverse(addnodes.toctree): + for toctree in tree.findall(addnodes.toctree): if 'caption' in toctree: contentsname = toctree['caption'] break @@ -338,7 +338,7 @@ def assemble_doctree(self, indexfile: str, toctree_only: bool, appendices: List[ new_sect += nodes.title('', '') new_tree += new_sect - for node in tree.traverse(addnodes.toctree): + for node in tree.findall(addnodes.toctree): new_sect += node tree = new_tree largetree = inline_all_toctrees(self, self.docnames, indexfile, tree, @@ -353,7 +353,7 @@ def assemble_doctree(self, indexfile: str, toctree_only: bool, appendices: List[ self.env.resolve_references(largetree, indexfile, self) # resolve :ref:s to distant tex files -- we can't add a cross-reference, # but append the document name - for pendingnode in largetree.traverse(addnodes.pending_xref): + for pendingnode in largetree.findall(addnodes.pending_xref): docname = pendingnode['refdocname'] sectname = pendingnode['refsectname'] newnodes: List[Node] = [nodes.emphasis(sectname, sectname)] diff --git a/sphinx/builders/latex/transforms.py b/sphinx/builders/latex/transforms.py index 343c36cea2b..b12882df68e 100644 --- a/sphinx/builders/latex/transforms.py +++ b/sphinx/builders/latex/transforms.py @@ -33,7 +33,7 @@ class FootnoteDocnameUpdater(SphinxTransform): def apply(self, **kwargs: Any) -> None: matcher = NodeMatcher(*self.TARGET_NODES) - for node in self.document.traverse(matcher): # type: Element + for node in self.document.findall(matcher): # type: Element node['docname'] = self.env.docname @@ -45,7 +45,7 @@ class SubstitutionDefinitionsRemover(SphinxPostTransform): formats = ('latex',) def run(self, **kwargs: Any) -> None: - for node in list(self.document.traverse(nodes.substitution_definition)): + for node in list(self.document.findall(nodes.substitution_definition)): node.parent.remove(node) @@ -81,7 +81,7 @@ def expand_show_urls(self) -> None: if show_urls is False or show_urls == 'no': return - for node in list(self.document.traverse(nodes.reference)): + for node in list(self.document.findall(nodes.reference)): uri = node.get('refuri', '') if uri.startswith(URI_SCHEMES): if uri.startswith('mailto:'): @@ -348,7 +348,7 @@ class LaTeXFootnoteTransform(SphinxPostTransform): formats = ('latex',) def run(self, **kwargs: Any) -> None: - footnotes = list(self.document.traverse(nodes.footnote)) + footnotes = list(self.document.findall(nodes.footnote)) for node in footnotes: node.parent.remove(node) @@ -423,7 +423,7 @@ def depart_thead(self, node: nodes.thead) -> None: self.unrestrict(node) def depart_table(self, node: nodes.table) -> None: - tbody = list(node.traverse(nodes.tbody))[0] + tbody = next(node.findall(nodes.tbody)) for footnote in reversed(self.table_footnotes): fntext = footnotetext('', *footnote.children, ids=footnote['ids']) tbody.insert(0, fntext) @@ -501,7 +501,7 @@ class BibliographyTransform(SphinxPostTransform): def run(self, **kwargs: Any) -> None: citations = thebibliography() - for node in list(self.document.traverse(nodes.citation)): + for node in list(self.document.findall(nodes.citation)): node.parent.remove(node) citations += node @@ -521,7 +521,7 @@ class CitationReferenceTransform(SphinxPostTransform): def run(self, **kwargs: Any) -> None: domain = cast(CitationDomain, self.env.get_domain('citation')) matcher = NodeMatcher(addnodes.pending_xref, refdomain='citation', reftype='ref') - for node in self.document.traverse(matcher): # type: addnodes.pending_xref + for node in self.document.findall(matcher): # type: addnodes.pending_xref docname, labelid, _ = domain.citations.get(node['reftarget'], ('', '', 0)) if docname: citation_ref = nodes.citation_reference('', '', *node.children, @@ -540,7 +540,7 @@ class MathReferenceTransform(SphinxPostTransform): def run(self, **kwargs: Any) -> None: equations = self.env.get_domain('math').data['objects'] - for node in self.document.traverse(addnodes.pending_xref): + for node in self.document.findall(addnodes.pending_xref): if node['refdomain'] == 'math' and node['reftype'] in ('eq', 'numref'): docname, _ = equations.get(node['reftarget'], (None, None)) if docname: @@ -555,7 +555,7 @@ class LiteralBlockTransform(SphinxPostTransform): def run(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.container, literal_block=True) - for node in self.document.traverse(matcher): # type: nodes.container + for node in self.document.findall(matcher): # type: nodes.container newnode = captioned_literal_block('', *node.children, **node.attributes) node.replace_self(newnode) @@ -566,7 +566,7 @@ class DocumentTargetTransform(SphinxPostTransform): formats = ('latex',) def run(self, **kwargs: Any) -> None: - for node in self.document.traverse(addnodes.start_of_file): + for node in self.document.findall(addnodes.start_of_file): section = node.next_node(nodes.section) if section: section['ids'].append(':doc') # special label for :doc: @@ -602,9 +602,9 @@ class IndexInSectionTitleTransform(SphinxPostTransform): formats = ('latex',) def run(self, **kwargs: Any) -> None: - for node in list(self.document.traverse(nodes.title)): + for node in list(self.document.findall(nodes.title)): if isinstance(node.parent, nodes.section): - for i, index in enumerate(list(node.traverse(addnodes.index))): + for i, index in enumerate(node.findall(addnodes.index)): # move the index node next to the section title node.remove(index) node.parent.insert(i + 1, index) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 1f9d601e413..61b6b45f954 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -650,7 +650,7 @@ def run(self, **kwargs: Any) -> None: hyperlinks = builder.hyperlinks # reference nodes - for refnode in self.document.traverse(nodes.reference): + for refnode in self.document.findall(nodes.reference): if 'refuri' not in refnode: continue uri = refnode['refuri'] @@ -664,7 +664,7 @@ def run(self, **kwargs: Any) -> None: hyperlinks[uri] = uri_info # image nodes - for imgnode in self.document.traverse(nodes.image): + for imgnode in self.document.findall(nodes.image): uri = imgnode['candidates'].get('?') if uri and '://' in uri: newuri = self.app.emit_firstresult('linkcheck-process-uri', uri) diff --git a/sphinx/builders/manpage.py b/sphinx/builders/manpage.py index 88c2c9db57e..c942cfa8666 100644 --- a/sphinx/builders/manpage.py +++ b/sphinx/builders/manpage.py @@ -98,7 +98,7 @@ def write(self, *ignored: Any) -> None: logger.info('} ', nonl=True) self.env.resolve_references(largetree, docname, self) # remove pending_xref nodes - for pendingnode in largetree.traverse(addnodes.pending_xref): + for pendingnode in largetree.findall(addnodes.pending_xref): pendingnode.replace_self(pendingnode.children) docwriter.write(largetree, destination) diff --git a/sphinx/builders/singlehtml.py b/sphinx/builders/singlehtml.py index 344e062b98a..09db8d2b933 100644 --- a/sphinx/builders/singlehtml.py +++ b/sphinx/builders/singlehtml.py @@ -54,7 +54,7 @@ def get_relative_uri(self, from_: str, to: str, typ: str = None) -> str: def fix_refuris(self, tree: Node) -> None: # fix refuris with double anchor fname = self.config.root_doc + self.out_suffix - for refnode in tree.traverse(nodes.reference): + for refnode in tree.findall(nodes.reference): if 'refuri' not in refnode: continue refuri = refnode['refuri'] diff --git a/sphinx/builders/texinfo.py b/sphinx/builders/texinfo.py index 4a2c58143f7..f07cd2516c8 100644 --- a/sphinx/builders/texinfo.py +++ b/sphinx/builders/texinfo.py @@ -138,7 +138,7 @@ def assemble_doctree(self, indexfile: str, toctree_only: bool, appendices: List[ new_sect += nodes.title('', '') new_tree += new_sect - for node in tree.traverse(addnodes.toctree): + for node in tree.findall(addnodes.toctree): new_sect += node tree = new_tree largetree = inline_all_toctrees(self, self.docnames, indexfile, tree, @@ -152,7 +152,7 @@ def assemble_doctree(self, indexfile: str, toctree_only: bool, appendices: List[ logger.info(__("resolving references...")) self.env.resolve_references(largetree, indexfile, self) # TODO: add support for external :ref:s - for pendingnode in largetree.traverse(addnodes.pending_xref): + for pendingnode in largetree.findall(addnodes.pending_xref): docname = pendingnode['refdocname'] sectname = pendingnode['refsectname'] newnodes: List[Node] = [nodes.emphasis(sectname, sectname)] diff --git a/sphinx/builders/xml.py b/sphinx/builders/xml.py index 9dd3afb544e..fdef142596b 100644 --- a/sphinx/builders/xml.py +++ b/sphinx/builders/xml.py @@ -71,7 +71,7 @@ def write_doc(self, docname: str, doctree: Node) -> None: # work around multiple string % tuple issues in docutils; # replace tuples in attribute values with lists doctree = doctree.deepcopy() - for node in doctree.traverse(nodes.Element): + for node in doctree.findall(nodes.Element): for att, value in node.attributes.items(): if isinstance(value, tuple): node.attributes[att] = list(value) diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 5308b283887..d4d498725c4 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -83,7 +83,7 @@ def run(self) -> List[Node]: # docutils' meta nodes aren't picklable because the class is nested meta.__class__ = addnodes.meta - return result + return result # type: ignore class RSTTable(tables.RSTTable): diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index 196937692be..6ed4f155994 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -3556,7 +3556,7 @@ def _render_symbol(self, s: Symbol, maxdepth: int, skipThis: bool, return nodes def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(AliasNode): + for node in self.document.findall(AliasNode): node = cast(AliasNode, node) sig = node.sig parentKey = node.parentKey diff --git a/sphinx/domains/citation.py b/sphinx/domains/citation.py index ca3d6082ebd..f68d324bf63 100644 --- a/sphinx/domains/citation.py +++ b/sphinx/domains/citation.py @@ -112,7 +112,7 @@ class CitationDefinitionTransform(SphinxTransform): def apply(self, **kwargs: Any) -> None: domain = cast(CitationDomain, self.env.get_domain('citation')) - for node in self.document.traverse(nodes.citation): + for node in self.document.findall(nodes.citation): # register citation node to domain node['docname'] = self.env.docname domain.note_citation(node) @@ -131,7 +131,7 @@ class CitationReferenceTransform(SphinxTransform): def apply(self, **kwargs: Any) -> None: domain = cast(CitationDomain, self.env.get_domain('citation')) - for node in self.document.traverse(nodes.citation_reference): + for node in self.document.findall(nodes.citation_reference): target = node.astext() ref = pending_xref(target, refdomain='citation', reftype='ref', reftarget=target, refwarn=True, diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 8733a19cff1..c8625e81d76 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -7459,7 +7459,7 @@ def _render_symbol(self, s: Symbol, maxdepth: int, skipThis: bool, return nodes def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(AliasNode): + for node in self.document.findall(AliasNode): node = cast(AliasNode, node) sig = node.sig parentKey = node.parentKey diff --git a/sphinx/domains/index.py b/sphinx/domains/index.py index 975992b8397..7dbc1bb5aaf 100644 --- a/sphinx/domains/index.py +++ b/sphinx/domains/index.py @@ -48,7 +48,7 @@ def merge_domaindata(self, docnames: Iterable[str], otherdata: Dict) -> None: def process_doc(self, env: BuildEnvironment, docname: str, document: Node) -> None: """Process a document after it is read by the environment.""" entries = self.entries.setdefault(env.docname, []) - for node in list(document.traverse(addnodes.index)): + for node in list(document.findall(addnodes.index)): try: for entry in node['entries']: split_index_msg(entry[0], entry[1]) diff --git a/sphinx/domains/math.py b/sphinx/domains/math.py index ebc4da371e2..78b7784a79d 100644 --- a/sphinx/domains/math.py +++ b/sphinx/domains/math.py @@ -78,7 +78,7 @@ def process_doc(self, env: BuildEnvironment, docname: str, def math_node(node: Node) -> bool: return isinstance(node, (nodes.math, nodes.math_block)) - self.data['has_equations'][docname] = any(document.traverse(math_node)) + self.data['has_equations'][docname] = any(document.findall(math_node)) def clear_doc(self, docname: str) -> None: for equation_id, (doc, eqno) in list(self.equations.items()): diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index bd02f1c76dc..11a95e13b1e 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -776,7 +776,7 @@ def process_doc(self, env: "BuildEnvironment", docname: str, document: nodes.doc elif self.is_enumerable_node(node): sectname = self.get_numfig_title(node) else: - toctree = next(iter(node.traverse(addnodes.toctree)), None) + toctree = next(node.findall(addnodes.toctree), None) if toctree and toctree.get('caption'): sectname = toctree.get('caption') else: diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index 0f7dbd8c706..9dde7b407d8 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -535,7 +535,7 @@ def get_and_resolve_doctree(self, docname: str, builder: "Builder", self.apply_post_transforms(doctree, docname) # now, resolve all toctree nodes - for toctreenode in doctree.traverse(addnodes.toctree): + for toctreenode in doctree.findall(addnodes.toctree): result = TocTree(self).resolve(docname, builder, toctreenode, prune=prune_toctrees, includehidden=includehidden) diff --git a/sphinx/environment/adapters/toctree.py b/sphinx/environment/adapters/toctree.py index 5a9e26d6d5f..962e731435a 100644 --- a/sphinx/environment/adapters/toctree.py +++ b/sphinx/environment/adapters/toctree.py @@ -161,7 +161,7 @@ def _entries_from_toctree(toctreenode: addnodes.toctree, parents: List[str], process_only_nodes(toc, builder.tags) if title and toc.children and len(toc.children) == 1: child = toc.children[0] - for refnode in child.traverse(nodes.reference): + for refnode in child.findall(nodes.reference): if refnode['refuri'] == ref and \ not refnode['anchorname']: refnode.children = [nodes.Text(title)] @@ -193,13 +193,13 @@ def _entries_from_toctree(toctreenode: addnodes.toctree, parents: List[str], for toplevel in children: # nodes with length 1 don't have any children anyway if len(toplevel) > 1: - subtrees = list(toplevel.traverse(addnodes.toctree)) + subtrees = list(toplevel.findall(addnodes.toctree)) if subtrees: toplevel[1][:] = subtrees # type: ignore else: toplevel.pop(1) # resolve all sub-toctrees - for subtocnode in list(toc.traverse(addnodes.toctree)): + for subtocnode in list(toc.findall(addnodes.toctree)): if not (subtocnode.get('hidden', False) and not includehidden): i = subtocnode.parent.index(subtocnode) + 1 @@ -257,7 +257,7 @@ def _entries_from_toctree(toctreenode: addnodes.toctree, parents: List[str], # set the target paths in the toctrees (they are not known at TOC # generation time) - for refnode in newnode.traverse(nodes.reference): + for refnode in newnode.findall(nodes.reference): if not url_re.match(refnode['refuri']): refnode['refuri'] = builder.get_relative_uri( docname, refnode['refuri']) + refnode['anchorname'] @@ -308,7 +308,7 @@ def get_toc_for(self, docname: str, builder: "Builder") -> Node: # renders to nothing return nodes.paragraph() process_only_nodes(toc, builder.tags) - for node in toc.traverse(nodes.reference): + for node in toc.findall(nodes.reference): node['refuri'] = node['anchorname'] or '#' return toc @@ -324,7 +324,7 @@ def get_toctree_for(self, docname: str, builder: "Builder", collapse: bool, else: kwargs['maxdepth'] = int(kwargs['maxdepth']) kwargs['collapse'] = collapse - for toctreenode in doctree.traverse(addnodes.toctree): + for toctreenode in doctree.findall(addnodes.toctree): toctree = self.resolve(docname, builder, toctreenode, prune=True, **kwargs) if toctree: toctrees.append(toctree) diff --git a/sphinx/environment/collectors/asset.py b/sphinx/environment/collectors/asset.py index 44a1248ccc1..9530b3bd94d 100644 --- a/sphinx/environment/collectors/asset.py +++ b/sphinx/environment/collectors/asset.py @@ -43,7 +43,7 @@ def process_doc(self, app: Sphinx, doctree: nodes.document) -> None: """Process and rewrite image URIs.""" docname = app.env.docname - for node in doctree.traverse(nodes.image): + for node in doctree.findall(nodes.image): # Map the mimetype to the corresponding image. The writer may # choose the best image from these candidates. The special key * is # set if there is only single candidate to be used by a writer. @@ -124,7 +124,7 @@ def merge_other(self, app: Sphinx, env: BuildEnvironment, def process_doc(self, app: Sphinx, doctree: nodes.document) -> None: """Process downloadable file paths. """ - for node in doctree.traverse(addnodes.download_reference): + for node in doctree.findall(addnodes.download_reference): targetname = node['reftarget'] if '://' in targetname: node['refuri'] = targetname diff --git a/sphinx/environment/collectors/title.py b/sphinx/environment/collectors/title.py index f522231c838..8c285f3239c 100644 --- a/sphinx/environment/collectors/title.py +++ b/sphinx/environment/collectors/title.py @@ -43,7 +43,7 @@ def process_doc(self, app: Sphinx, doctree: nodes.document) -> None: longtitlenode = nodes.title() longtitlenode += nodes.Text(doctree['title']) # look for first section title and use that as the title - for node in doctree.traverse(nodes.section): + for node in doctree.findall(nodes.section): visitor = SphinxContentsFilter(doctree) node[0].walkabout(visitor) titlenode += visitor.get_entry_text() diff --git a/sphinx/environment/collectors/toctree.py b/sphinx/environment/collectors/toctree.py index 03270336585..250e16aa22d 100644 --- a/sphinx/environment/collectors/toctree.py +++ b/sphinx/environment/collectors/toctree.py @@ -196,7 +196,7 @@ def _walk_toctree(toctreenode: addnodes.toctree, depth: int) -> None: for docname in env.numbered_toctrees: assigned.add(docname) doctree = env.get_doctree(docname) - for toctreenode in doctree.traverse(addnodes.toctree): + for toctreenode in doctree.findall(addnodes.toctree): depth = toctreenode.get('numbered', 0) if depth: # every numbered toctree gets new numbering diff --git a/sphinx/ext/autosectionlabel.py b/sphinx/ext/autosectionlabel.py index 0fe1857e2d0..e8efcb076c3 100644 --- a/sphinx/ext/autosectionlabel.py +++ b/sphinx/ext/autosectionlabel.py @@ -33,7 +33,7 @@ def get_node_depth(node: Node) -> int: def register_sections_as_label(app: Sphinx, document: Node) -> None: domain = cast(StandardDomain, app.env.get_domain('std')) - for node in document.traverse(nodes.section): + for node in document.findall(nodes.section): if (app.config.autosectionlabel_maxdepth and get_node_depth(node) >= app.config.autosectionlabel_maxdepth): continue diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index e3a04d3c76d..36dc230193e 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -587,7 +587,7 @@ def parse(doc: List[str], settings: Any) -> nodes.document: node = parse(doc, document.settings) if summary.endswith(WELL_KNOWN_ABBREVIATIONS): pass - elif not list(node.traverse(nodes.system_message)): + elif not any(node.findall(nodes.system_message)): # considered as that splitting by period does not break inline markups break diff --git a/sphinx/ext/doctest.py b/sphinx/ext/doctest.py index 990bf33efc4..490516d63f5 100644 --- a/sphinx/ext/doctest.py +++ b/sphinx/ext/doctest.py @@ -422,7 +422,7 @@ def condition(node: Node) -> bool: def condition(node: Node) -> bool: return isinstance(node, (nodes.literal_block, nodes.comment)) \ and 'testnodetype' in node - for node in doctree.traverse(condition): # type: Element + for node in doctree.findall(condition): # type: Element if self.skipped(node): continue diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 1ca428cc051..eb5c474d504 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -55,7 +55,7 @@ class ExternalLinksChecker(SphinxPostTransform): default_priority = 500 def run(self, **kwargs: Any) -> None: - for refnode in self.document.traverse(nodes.reference): + for refnode in self.document.findall(nodes.reference): self.check_uri(refnode) def check_uri(self, refnode: nodes.reference) -> None: diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index f14300838a6..50a2b203f82 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -56,7 +56,7 @@ def process_ifconfig_nodes(app: Sphinx, doctree: nodes.document, docname: str) - ns = {confval.name: confval.value for confval in app.config} ns.update(app.config.__dict__.copy()) ns['builder'] = app.builder.name - for node in doctree.traverse(ifconfig): + for node in doctree.findall(ifconfig): try: res = eval(node['expr'], ns) except Exception as err: diff --git a/sphinx/ext/linkcode.py b/sphinx/ext/linkcode.py index b9c165ca497..6ae8284084d 100644 --- a/sphinx/ext/linkcode.py +++ b/sphinx/ext/linkcode.py @@ -39,7 +39,7 @@ def doctree_read(app: Sphinx, doctree: Node) -> None: 'js': ['object', 'fullname'], } - for objnode in list(doctree.traverse(addnodes.desc)): + for objnode in list(doctree.findall(addnodes.desc)): domain = objnode.get('domain') uris: Set[str] = set() for signode in objnode: diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index dd743402235..3b8ba19247f 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -93,7 +93,7 @@ def merge_domaindata(self, docnames: List[str], otherdata: Dict) -> None: def process_doc(self, env: BuildEnvironment, docname: str, document: nodes.document) -> None: todos = self.todos.setdefault(docname, []) - for todo in document.traverse(todo_node): + for todo in document.findall(todo_node): env.app.emit('todo-defined', todo) todos.append(todo) @@ -131,7 +131,7 @@ def __init__(self, app: Sphinx, doctree: nodes.document, docname: str) -> None: def process(self, doctree: nodes.document, docname: str) -> None: todos: List[todo_node] = sum(self.domain.todos.values(), []) - for node in list(doctree.traverse(todolist)): + for node in list(doctree.findall(todolist)): if not self.config.todo_include_todos: node.parent.remove(node) continue @@ -184,7 +184,7 @@ def create_todo_reference(self, todo: todo_node, docname: str) -> nodes.paragrap def resolve_reference(self, todo: todo_node, docname: str) -> None: """Resolve references in the todo content.""" - for node in todo.traverse(addnodes.pending_xref): + for node in todo.findall(addnodes.pending_xref): if 'refdoc' in node: node['refdoc'] = docname diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py index d7eb33fc608..54274ac04a2 100644 --- a/sphinx/ext/viewcode.py +++ b/sphinx/ext/viewcode.py @@ -108,7 +108,7 @@ def has_tag(modname: str, fullname: str, docname: str, refname: str) -> bool: return False - for objnode in list(doctree.traverse(addnodes.desc)): + for objnode in list(doctree.findall(addnodes.desc)): if objnode.get('domain') != 'py': continue names: Set[str] = set() @@ -184,14 +184,14 @@ def run(self, **kwargs: Any) -> None: self.remove_viewcode_anchors() def convert_viewcode_anchors(self) -> None: - for node in self.document.traverse(viewcode_anchor): + for node in self.document.findall(viewcode_anchor): anchor = nodes.inline('', _('[source]'), classes=['viewcode-link']) refnode = make_refnode(self.app.builder, node['refdoc'], node['reftarget'], node['refid'], anchor) node.replace_self(refnode) def remove_viewcode_anchors(self) -> None: - for node in list(self.document.traverse(viewcode_anchor)): + for node in list(self.document.findall(viewcode_anchor)): node.parent.remove(node) diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index e122a69b43f..f1359dfadc4 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -107,7 +107,7 @@ class DefaultSubstitutions(SphinxTransform): def apply(self, **kwargs: Any) -> None: # only handle those not otherwise defined in the document to_handle = default_substitutions - set(self.document.substitution_defs) - for ref in self.document.traverse(nodes.substitution_reference): + for ref in self.document.findall(nodes.substitution_reference): refname = ref['refname'] if refname in to_handle: text = self.config[refname] @@ -128,7 +128,7 @@ class MoveModuleTargets(SphinxTransform): default_priority = 210 def apply(self, **kwargs: Any) -> None: - for node in list(self.document.traverse(nodes.target)): + for node in list(self.document.findall(nodes.target)): if not node['ids']: continue if ('ismod' in node and @@ -147,12 +147,12 @@ class HandleCodeBlocks(SphinxTransform): def apply(self, **kwargs: Any) -> None: # move doctest blocks out of blockquotes - for node in self.document.traverse(nodes.block_quote): + for node in self.document.findall(nodes.block_quote): if all(isinstance(child, nodes.doctest_block) for child in node.children): node.replace_self(node.children) # combine successive doctest blocks - # for node in self.document.traverse(nodes.doctest_block): + # for node in self.document.findall(nodes.doctest_block): # if node not in node.parent.children: # continue # parindex = node.parent.index(node) @@ -172,7 +172,7 @@ class AutoNumbering(SphinxTransform): def apply(self, **kwargs: Any) -> None: domain: StandardDomain = self.env.get_domain('std') - for node in self.document.traverse(nodes.Element): + for node in self.document.findall(nodes.Element): if (domain.is_enumerable_node(node) and domain.get_numfig_title(node) is not None and node['ids'] == []): @@ -186,7 +186,7 @@ class SortIds(SphinxTransform): default_priority = 261 def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(nodes.section): + for node in self.document.findall(nodes.section): if len(node['ids']) > 1 and node['ids'][0].startswith('id'): node['ids'] = node['ids'][1:] + [node['ids'][0]] @@ -207,7 +207,7 @@ class ApplySourceWorkaround(SphinxTransform): default_priority = 10 def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(): # type: Node + for node in self.document.findall(): # type: Node if isinstance(node, (nodes.TextElement, nodes.image, nodes.topic)): apply_source_workaround(node) @@ -219,7 +219,7 @@ class AutoIndexUpgrader(SphinxTransform): default_priority = 210 def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(addnodes.index): + for node in self.document.findall(addnodes.index): if 'entries' in node and any(len(entry) == 4 for entry in node['entries']): msg = __('4 column based index found. ' 'It might be a bug of extensions you use: %r') % node['entries'] @@ -244,7 +244,7 @@ def apply(self, **kwargs: Any) -> None: def is_translatable_node(node: Node) -> bool: return isinstance(node, tuple(target_nodes)) - for node in self.document.traverse(is_translatable_node): # type: Element + for node in self.document.findall(is_translatable_node): # type: Element node['translatable'] = True @@ -276,7 +276,7 @@ class DoctestTransform(SphinxTransform): default_priority = 500 def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(nodes.doctest_block): + for node in self.document.findall(nodes.doctest_block): node['classes'].append('doctest') @@ -293,7 +293,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None: def apply(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.table, nodes.figure) - for node in self.document.traverse(matcher): # type: Element + for node in self.document.findall(matcher): # type: Element node.setdefault('align', 'default') @@ -303,7 +303,7 @@ class FilterSystemMessages(SphinxTransform): def apply(self, **kwargs: Any) -> None: filterlevel = 2 if self.config.keep_warnings else 5 - for node in list(self.document.traverse(nodes.system_message)): + for node in list(self.document.findall(nodes.system_message)): if node['level'] < filterlevel: logger.debug('%s [filtered system message]', node.astext()) node.parent.remove(node) @@ -392,7 +392,7 @@ class ManpageLink(SphinxTransform): default_priority = 999 def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(addnodes.manpage): + for node in self.document.findall(addnodes.manpage): manpage = ' '.join([str(x) for x in node.children if isinstance(x, nodes.Text)]) pattern = r'^(?P(?P.+)[\(\.](?P
[1-9]\w*)?\)?)$' # noqa diff --git a/sphinx/transforms/compact_bullet_list.py b/sphinx/transforms/compact_bullet_list.py index b43d0fb3e92..e39ac97d1c7 100644 --- a/sphinx/transforms/compact_bullet_list.py +++ b/sphinx/transforms/compact_bullet_list.py @@ -74,9 +74,9 @@ def check_refonly_list(node: Node) -> bool: else: return True - for node in self.document.traverse(nodes.bullet_list): + for node in self.document.findall(nodes.bullet_list): if check_refonly_list(node): - for item in node.traverse(nodes.list_item): + for item in node.findall(nodes.list_item): para = cast(nodes.paragraph, item[0]) ref = cast(nodes.reference, para[0]) compact_para = addnodes.compact_paragraph() diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index 6e75286f869..08dcbe158cc 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -89,7 +89,7 @@ class PreserveTranslatableMessages(SphinxTransform): default_priority = 10 # this MUST be invoked before Locale transform def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(addnodes.translatable): + for node in self.document.findall(addnodes.translatable): node.preserve_original_messages() @@ -199,7 +199,7 @@ def apply(self, **kwargs: Any) -> None: # replace target's refname to new target name matcher = NodeMatcher(nodes.target, refname=old_name) - for old_target in self.document.traverse(matcher): # type: nodes.target + for old_target in self.document.findall(matcher): # type: nodes.target old_target['refname'] = new_name processed = True @@ -301,8 +301,8 @@ def list_replace_or_append(lst: List[N], old: N, new: N) -> None: lst.append(new) is_autofootnote_ref = NodeMatcher(nodes.footnote_reference, auto=Any) - old_foot_refs: List[nodes.footnote_reference] = list(node.traverse(is_autofootnote_ref)) # NOQA - new_foot_refs: List[nodes.footnote_reference] = list(patch.traverse(is_autofootnote_ref)) # NOQA + old_foot_refs: List[nodes.footnote_reference] = list(node.findall(is_autofootnote_ref)) # NOQA + new_foot_refs: List[nodes.footnote_reference] = list(patch.findall(is_autofootnote_ref)) # NOQA if len(old_foot_refs) != len(new_foot_refs): old_foot_ref_rawsources = [ref.rawsource for ref in old_foot_refs] new_foot_ref_rawsources = [ref.rawsource for ref in new_foot_refs] @@ -344,8 +344,8 @@ def list_replace_or_append(lst: List[N], old: N, new: N) -> None: # * use translated refname for section refname. # * inline reference "`Python <...>`_" has no 'refname'. is_refnamed_ref = NodeMatcher(nodes.reference, refname=Any) - old_refs: List[nodes.reference] = list(node.traverse(is_refnamed_ref)) - new_refs: List[nodes.reference] = list(patch.traverse(is_refnamed_ref)) + old_refs: List[nodes.reference] = list(node.findall(is_refnamed_ref)) + new_refs: List[nodes.reference] = list(patch.findall(is_refnamed_ref)) if len(old_refs) != len(new_refs): old_ref_rawsources = [ref.rawsource for ref in old_refs] new_ref_rawsources = [ref.rawsource for ref in new_refs] @@ -371,8 +371,8 @@ def list_replace_or_append(lst: List[N], old: N, new: N) -> None: # refnamed footnote should use original 'ids'. is_refnamed_footnote_ref = NodeMatcher(nodes.footnote_reference, refname=Any) - old_foot_refs = list(node.traverse(is_refnamed_footnote_ref)) - new_foot_refs = list(patch.traverse(is_refnamed_footnote_ref)) + old_foot_refs = list(node.findall(is_refnamed_footnote_ref)) + new_foot_refs = list(patch.findall(is_refnamed_footnote_ref)) refname_ids_map: Dict[str, List[str]] = {} if len(old_foot_refs) != len(new_foot_refs): old_foot_ref_rawsources = [ref.rawsource for ref in old_foot_refs] @@ -390,8 +390,8 @@ def list_replace_or_append(lst: List[N], old: N, new: N) -> None: # citation should use original 'ids'. is_citation_ref = NodeMatcher(nodes.citation_reference, refname=Any) - old_cite_refs: List[nodes.citation_reference] = list(node.traverse(is_citation_ref)) # NOQA - new_cite_refs: List[nodes.citation_reference] = list(patch.traverse(is_citation_ref)) # NOQA + old_cite_refs: List[nodes.citation_reference] = list(node.findall(is_citation_ref)) + new_cite_refs: List[nodes.citation_reference] = list(patch.findall(is_citation_ref)) # NOQA refname_ids_map = {} if len(old_cite_refs) != len(new_cite_refs): old_cite_ref_rawsources = [ref.rawsource for ref in old_cite_refs] @@ -410,8 +410,8 @@ def list_replace_or_append(lst: List[N], old: N, new: N) -> None: # Original pending_xref['reftarget'] contain not-translated # target name, new pending_xref must use original one. # This code restricts to change ref-targets in the translation. - old_xrefs = list(node.traverse(addnodes.pending_xref)) - new_xrefs = list(patch.traverse(addnodes.pending_xref)) + old_xrefs = list(node.findall(addnodes.pending_xref)) + new_xrefs = list(patch.findall(addnodes.pending_xref)) xref_reftarget_map = {} if len(old_xrefs) != len(new_xrefs): old_xref_rawsources = [xref.rawsource for xref in old_xrefs] @@ -477,7 +477,7 @@ def get_ref_key(node: addnodes.pending_xref) -> Optional[Tuple[str, str, str]]: node['entries'] = new_entries # remove translated attribute that is used for avoiding double translation. - for translated in self.document.traverse(NodeMatcher(translated=Any)): # type: Element # NOQA + for translated in self.document.findall(NodeMatcher(translated=Any)): # type: Element # NOQA translated.delattr('translated') @@ -493,7 +493,7 @@ def apply(self, **kwargs: Any) -> None: return matcher = NodeMatcher(nodes.inline, translatable=Any) - for inline in list(self.document.traverse(matcher)): # type: nodes.inline + for inline in list(self.document.findall(matcher)): # type: nodes.inline inline.parent.remove(inline) inline.parent += inline.children diff --git a/sphinx/transforms/post_transforms/__init__.py b/sphinx/transforms/post_transforms/__init__.py index 098f004c7fc..df2eeecbb6a 100644 --- a/sphinx/transforms/post_transforms/__init__.py +++ b/sphinx/transforms/post_transforms/__init__.py @@ -67,7 +67,7 @@ class ReferencesResolver(SphinxPostTransform): default_priority = 10 def run(self, **kwargs: Any) -> None: - for node in self.document.traverse(addnodes.pending_xref): + for node in self.document.findall(addnodes.pending_xref): content = self.find_pending_xref_condition(node, ("resolved", "*")) if content: contnode = cast(Element, content[0].deepcopy()) @@ -251,7 +251,7 @@ def has_visitor(translator: Type[nodes.NodeVisitor], node: Type[Element]) -> boo self.fallback(addnodes.desc_inline) def fallback(self, nodeType: Any) -> None: - for node in self.document.traverse(nodeType): + for node in self.document.findall(nodeType): newnode = nodes.inline() newnode.update_all_atts(node) newnode.extend(node) @@ -263,7 +263,7 @@ class PropagateDescDomain(SphinxPostTransform): default_priority = 200 def run(self, **kwargs: Any) -> None: - for node in self.document.traverse(addnodes.desc_signature): + for node in self.document.findall(addnodes.desc_signature): if node.parent.get('domain'): node['classes'].append(node.parent['domain']) diff --git a/sphinx/transforms/post_transforms/code.py b/sphinx/transforms/post_transforms/code.py index 5f31a434d4c..55bd56c2efd 100644 --- a/sphinx/transforms/post_transforms/code.py +++ b/sphinx/transforms/post_transforms/code.py @@ -42,7 +42,7 @@ def apply(self, **kwargs: Any) -> None: self.config.highlight_language) self.document.walkabout(visitor) - for node in list(self.document.traverse(addnodes.highlightlang)): + for node in list(self.document.findall(addnodes.highlightlang)): node.parent.remove(node) @@ -94,11 +94,11 @@ class TrimDoctestFlagsTransform(SphinxTransform): default_priority = HighlightLanguageTransform.default_priority + 1 def apply(self, **kwargs: Any) -> None: - for lbnode in self.document.traverse(nodes.literal_block): # type: nodes.literal_block + for lbnode in self.document.findall(nodes.literal_block): if self.is_pyconsole(lbnode): self.strip_doctest_flags(lbnode) - for dbnode in self.document.traverse(nodes.doctest_block): # type: nodes.doctest_block + for dbnode in self.document.findall(nodes.doctest_block): self.strip_doctest_flags(dbnode) def strip_doctest_flags(self, node: TextElement) -> None: diff --git a/sphinx/transforms/post_transforms/images.py b/sphinx/transforms/post_transforms/images.py index d2929dca80f..8e2f9e2fadd 100644 --- a/sphinx/transforms/post_transforms/images.py +++ b/sphinx/transforms/post_transforms/images.py @@ -30,7 +30,7 @@ class BaseImageConverter(SphinxTransform): def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(nodes.image): + for node in self.document.findall(nodes.image): if self.match(node): self.handle(node) diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index 456fa957644..c3a6ff9e2e9 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -500,6 +500,16 @@ def unknown_visit(self, node: Node) -> None: logger.warning(__('unknown node type: %r'), node, location=node) +# Node.findall() is a new interface to traverse a doctree since docutils-0.18. +# This applies a patch docutils-0.17 or older to be available Node.findall() +# method to use it from our codebase. +if __version_info__ < (0, 18): + def findall(self, *args, **kwargs): + return iter(self.traverse(*args, **kwargs)) + + Node.findall = findall # type: ignore + + # cache a vanilla instance of nodes.document # Used in new_document() function __document_cache__: Optional[nodes.document] = None diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index b6542f1d36d..c16142a2cd1 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -38,7 +38,7 @@ class NodeMatcher: - """A helper class for Node.traverse(). + """A helper class for Node.findall(). It checks that the given node is an instance of the specified node-classes and has the specified node-attributes. @@ -47,7 +47,7 @@ class NodeMatcher: and ``reftype`` attributes:: matcher = NodeMatcher(nodes.reference, refdomain='std', reftype='citation') - doctree.traverse(matcher) + doctree.findall(matcher) # => [, , ...] A special value ``typing.Any`` matches any kind of node-attributes. For example, @@ -55,7 +55,7 @@ class NodeMatcher: from typing import Any matcher = NodeMatcher(nodes.reference, refdomain=Any) - doctree.traverse(matcher) + doctree.findall(matcher) # => [, , ...] """ @@ -147,7 +147,7 @@ def apply_source_workaround(node: Element) -> None: logger.debug('[i18n] PATCH: %r to have rawsource: %s', get_full_module_name(node), repr_domxml(node)) # strip classifier from rawsource of term - for classifier in reversed(list(node.parent.traverse(nodes.classifier))): + for classifier in reversed(list(node.parent.findall(nodes.classifier))): node.rawsource = re.sub(r'\s*:\s*%s' % re.escape(classifier.astext()), '', node.rawsource) if isinstance(node, nodes.topic) and node.source is None: @@ -259,7 +259,7 @@ def is_translatable(node: Node) -> bool: def extract_messages(doctree: Element) -> Iterable[Tuple[Element, str]]: """Extract translatable messages from a document tree.""" - for node in doctree.traverse(is_translatable): # type: Element + for node in doctree.findall(is_translatable): # type: Element if isinstance(node, addnodes.translatable): for msg in node.extract_original_messages(): yield node, msg @@ -323,7 +323,8 @@ def get_prev_node(node: Node) -> Optional[Node]: def traverse_translatable_index(doctree: Element) -> Iterable[Tuple[Element, List["IndexEntry"]]]: # NOQA """Traverse translatable index node from a document tree.""" - for node in doctree.traverse(NodeMatcher(addnodes.index, inline=False)): # type: addnodes.index # NOQA + matcher = NodeMatcher(addnodes.index, inline=False) + for node in doctree.findall(matcher): # type: addnodes.index if 'raw_entries' in node: entries = node['raw_entries'] else: @@ -353,9 +354,9 @@ def nested_parse_with_titles(state: Any, content: StringList, node: Node) -> str def clean_astext(node: Element) -> str: """Like node.astext(), but ignore images.""" node = node.deepcopy() - for img in node.traverse(nodes.image): + for img in node.findall(nodes.image): img['alt'] = '' - for raw in list(node.traverse(nodes.raw)): + for raw in list(node.findall(nodes.raw)): raw.parent.remove(raw) return node.astext() @@ -420,7 +421,7 @@ def inline_all_toctrees(builder: "Builder", docnameset: Set[str], docname: str, Record all docnames in *docnameset*, and output docnames with *colorfunc*. """ tree = cast(nodes.document, tree.deepcopy()) - for toctreenode in list(tree.traverse(addnodes.toctree)): + for toctreenode in list(tree.findall(addnodes.toctree)): newnodes = [] includefiles = map(str, toctreenode['includefiles']) for includefile in includefiles: @@ -438,7 +439,7 @@ def inline_all_toctrees(builder: "Builder", docnameset: Set[str], docname: str, else: sof = addnodes.start_of_file(docname=includefile) sof.children = subtree.children - for sectionnode in sof.traverse(nodes.section): + for sectionnode in sof.findall(nodes.section): if 'docname' not in sectionnode: sectionnode['docname'] = includefile newnodes.append(sof) @@ -615,7 +616,7 @@ def is_smartquotable(node: Node) -> bool: def process_only_nodes(document: Node, tags: "Tags") -> None: """Filter ``only`` nodes which do not match *tags*.""" - for node in document.traverse(addnodes.only): + for node in document.findall(addnodes.only): try: ret = tags.eval_condition(node['expr']) except Exception as err: diff --git a/sphinx/versioning.py b/sphinx/versioning.py index c007dd7b407..1a615101df9 100644 --- a/sphinx/versioning.py +++ b/sphinx/versioning.py @@ -42,7 +42,7 @@ def add_uids(doctree: Node, condition: Any) -> Iterator[Node]: :param condition: A callable which returns either ``True`` or ``False`` for a given node. """ - for node in doctree.traverse(condition): + for node in doctree.findall(condition): node.uid = uuid4().hex yield node @@ -57,8 +57,8 @@ def merge_doctrees(old: Node, new: Node, condition: Any) -> Iterator[Node]: :param condition: A callable which returns either ``True`` or ``False`` for a given node. """ - old_iter = old.traverse(condition) - new_iter = new.traverse(condition) + old_iter = old.findall(condition) + new_iter = new.findall(condition) old_nodes = [] new_nodes = [] ratios = {} diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 8cb4453ad79..ef19c803648 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -651,7 +651,7 @@ def visit_title(self, node: Element) -> None: raise nodes.SkipNode else: short = '' - if list(node.traverse(nodes.image)): + if any(node.findall(nodes.image)): short = ('[%s]' % self.escape(' '.join(clean_astext(node).split()))) try: @@ -1009,7 +1009,7 @@ def visit_entry(self, node: Element) -> None: context = (r'\par' + CR + r'\vskip-\baselineskip' r'\vbox{\hbox{\strut}}\end{varwidth}%' + CR + context) self.needs_linetrimming = 1 - if len(list(node.traverse(nodes.paragraph))) >= 2: + if len(list(node.findall(nodes.paragraph))) >= 2: self.table.has_oldproblematic = True if isinstance(node.parent.parent, nodes.thead) or (cell.col in self.table.stubs): if len(node) == 1 and isinstance(node[0], nodes.paragraph) and node.astext() == '': diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index 4417274878c..0344d82e9fc 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -56,7 +56,7 @@ def __init__(self, document: nodes.document) -> None: def apply(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.literal, nodes.emphasis, nodes.strong) - for node in list(self.document.traverse(matcher)): # type: TextElement + for node in list(self.document.findall(matcher)): # type: TextElement if any(matcher(subnode) for subnode in node): pos = node.parent.index(node) for subnode in reversed(list(node)): @@ -227,7 +227,7 @@ def depart_versionmodified(self, node: Element) -> None: # overwritten -- don't make whole of term bold if it includes strong node def visit_term(self, node: Element) -> None: - if list(node.traverse(nodes.strong)): + if any(node.findall(nodes.strong)): self.body.append('\n') else: super().visit_term(node) diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 7551136ff69..351aef2f799 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -286,7 +286,7 @@ def add_node_name(name: str) -> str: self.indices = [(add_node_name(name), content) for name, content in self.indices] # each section is also a node - for section in self.document.traverse(nodes.section): + for section in self.document.findall(nodes.section): title = cast(nodes.TextElement, section.next_node(nodes.Titular)) name = title.astext() if title else '' section['node_name'] = add_node_name(name) @@ -295,7 +295,7 @@ def collect_node_menus(self) -> None: """Collect the menu entries for each "node" section.""" node_menus = self.node_menus targets: List[Element] = [self.document] - targets.extend(self.document.traverse(nodes.section)) + targets.extend(self.document.findall(nodes.section)) for node in targets: assert 'node_name' in node and node['node_name'] entries = [s['node_name'] for s in find_subsections(node)] diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index 4027e0ec34b..2e1dd474a24 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -850,7 +850,7 @@ def depart_list_item(self, node: Element) -> None: self.end_state(first='%s. ' % self.list_counter[-1]) def visit_definition_list_item(self, node: Element) -> None: - self._classifier_count_in_li = len(list(node.traverse(nodes.classifier))) + self._classifier_count_in_li = len(list(node.findall(nodes.classifier))) def depart_definition_list_item(self, node: Element) -> None: pass diff --git a/tests/test_directive_code.py b/tests/test_directive_code.py index 9626e73cb40..d8244db6a09 100644 --- a/tests/test_directive_code.py +++ b/tests/test_directive_code.py @@ -553,7 +553,7 @@ def test_literalinclude_pydecorators(app, status, warning): def test_code_block_highlighted(app, status, warning): app.builder.build(['highlight']) doctree = app.env.get_doctree('highlight') - codeblocks = list(doctree.traverse(nodes.literal_block)) + codeblocks = list(doctree.findall(nodes.literal_block)) assert codeblocks[0]['language'] == 'default' assert codeblocks[1]['language'] == 'python2' diff --git a/tests/test_domain_js.py b/tests/test_domain_js.py index 42e2c972766..b109fe4d81e 100644 --- a/tests/test_domain_js.py +++ b/tests/test_domain_js.py @@ -42,7 +42,7 @@ def assert_refnode(node, mod_name, prefix, target, reftype=None, assert_node(node, **attributes) doctree = app.env.get_doctree('roles') - refnodes = list(doctree.traverse(addnodes.pending_xref)) + refnodes = list(doctree.findall(addnodes.pending_xref)) assert_refnode(refnodes[0], None, None, 'TopLevel', 'class') assert_refnode(refnodes[1], None, None, 'top_level', 'func') assert_refnode(refnodes[2], None, 'NestedParentA', 'child_1', 'func') @@ -60,7 +60,7 @@ def assert_refnode(node, mod_name, prefix, target, reftype=None, assert len(refnodes) == 13 doctree = app.env.get_doctree('module') - refnodes = list(doctree.traverse(addnodes.pending_xref)) + refnodes = list(doctree.findall(addnodes.pending_xref)) assert_refnode(refnodes[0], 'module_a.submodule', None, 'ModTopLevel', 'class') assert_refnode(refnodes[1], 'module_a.submodule', 'ModTopLevel', diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 18c1766aac5..14c2bd3e288 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -424,7 +424,7 @@ def test_productionlist2(app): " A: `:A` `A`\n" " B: `P1:B` `~P1:B`\n") doctree = restructuredtext.parse(app, text) - refnodes = list(doctree.traverse(pending_xref)) + refnodes = list(doctree.findall(pending_xref)) assert_node(refnodes[0], pending_xref, reftarget="A") assert_node(refnodes[1], pending_xref, reftarget="P2:A") assert_node(refnodes[2], pending_xref, reftarget="P1:B") diff --git a/tests/test_ext_doctest.py b/tests/test_ext_doctest.py index b79b2899cee..3a527acb2b7 100644 --- a/tests/test_ext_doctest.py +++ b/tests/test_ext_doctest.py @@ -36,7 +36,7 @@ def test_build(app, status, warning): def test_highlight_language_default(app, status, warning): app.build() doctree = app.env.get_doctree('doctest') - for node in doctree.traverse(nodes.literal_block): + for node in doctree.findall(nodes.literal_block): assert node['language'] in ('python3', 'pycon3', 'none') @@ -45,7 +45,7 @@ def test_highlight_language_default(app, status, warning): def test_highlight_language_python2(app, status, warning): app.build() doctree = app.env.get_doctree('doctest') - for node in doctree.traverse(nodes.literal_block): + for node in doctree.findall(nodes.literal_block): assert node['language'] in ('python', 'pycon', 'none') From a0e44a7300b12c6946ba13cdf6ffc917298cbf60 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 3 Jan 2022 01:05:46 +0900 Subject: [PATCH 137/192] test: Migrate to Node.findall() from Node.traverse() --- tests/test_domain_py.py | 6 +++--- tests/test_domain_std.py | 4 ++-- tests/test_markup.py | 2 +- tests/test_util_nodes.py | 14 +++++++------- tests/test_versioning.py | 18 +++++++++--------- 5 files changed, 22 insertions(+), 22 deletions(-) diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index ec4a0b8a799..de544d25dc8 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -79,7 +79,7 @@ def assert_refnode(node, module_name, class_name, target, reftype=None, assert_node(node, **attributes) doctree = app.env.get_doctree('roles') - refnodes = list(doctree.traverse(pending_xref)) + refnodes = list(doctree.findall(pending_xref)) assert_refnode(refnodes[0], None, None, 'TopLevel', 'class') assert_refnode(refnodes[1], None, None, 'top_level', 'meth') assert_refnode(refnodes[2], None, 'NestedParentA', 'child_1', 'meth') @@ -97,7 +97,7 @@ def assert_refnode(node, module_name, class_name, target, reftype=None, assert len(refnodes) == 13 doctree = app.env.get_doctree('module') - refnodes = list(doctree.traverse(pending_xref)) + refnodes = list(doctree.findall(pending_xref)) assert_refnode(refnodes[0], 'module_a.submodule', None, 'ModTopLevel', 'class') assert_refnode(refnodes[1], 'module_a.submodule', 'ModTopLevel', @@ -126,7 +126,7 @@ def assert_refnode(node, module_name, class_name, target, reftype=None, assert len(refnodes) == 16 doctree = app.env.get_doctree('module_option') - refnodes = list(doctree.traverse(pending_xref)) + refnodes = list(doctree.findall(pending_xref)) print(refnodes) print(refnodes[0]) print(refnodes[1]) diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 14c2bd3e288..1428bce3177 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -36,7 +36,7 @@ def test_process_doc_handle_figure_caption(): ids={'testid': figure_node}, citation_refs={}, ) - document.traverse.return_value = [] + document.findall.return_value = [] domain = StandardDomain(env) if 'testname' in domain.data['labels']: @@ -60,7 +60,7 @@ def test_process_doc_handle_table_title(): ids={'testid': table_node}, citation_refs={}, ) - document.traverse.return_value = [] + document.findall.return_value = [] domain = StandardDomain(env) if 'testname' in domain.data['labels']: diff --git a/tests/test_markup.py b/tests/test_markup.py index fbd4e20cc72..e1e01491a3a 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -67,7 +67,7 @@ def parse_(rst): parser = RstParser() parser.parse(rst, document) SphinxSmartQuotes(document, startnode=None).apply() - for msg in document.traverse(nodes.system_message): + for msg in list(document.findall(nodes.system_message)): if msg['level'] == 1: msg.replace_self([]) return document diff --git a/tests/test_util_nodes.py b/tests/test_util_nodes.py index 1e08244cc05..fe0a278e695 100644 --- a/tests/test_util_nodes.py +++ b/tests/test_util_nodes.py @@ -60,31 +60,31 @@ def test_NodeMatcher(): # search by node class matcher = NodeMatcher(nodes.paragraph) - assert len(list(doctree.traverse(matcher))) == 3 + assert len(list(doctree.findall(matcher))) == 3 # search by multiple node classes matcher = NodeMatcher(nodes.paragraph, nodes.literal_block) - assert len(list(doctree.traverse(matcher))) == 4 + assert len(list(doctree.findall(matcher))) == 4 # search by node attribute matcher = NodeMatcher(block=1) - assert len(list(doctree.traverse(matcher))) == 1 + assert len(list(doctree.findall(matcher))) == 1 # search by node attribute (Any) matcher = NodeMatcher(block=Any) - assert len(list(doctree.traverse(matcher))) == 3 + assert len(list(doctree.findall(matcher))) == 3 # search by both class and attribute matcher = NodeMatcher(nodes.paragraph, block=Any) - assert len(list(doctree.traverse(matcher))) == 2 + assert len(list(doctree.findall(matcher))) == 2 # mismatched matcher = NodeMatcher(nodes.title) - assert len(list(doctree.traverse(matcher))) == 0 + assert len(list(doctree.findall(matcher))) == 0 # search with Any does not match to Text node matcher = NodeMatcher(blah=Any) - assert len(list(doctree.traverse(matcher))) == 0 + assert len(list(doctree.findall(matcher))) == 0 @pytest.mark.parametrize( diff --git a/tests/test_versioning.py b/tests/test_versioning.py index 9961fe46406..4de8331aae7 100644 --- a/tests/test_versioning.py +++ b/tests/test_versioning.py @@ -70,16 +70,16 @@ def test_picklablility(): copy.settings.warning_stream = None copy.settings.env = None copy.settings.record_dependencies = None - for metanode in copy.traverse(meta): + for metanode in copy.findall(meta): metanode.__class__ = addnodes.meta loaded = pickle.loads(pickle.dumps(copy, pickle.HIGHEST_PROTOCOL)) - assert all(getattr(n, 'uid', False) for n in loaded.traverse(is_paragraph)) + assert all(getattr(n, 'uid', False) for n in loaded.findall(is_paragraph)) def test_modified(): modified = doctrees['modified'] new_nodes = list(merge_doctrees(original, modified, is_paragraph)) - uids = [n.uid for n in modified.traverse(is_paragraph)] + uids = [n.uid for n in modified.findall(is_paragraph)] assert not new_nodes assert original_uids == uids @@ -87,7 +87,7 @@ def test_modified(): def test_added(): added = doctrees['added'] new_nodes = list(merge_doctrees(original, added, is_paragraph)) - uids = [n.uid for n in added.traverse(is_paragraph)] + uids = [n.uid for n in added.findall(is_paragraph)] assert len(new_nodes) == 1 assert original_uids == uids[:-1] @@ -95,7 +95,7 @@ def test_added(): def test_deleted(): deleted = doctrees['deleted'] new_nodes = list(merge_doctrees(original, deleted, is_paragraph)) - uids = [n.uid for n in deleted.traverse(is_paragraph)] + uids = [n.uid for n in deleted.findall(is_paragraph)] assert not new_nodes assert original_uids[::2] == uids @@ -103,7 +103,7 @@ def test_deleted(): def test_deleted_end(): deleted_end = doctrees['deleted_end'] new_nodes = list(merge_doctrees(original, deleted_end, is_paragraph)) - uids = [n.uid for n in deleted_end.traverse(is_paragraph)] + uids = [n.uid for n in deleted_end.findall(is_paragraph)] assert not new_nodes assert original_uids[:-1] == uids @@ -111,7 +111,7 @@ def test_deleted_end(): def test_insert(): insert = doctrees['insert'] new_nodes = list(merge_doctrees(original, insert, is_paragraph)) - uids = [n.uid for n in insert.traverse(is_paragraph)] + uids = [n.uid for n in insert.findall(is_paragraph)] assert len(new_nodes) == 1 assert original_uids[0] == uids[0] assert original_uids[1:] == uids[2:] @@ -120,7 +120,7 @@ def test_insert(): def test_insert_beginning(): insert_beginning = doctrees['insert_beginning'] new_nodes = list(merge_doctrees(original, insert_beginning, is_paragraph)) - uids = [n.uid for n in insert_beginning.traverse(is_paragraph)] + uids = [n.uid for n in insert_beginning.findall(is_paragraph)] assert len(new_nodes) == 1 assert len(uids) == 4 assert original_uids == uids[1:] @@ -130,7 +130,7 @@ def test_insert_beginning(): def test_insert_similar(): insert_similar = doctrees['insert_similar'] new_nodes = list(merge_doctrees(original, insert_similar, is_paragraph)) - uids = [n.uid for n in insert_similar.traverse(is_paragraph)] + uids = [n.uid for n in insert_similar.findall(is_paragraph)] assert len(new_nodes) == 1 assert new_nodes[0].rawsource == 'Anyway I need more' assert original_uids[0] == uids[0] From d1a070efd85d590e9aad7a43be1284385dc53901 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 3 Jan 2022 02:01:44 +0900 Subject: [PATCH 138/192] test: manpage: double quotes are escaped since docutils-0.18 Double quotes are escaped to `\(dq` on manpage output since docutils-0.18. --- tests/test_smartquotes.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tests/test_smartquotes.py b/tests/test_smartquotes.py index a46e667ca4a..bd821616782 100644 --- a/tests/test_smartquotes.py +++ b/tests/test_smartquotes.py @@ -11,6 +11,8 @@ import pytest from html5lib import HTMLParser +from sphinx.util import docutils + @pytest.mark.sphinx(buildername='html', testroot='smartquotes', freshenv=True) def test_basic(app, status, warning): @@ -51,7 +53,10 @@ def test_man_builder(app, status, warning): app.build() content = (app.outdir / 'python.1').read_text() - assert '\\-\\- "Sphinx" is a tool that makes it easy ...' in content + if docutils.__version_info__ > (0, 18): + assert r'\-\- \(dqSphinx\(dq is a tool that makes it easy ...' in content + else: + assert r'\-\- "Sphinx" is a tool that makes it easy ...' in content @pytest.mark.sphinx(buildername='latex', testroot='smartquotes', freshenv=True) From ab5b8dc9ee3137f087c98be381f9e7b69dc6f858 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 8 Jan 2022 22:57:31 +0900 Subject: [PATCH 139/192] CI: refactor tox.ini; Install HEAD of docutils directly --- tox.ini | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tox.ini b/tox.ini index 824ab3f387b..f0afd779b6a 100644 --- a/tox.ini +++ b/tox.ini @@ -32,9 +32,7 @@ commands= [testenv:du-latest] commands = - git clone https://repo.or.cz/docutils.git {temp_dir}/docutils - python -m pip install {temp_dir}/docutils/docutils - rm -rf {temp_dir}/docutils + python -m pip install "git+https://repo.or.cz/docutils.git#subdirectory=docutils" {[testenv]commands} [testenv:flake8] From a98b605100a7d8bff146b7776cfefef9f452904f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 9 Jan 2022 00:54:35 +0900 Subject: [PATCH 140/192] Fix mypy violations (with mypy-0.931) --- setup.py | 2 +- sphinx/directives/patches.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 44da14d094d..a8279a14fa4 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ 'lint': [ 'flake8>=3.5.0', 'isort', - 'mypy>=0.930', + 'mypy>=0.931', 'docutils-stubs', "types-typed-ast", "types-pkg_resources", diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index f01423a88d4..056baa49634 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -9,7 +9,7 @@ import os import warnings from os import path -from typing import TYPE_CHECKING, Any, Dict, List, Tuple, cast +from typing import TYPE_CHECKING, Any, Dict, List, Sequence, Tuple, cast from docutils import nodes from docutils.nodes import Node, make_id, system_message @@ -71,7 +71,7 @@ def run(self) -> List[Node]: class Meta(MetaBase, SphinxDirective): - def run(self) -> List[Node]: + def run(self) -> Sequence[Node]: result = super().run() for node in result: if (isinstance(node, nodes.pending) and From a80023f381e8458a77e730385357fe1fd309790d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 9 Jan 2022 00:59:32 +0900 Subject: [PATCH 141/192] Fix mypy violations (with types-requests-2.27.3) --- sphinx/util/requests.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/util/requests.py b/sphinx/util/requests.py index bd9a94338e9..581efbfd586 100644 --- a/sphinx/util/requests.py +++ b/sphinx/util/requests.py @@ -25,17 +25,17 @@ except ImportError: # python-requests package in Debian jessie does not provide ``requests.packages.urllib3``. # So try to import the exceptions from urllib3 package. - from urllib3.exceptions import SSLError # type: ignore + from urllib3.exceptions import SSLError try: from requests.packages.urllib3.exceptions import InsecureRequestWarning except ImportError: try: # for Debian-jessie - from urllib3.exceptions import InsecureRequestWarning # type: ignore + from urllib3.exceptions import InsecureRequestWarning except ImportError: # for requests < 2.4.0 - InsecureRequestWarning = None # type: ignore + InsecureRequestWarning = None useragent_header = [('User-Agent', From 9db86f6aaba426b15d9da837bb94360011e36093 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 9 Jan 2022 01:11:22 +0900 Subject: [PATCH 142/192] Fix mypy violations (with mypy-0.931) --- sphinx/directives/patches.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 3c532b812bc..d76bb74c702 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -83,7 +83,7 @@ def run(self) -> Sequence[Node]: # docutils' meta nodes aren't picklable because the class is nested meta.__class__ = addnodes.meta - return result # type: ignore + return result class RSTTable(tables.RSTTable): From ce99cd4832de37d99c25a7e47b93c72f55def1bd Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 9 Jan 2022 03:23:01 +0900 Subject: [PATCH 143/192] Fix #10057: Failed to scan documents on the root directory get_matching_files() incorrectly drops the first character of each path on scanning documents. It will help users to exclude paths via exclude_patterns setting. Note: Users need to configure `exclude_patterns` to put their document on the root directory. This does not help to avoid recursive symlinks (ex. /proc, /sys) --- CHANGES | 2 ++ sphinx/util/__init__.py | 5 +++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 6ce3e51f3d0..256bb4d6ec1 100644 --- a/CHANGES +++ b/CHANGES @@ -67,6 +67,8 @@ Bugs fixed at info-field-list * #9390: texinfo: Do not emit labels inside footnotes * #9979: Error level messages were displayed as warning messages +* #10057: Failed to scan documents if the project is placed onto the root + directory Testing -------- diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index 8a3b52fbfca..1001a1bdf16 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -72,10 +72,11 @@ def get_matching_files(dirname: str, """ # dirname is a normalized absolute path. dirname = path.normpath(path.abspath(dirname)) - dirlen = len(dirname) + 1 # exclude final os.path.sep for root, dirs, files in os.walk(dirname, followlinks=True): - relativeroot = root[dirlen:] + relativeroot = path.relpath(root, dirname) + if relativeroot == ".": + relativeroot = "" # suppress dirname for files on the target dir qdirs = enumerate(path_stabilize(path.join(relativeroot, dn)) for dn in dirs) # type: Iterable[Tuple[int, str]] From ce41a5e3f005dad05f1ddfcca8f94bc77fe12881 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 9 Jan 2022 04:04:31 +0900 Subject: [PATCH 144/192] Close #10055: sphinx-build: Create directories when `-w` option given --- CHANGES | 1 + sphinx/cmd/build.py | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/CHANGES b/CHANGES index 6ce3e51f3d0..7e41bb99ef0 100644 --- a/CHANGES +++ b/CHANGES @@ -37,6 +37,7 @@ Features added checking in matched documents. * #9793: sphinx-build: Allow to use the parallel build feature in macOS on macOS and Python3.8+ +* #10055: sphinx-build: Create directories when ``-w`` option given * #9993: std domain: Allow to refer an inline target (ex. ``_`target name```) via :rst:role:`ref` role * #9391: texinfo: improve variable in ``samp`` role diff --git a/sphinx/cmd/build.py b/sphinx/cmd/build.py index 77e3cd44fa5..8de24a364f0 100644 --- a/sphinx/cmd/build.py +++ b/sphinx/cmd/build.py @@ -16,6 +16,7 @@ import pdb import sys import traceback +from os import path from typing import IO, Any, List from docutils.utils import SystemMessage @@ -28,6 +29,7 @@ from sphinx.util import Tee, format_exception_cut_frames, save_traceback from sphinx.util.console import color_terminal, nocolor, red, terminal_safe # type: ignore from sphinx.util.docutils import docutils_namespace, patch_docutils +from sphinx.util.osutil import abspath, ensuredir def handle_exception(app: Sphinx, args: Any, exception: BaseException, stderr: IO = sys.stderr) -> None: # NOQA @@ -240,6 +242,8 @@ def build_main(argv: List[str] = sys.argv[1:]) -> int: if warning and args.warnfile: try: + warnfile = abspath(args.warnfile) + ensuredir(path.dirname(warnfile)) warnfp = open(args.warnfile, 'w') except Exception as exc: parser.error(__('cannot open warning file %r: %s') % ( From eb13171afea27ff3da770dce251fab8587a2eff7 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 9 Jan 2022 00:12:45 +0000 Subject: [PATCH 145/192] Update message catalogs --- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83036 -> 83893 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 18 +- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80263 -> 81072 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 18 +- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 34 ++-- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78230 -> 78365 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 10 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63197 -> 63197 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 183 ++++++++++-------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41839 -> 41670 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 187 +++++++++++-------- 47 files changed, 1082 insertions(+), 852 deletions(-) diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index d0dbb21f97caeb74862b080d3133b010c544b781..2e187f0fd2c5f0288c6c2c73d1b26ddb05aecb74 100644 GIT binary patch delta 26 icmaDU^ipWU3|3wvT?0d110w|k11m$L%}ZI2FarQ`eFxzH delta 26 gcmaDU^ipWU3|3x4T|*-vQZO*EGBn)0l=TQR0CJHB;s5{u diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 9a11a94b204..5e866aac4cf 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 9680e4c51d35337391fee1603cb7828c96661353..7b6ea7daac3d201a430d8c710ad14eb0a2567092 100644 GIT binary patch delta 13 Vcmcb?e1mzy>WR(58}~^u0st$L1)~4} delta 24 ecmcb?e1mzyYF-{08;_ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 8e9ba8cf0f9..a5ff7349f45 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 5c2d55fca2703f7f4dc3aca69e53e74623a76800..dee7d0b01755ed90129304a41e1df183b065ffde 100644 GIT binary patch delta 13 UcmZo=X=RzPdSbKi#(nOL03\n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index f0271340ad960ac4e8db3972c17ab6f2050c8214..ae664cd9f1630613fdfc930b99a9b6f3aa3df38e 100644 GIT binary patch delta 38 ocmX@WcYtq$E(^Pnu7RPhfzf0W7DZktTfxA<%Ft+Y63aa%0Jf|NG5`Po delta 38 qcmX@WcYtq$E(^P%uAz~xk=bMu7DZk#+t5hCz`)ATaB~vNJthFRYY934 diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index d2c6321d32c..1740917100a 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroj" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcio" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klaso" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2009,7 +2019,7 @@ msgstr "%s() (klaso)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2023,20 +2033,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2067,7 +2077,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "escepto" @@ -2079,92 +2089,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 7591c040cfea31d0e7ac88b7f5e3f9d3c7032643..837f0df10cd6aa826832fec8bc10cbd66875c4fa 100644 GIT binary patch delta 40 qcmX@t$#kxhX+xq9yOFMep{{|^Y3k*<;1\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" @@ -138,7 +138,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "laiendus %s pole rööbiti lugemiseks turvaline" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -462,6 +462,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Pythoni täiustusettepanekud; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1197,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1874,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameetrid" @@ -1883,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Tagastab" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Tagastustüüp" @@ -1901,7 +1911,7 @@ msgid "variable" msgstr "muutuja" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funktsioon" @@ -1979,7 +1989,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "klass" @@ -1996,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" @@ -2011,7 +2021,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" @@ -2025,20 +2035,20 @@ msgstr "Argumendid" msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribuut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "moodul" @@ -2069,7 +2079,7 @@ msgstr "operaator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "erind" @@ -2081,92 +2091,92 @@ msgstr "lause" msgid "built-in function" msgstr "sisseehitatud funktsioon" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Muutujad" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (iganenud)" @@ -2834,19 +2844,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2854,76 +2864,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2960,56 +2970,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "tõrge objekti %s importimisel" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] automaatkokkuvõtte genereerimine failile: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] kirjutamine kataloogi %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,30 +3040,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "lähtefailid, mille kohta rST-faile genereerida" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "väljundfailide kataloog" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "failide vaikimisi järelliide (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "kohandatud mallide kataloog (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "imporditud liikmete dokumenteerimine (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3512,6 +3528,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index eb184e31070fad191a32a8b1c4450595e202f36c..b0ebf31ab3f181be49874525aea228a51f1744a8 100644 GIT binary patch delta 26 icmZ3YzC?Y)b1q&ZT?0d110w|k11m$L&0n}SZ~y>s`Un~T delta 26 gcmZ3YzC?Y)b1q&(T|*-vQZO*EGBn)$g=+%`0C5fo8vp\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 02d4b455151eb2570205eaf2759aeeb021a047e3..e73df0a7c217ad62ef2d99c8b0901163265dc88d 100644 GIT binary patch delta 40 qcmaFZ&i1gKZ3A;ByOFMep{{|^WUfv{UMO3^z`)ATXtPD<%3lEdCJaUZ delta 40 scmaFZ&i1gKZ3A;ByP>Y3k*<;1WUfv{UNGCxNWs9s%FuALMd!+20Q}_)P5=M^ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index e03c39a7ec1..103c5970239 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+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" @@ -138,7 +138,7 @@ msgstr "निर्देश %r पहले से पंजीकृत ह msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,12 +146,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "समानांतर पठन के लिए यह %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -159,12 +159,12 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "समानांतर लेखन के लिए %s विस्तार अथवा आयाम सुरक्षित नहीं है | " -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" @@ -462,6 +462,16 @@ msgstr "परिवर्धक %r के सेटअप() कर्म से msgid "Python Enhancement Proposals; PEP %s" msgstr "पाइथन अभिवृद्धि प्रस्ताव; पी.ई.पी. %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1197,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1874,7 +1884,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "मापदण्ड" @@ -1883,12 +1893,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "प्रदत्त " #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "प्रदत्त प्रकार " @@ -1901,7 +1911,7 @@ msgid "variable" msgstr "चर पद" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "फंक्शन" @@ -1979,7 +1989,7 @@ msgid "Throws" msgstr "देता है " #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "वर्ग" @@ -1996,7 +2006,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधि)" @@ -2011,7 +2021,7 @@ msgstr "%s() (वर्ग)" msgid "%s (global variable or constant)" msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s लक्षण)" @@ -2025,20 +2035,20 @@ msgstr "चर " msgid "%s (module)" msgstr "%s (प्रभाग)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "पद्धति" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "आंकड़े " -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "लक्षण" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "प्रभाग" @@ -2069,7 +2079,7 @@ msgstr "चालक" msgid "object" msgstr "वस्तु" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "अपवाद " @@ -2081,92 +2091,92 @@ msgstr "वक्तव्य " msgid "built-in function" msgstr "अंतर्निर्मित कर्म" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "चर पद " -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "उभारता है " -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "प्रभाग" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "अवमानित " -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "वर्ग विधि" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "स्थैतिक पद्धति" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "(अवमानित)" @@ -2834,19 +2844,19 @@ msgstr "स्वतः %s (%r) के लिए अमान्य हस्त msgid "error while formatting arguments for %s: %s" msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "%s गुण %s वस्तु में अनुपस्थित" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2854,76 +2864,76 @@ msgid "" "explicit module name)" msgstr "पता नहीं है कि कौन सा प्रभाग स्वतःप्रलेखन %r के लिए आयात करना है (लेखपत्र में \"प्रभाग\" या \"वर्तमान-प्रभाग\" निर्देश रख कर देखें; अथवा स्पष्ट प्रभाग नाम देकर देखें)" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "स्वतः प्रभाग नाम में \"::\" विवेकहीन है" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "स्वतः-प्रभाग %s के लिए हस्ताक्षर पद अथवा प्रत्युत्तरित टिप्पणी प्रदान की गई" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ अंतिम अक्षरमाला होनी चाहिए, न कि %r (%s प्रभाग में) -- __all__ की उपेक्षा की जाएगी" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2960,56 +2970,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "पद-विच्छेदन में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "विषय-वस्तु के आयात में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "ऑटोसमरी आतंरिक रूप से आर.एस.टी. फाइलें बनाता है. आपके सोर्स_सफिक्स में आर.एस.टी. सम्मिलित नहीं है. छोड़ा गया." -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[ऑटोसमरी] अब इसका स्वतःसारांश बना रहा है: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[ऑटोसमरी] %s पर लिख रहा है" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,30 +3040,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nस्वतः सारांश #autosummary# निर्देश का प्रयोग करते हुए पुर्नसरंचितपाठ बनाता है.\n\nस्फिंक्स-ऑटोजेन स्फिंक्स.एक्स्ट.ऑटोसमरी.जेनेरेट का मुखड़ा है.\nयह प्रदत्त फाइलों में सम्मिलित ऑटो समरी निर्देशों के अनुसार पुर्नसरंचितपाठ बनाता है\n\nस्वतः सारांश #autosummary# निर्देश का प्रारूप स्फिंक्स.एक्स्ट.ऑटोसमरी \nपाइथन प्रभाग में निबंधित है और इसे आप निम्नलिखित माध्यम से पढ़ सकते हैं:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "आर.एस.टी. फाइलें बनाने के लिए स्रोत फाइलें" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "सभी परिणाम रखने के लिए निर्देशिका" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "फाइलों के लिए मानक प्रत्यय (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "पारंपरिक प्रारूप निर्देशिका (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "लेखपत्र आयातित सदस्य (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3512,6 +3528,13 @@ msgstr "छोड़ा " msgid "failed" msgstr "असफल" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 7d1e3b4eebb2e28da83e4e634b37912793da7cbb..f7caaa86e24924fde2640390218ca8c09b7ea824 100644 GIT binary patch delta 40 qcmaFX&iJgIaf5~iyOFMep{{|^WPJ@qUMO3^z`)ATXmhMar!)ZWY6_D8 delta 40 scmaFX&iJgIaf5~iyP>Y3k*<;1WPJ@qUNGCxNWs9s%Fu9gtVX9a0PiUZn*aa+ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index e7326881850..1758bcc750f 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" @@ -135,7 +135,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,12 +143,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -156,12 +156,12 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -459,6 +459,16 @@ msgstr "proširenje %r vratio je nepodržan objekt iz setup() funkcije; rezulta msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1194,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1871,7 +1881,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" @@ -1880,12 +1890,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Vraća" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Vraća tip" @@ -1898,7 +1908,7 @@ msgid "variable" msgstr "varijabla" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" @@ -1976,7 +1986,7 @@ msgid "Throws" msgstr "Baca (iznimke)" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "razred" @@ -1993,7 +2003,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -2008,7 +2018,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -2022,20 +2032,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atribut" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "modul" @@ -2066,7 +2076,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "izuzetak" @@ -2078,92 +2088,92 @@ msgstr "izjava" msgid "built-in function" msgstr "ugrađen funkcije" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Varijable" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (zastarjelo)" @@ -2831,19 +2841,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2851,76 +2861,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2957,56 +2967,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,30 +3037,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3509,6 +3525,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 29637002a496b4359a7e933e788b41439ca40e72..9c5dd2d415136038c5ce1ca0b8753cfba5731b14 100644 GIT binary patch delta 16 YcmaDY`C4+rEcVGo?82MZvfHr&06n1wBLDyZ delta 26 gcmaDY`C4+rEOuT)T|*-vQZO*EGBn)0oZW>L0CT4YegFUf diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 020df7175f2..2c04f80812f 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 370263ce094fd864d77a2f1bb31f7557113f0f82..6fcf3b50f87cc6f84dfd03525019c0c2a558d4d2 100644 GIT binary patch delta 12797 zcmaLdd3cT2+Q;!{BS<7jkPwpWAc=^i35k$Fh?yEHW@-r0gh*7vG1WGYF`S~*q0~@y zj#LS!l-5{k>Oi$rlvZ0kBps-VQhmR_tmis?|9RhD=Q^Ktul)>b-RoX!Z`$HTZu?ib zxxVtLw8r9}pDS2a1Ki-J=&yeoJY!i49F`S;E4XG`v}Kj@acm3A>PUaXSj(D7oEc|X z*?0}TuuDtJa>M@E6o=w+T!_i&8*f?s&t>)H|GUspfGKzx8)BVSmgSDEuqviv2zEye z^hFH9o*jp`H5pAoWpG4W@~_5N zI+XH!)LPF)o^2JNK0k*|@Urbw3?vRC&pg}egt~75s`yr5Fm6Pa-8zD*oibEr0#nTZ zLsMN;G95{DIPpc)171e0)n@d^Js5=NQ7qXf} zGORtQ+W8eDF{CTA#xzv1x-bl^A{q_pxMqLw)Q+2XGpXx`jre>eR>6H3jEC*dzd|id zJ*MTv*65CdQK=t|O8F+#(*7GYv6EOq`~M0Jmc_b;O)=zI4o-vMiH;= zVP0?w6@P+C^`EG!cVm5IeN;wbP%oT}cW?=M;-p?=fcIN-Xy}4};t+fvRXqN^jjd3r z?~j8p6P1DESOdSs=J+dmVAykJLd{W`nT$F33Q{JP8wIBUbVrvSFpx$y%(Oqq$4KJY z*aUZ@9()D8@s=Gwus_%Fr(z1nnwW~pTpA9>fv5}>p_cFer2h7F#_%`ak^H>cpVHLb#$G7eHK31jwF=|OFWn0!#Ov@(! zDY}6Uop?dx&A#t})re=IimU*2B)^W@B}Y&*xQMOs7W!jAj+uEY^dwHj5!eg01aG4z zP$$>CC)GuRdax#;W_SfDbgMd*7mMSt2X4kD_#<{kzZcEGhNG4sAC<{n*b0xMmh3UQ zqt8TBbPaF>aVly;uB|izX&l2Ec+>W0^d`3QOeTCVlrRt*V@IrqV^I&9hswYfRL0&z z?V5|&4)39MMQpyw^a|v?F6%uS4fvoKYvUtSRac*6W)h7mo-9;KbFmiAK&|ykR0h^z zOZ)^Au?i*L72BiYWtf0xunSiDo0g9C??FQ;U5L%`W7`T-%!wC=vGjL9Uz~~>@Jc%_ z#P-A|QO~J5)jX#+DnoNo*Kb5+>RqghS1^$GTfflIjA~9Z#nl-7h~rTi>4jSR(U^?O zuqK{EEm<)}V+m^e223|EZivqiC!s%PqfWqusHNPCE)~aB8m;jb>cIgs%t)iqN&GBo zAmcF-=b#4oHYy_@Vhr9uy}OY{XQ1D>M7`;s&jS+ia7f zK-2}TQ4h?-2;6ALXHWxtYR6%7%#k`2^}v0o0bW8a=_9O3uU(Oh&3L~xo<=Yo>rpd4j9Rm6s1!X!z0jw?EJbhBgJ)oWEVQk(%%pw@ z_Mv|#HpVCDhQZ5CO@yH`lZes0-&#T=91md~{Lc2Vt@jGE9m7yF?TDH|I;s|4Mh$!y zY6;F^D1L*QnEOgI@Cej<24E!4Mwc49Y3PRQSOqKnotK~|dSV}Jio-D;mtaFYj!Nx! zsEk#A*$lL)Z5LGk7}WK1P?^|{s=0r?O#ZdzC+Lu6sOpbgWd@XriNsl08MoW+LOrku zHN($QwNPe%-fp$|#nc5gp=|7c`51=>?f9qFOW};23Hkw@?rI5p|)@Iuj?N zGB6yg;ux%sxv1-AVqM&UmGCIG!Vl1iPq8-!y=pQy0n7LQDjIe9;4SQhr?EErtvA)$ z4E4gcSQEQq2o6RsoP`?5a@34BqB3|EHLx#G8MOXk`a7X&DGhlp`=5qVy%6K^AlAoU zP#N*sU=EJDScf)(KeQk#mS zuq)QXLc9MoRwMoh!|+Q?zzVOK)FxwF;$f&_+k_2p2WmhkQ3Lt{HS?!-9KMOIsQurY zMjLz+m4VyX9fLNTvwa*Y)ss*Ior~_c1eNmDs0SazXe_}140zovRU&F2BayPQ@@+l0 zkbk9q8x8q6D#cZ|njfKosHK>Wn)zDP+8@CP{0@hq_crs3X9C6%Z?)sA7)b27-DETZ zD-m}@UDs_p`PW*`qC+WKjg9b-9p6CBtnwRXATj7h+yga$G}Hm+!VoM(4fqlU<4?BU zJIusdp!&O_FOJ(m{#D&`=+KLoqF%Tg)&C_bb+=GA{D#^_UT>P24MQENFJWukfri)I?|0b9!MYrlWSd4Vy=^nG&_O2g zEJp3(#TEHhEaZ8_jy-&pqu*X8$9>C-_<}-Ln|)?q{($auJV2%NPoz+-$o=MAIFDV4 z8~oe+q#A?I5g)~d=<|;Gp%I5F*3KA({V*8kVPkv)!|@!llrHN54ILPd(HpBCF#4kg z)C{%#TB0(Oips!1)b-;~2hdCC!~#1mMBR7T_Ct&%{tPFg`$3%}tp5xe{pnbVP4G54 zvF5wxpou|kr;b<~N1;x_DYlDI+i*R$#M2mrPf-~NJY=?Y54=Y_A6w&;!wj7FTYG7E z;4##Q&togRV(a~$8CW+|>hdrbH=-YUy>BuRf^o$0*Z{|4H(Y|0fpr;Y;@l(Vk75;$ zlK-Z3JWoTZT!g)FJ!*U1LG23PW9HyVux*FRKo``22Vr~6KxJqrYKHHlQeK7{Smbfb zdI3jaWjuG>-v1ZrXhFyKr~&w&Fh9A*qAq+BeQ`JH!KW|=t&^q}nxoEAy zJsgf&s;M{_x8g8-idypLKQtM??xLY0`3Wmy;29o*AvheTV;WvV&FGo4=DH!a>8KQE zp?1M*s7w^1mf{%pz|T?7ZG6uBfSHDxsOvb55i~;1o8R>dunqBtc3kCx`Q_6Ulj$!& zE!A1g zFse8+QP)kwK{y+`;x*JR2>H}}o{WPX{JcWd%BG8^|0;GMzG=rHmsC?MMl%{pS$iCa z1Ij<(4;GljgHGFVrORf3^--xEjT3Mx2H_nHM32u+v4-Om;9mD{c^Gnm8i%RumY(_?oVh!TbYvu)ipfciJZ2lfF6!pAOSO>?V zC(goPTxPqwnEb2bQ@i6nYGie;n^Y#CJ|AQ|9Xk_m#E$qKF2abfOiK5m_IDZTx}i7B z?%IZ0f=j69KSC!4-gKG2KuEc1X7DvCRlnhMtn{_{nLG=X%757IMqlC+wqM%)zo1g= z_Ki7$pG9RR3-#QYwgspRt#{GTzJ1;9cpJ5C-a*}P%#J^{Kfj88^xwq#SZ4RvzGVhl zAGM?{QTKPoq1ey<_|_Cx8`K5Qp)08~hSGW4&Kl795GL zJQ@dS=)sW>jIp+f*oppBtci;;0N2}}A3%~}9YHNY;cxskEc!g;?+o!@r~#CrKL(YV zU)2d%gSdSe`L9MJjSf#7ZeNgXI|-HInRoz8P$}L1$fWQ-YG#qYoBOk|4)Ihh&j9)p z7ooP{N0@-Our3BZCjXjw{9`l2HmDc&!m0QkYR%)Hm=~twYT^y38OHp<7Zc9J?sywt z#1>CYEo{f(#MiJMCjM#e>xZg^EiSv`qTLZ>Im)+RFKogEgK<92#TayVILd!+C!#m; zFxv^}MLY+CaV4hUUeuc3L%lGef}=bGV^OhdJB<(;m$4N-#!(ns(P7QPb=U>#RWdiG zqpEu&Dy3&pHE{z~D}SInc5ri)pO`&SwUdtO&%=0p3Ax^7?WdvCJ;CR(OJx(kf!&Dj z;Sfx&;wb+TdKEho-?9y_>L~xKnOv+z|6bG@pF$1L;cf=#i~hv1n2x4;?sU62wGyVOsG5u5Qcq6tWK7w7*;b{ia9aZ%suq{r&^6&pW zG*o1VumygPe(3LIX3`wn5|2lv@GaB}4xm!|JBDGk>c$qRObkJ-aV~0rn=lAZqH5z? zbZIRb*KnA#9<>{$puRL*r~wsYYphw*6j?V^|3K8qSAZJG5md%L!D##)mAMFShcyy= z;5pol9dNpj!&UymqdumZPvaCmxQg26eQKGa+KhVPZ4AWvwattYP(?Q!RpoD>mgq-J z#K!#5S4BMnQ}I=tgvHnp`}n#{HBaKdLQu-LpkDAU{td6BbxmshYzJU{`q!e0uLzalk5B`=?4qF;c-M23e|wEXRjsGLxgi*JLlTB!d(?Iv zi#mW-q6c0_W#|V?!v^&oGW%!G%bli0PChN^!Tj=+bg7Y+)~ z#w2fAwZa9USSt;s8L1E_eUbb^kFW8Sd53Zw*?AuriyEid2AC9_z z6{==Vptj|IP#O0RXaDPKvMUW;I36{Sji~MM3F-y+QN{BIs%nFp8i$~E&05qp+l}q; z2h`d(jWGAOLLG3a=*01;np+-W@BgcGM9^^)ReYY!9OZw^u7#b5r=w^2 zy-+v&!}eX&jaN}$%fF(|_GJDGHEqju)Qj^`nVF7Sngyr<96{B{1=LczzP3AR$C{Zn z!O?s$44rraRU6-;9$Y)lWU4-Dd-X%rz+%+WypGy6d$A6lL2b($sOm36U01th`EGGp zAvE-Y6jVxcQ7@W@ZEz_nBWF>&;=$ zptkW;bl3j>fQFNfk5Q@p8MR%iwKhc)gQ}5i%)l+!6RReeY9D|Th+oBu=#gk zAk>7yQA-tV+Yg&)|4*Z#qT7m^;RmP`KE&f#J<0efDkH0tjhCTGt>%w6Yi?aV>a6*b^# zsBN_i_3d~KmBCu6=Kj_gOWYn4aEculrLzA+>G**TRcVd(_ICg}iRWVqzJaQN@39(I z>|hR*8mI{*pi(>&mAU!o#0@wU-$UK+-_cwjj~$4ocXXMP=qMf0bX4nPwoMW`i94fG zn2D<5)u<{iv_C(Cs`5Li8C#vrkIhijw(WqrZxrgj8K{A*L(8LcMo!VOsPo~2)3Y-AWMyQJc4p-{^CnH0kein=+L@p0oRpX0oS2)P;S3AO3v1>~ zpOo*+&m5U=`nWbHH(!s*&&;r&6IHZ$U~QkUF(b3G%@eZ5Psp8^&x@iwdgtclW$|Wb zW>!vqUV=wRUeWTgpH*=3?*CpsIwL=0;`pqb4Bf%#nuJUYUsasbX4SW4HH&h`?{hTz z>)QYG(M8_5eFB}mJN97=-`%AL|9jy+=iL?a?(SS&vhe^fpnE~dlKpp= zF1ovPTa;D0dfuufr5;7&ZZz{<8|>!@2!3VJUmtt$*1Jo#m#*31EPbt@bjgA8bT4`^ zykh-?@?p-~Q2Od>Uby*xCEB^_{oi{ReOuO|Liqy&{@(`{xjhaIYp5jO-MgrC-2o-J Z@J|2$ delta 12200 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 diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 736fa556e76..0fa3a242e50 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -4,14 +4,14 @@ # # Translators: # Minho Ryang , 2019 -# YT H , 2019-2021 +# YT H , 2019-2022 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" -"Last-Translator: Komiya Takeshi \n" +"PO-Revision-Date: 2022-01-05 10:17+0000\n" +"Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -463,12 +463,12 @@ msgstr "Python 향상 제안; PEP %s" #: sphinx/roles.py:193 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "잘못된 PEP 번호 %s" #: sphinx/roles.py:227 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "잘못된 RFC 번호 %s" #: sphinx/theming.py:80 #, python-format @@ -2852,7 +2852,7 @@ msgstr "%s 속성이 %s 객체에 없음" msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc: 문서화 할 %s.%s (%r) 을(를) 결정하지 못했으며, 다음 예외가 발생했습니다:\n%s" #: sphinx/ext/autodoc/__init__.py:908 #, python-format @@ -2974,7 +2974,7 @@ msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "autosummary: %s을(를) import 하지 못했습니다.\n가능한 힌트:\n%s" #: sphinx/ext/autosummary/__init__.py:366 #, python-format @@ -3021,7 +3021,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[autosummary] %s을(를) import 하지 못했습니다.\n가능한 힌트:\n%s" #: sphinx/ext/autosummary/generate.py:624 msgid "" @@ -3531,7 +3531,7 @@ msgstr "실패" msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "%s 영역에서 문제 발생: 필드가 '%s' 역할을 사용해야 하지만, 해당 역할이 도메인에 없습니다." #: sphinx/util/docutils.py:213 #, python-format diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 9f0a18902f0de1a1db325609c63016da10788ee6..58e1dc6aa64e177d061e268dd1c2a42c697ff37c 100644 GIT binary patch delta 13 Vcmeyy{Ed0S>WR(58~0f-0st\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 9aa31ca464a724a02dba49ac4e51de0e946171fe..e8de025c23245d41be4a20918825f53fea8397e9 100644 GIT binary patch delta 12822 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 delta 12175 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 SJ?|*3UJ)F-dq9L^p!0vb, 2008 # gilberto dos santos alves , 2015-2016 # Rafael Fontenelle , 2019 -# Rafael Fontenelle , 2019-2021 +# Rafael Fontenelle , 2019-2022 # Komiya Takeshi , 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" -"Last-Translator: Komiya Takeshi \n" +"PO-Revision-Date: 2022-01-02 02:45+0000\n" +"Last-Translator: Rafael Fontenelle \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -467,12 +467,12 @@ msgstr "Propostas Estendidas Python; PEP %s" #: sphinx/roles.py:193 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "Número de PEP inválido %s" #: sphinx/roles.py:227 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "Número de RFC inválido %s" #: sphinx/theming.py:80 #, python-format @@ -2856,7 +2856,7 @@ msgstr "faltando atributo %s no objeto %s" msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc: falhou em determinar %s.%s (%r) a ser documentado, a seguinte exceção foi levantada:\n%s" #: sphinx/ext/autodoc/__init__.py:908 #, python-format @@ -2978,7 +2978,7 @@ msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "autosummary: falha ao importar %s\nPossíveis dicas:\n%s" #: sphinx/ext/autosummary/__init__.py:366 #, python-format @@ -3025,7 +3025,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[autosummary] falha ao importar %s\nPossíveis dicas:\n%s" #: sphinx/ext/autosummary/generate.py:624 msgid "" @@ -3535,7 +3535,7 @@ msgstr "falhou" msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "Problema no domínio %s: o campo deveria usar o papel \"%s\", mas esse papel não está no domínio." #: sphinx/util/docutils.py:213 #, python-format diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index f7be70dae9c9e1a041c49ec50c7de700f0e13bba..5f31e98b785309b195ac9466639e7a2a86beff68 100644 GIT binary patch delta 38 ocmbQ^Fvnp-lrX!Iu7RPhfzjkdVMSgjTfxA<%Ft+Yzi=-P0LNnqy8r+H delta 38 qcmbQ^Fvnp-lrX!YuAz~xk=f)#VMSgr+t5hCz`)ATaC5(KFAo67A_>C) diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 6eff108759d..6f0464badf4 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-12-26 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -136,7 +136,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,12 +144,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -157,12 +157,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -460,6 +460,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1195,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1872,7 +1882,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" @@ -1881,12 +1891,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "Retorno" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "Tipo de retorno" @@ -1899,7 +1909,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "função" @@ -1977,7 +1987,7 @@ msgid "Throws" msgstr "Gera" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "classe" @@ -1994,7 +2004,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -2009,7 +2019,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -2023,20 +2033,20 @@ msgstr "Parâmetros" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "atributo" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "módulo" @@ -2067,7 +2077,7 @@ msgstr "operador" msgid "object" msgstr "objecto" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "excepção" @@ -2079,92 +2089,92 @@ msgstr "comando" msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2832,19 +2842,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2852,76 +2862,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2958,56 +2968,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,30 +3038,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3510,6 +3526,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 4cf0357f4e3f276023803e5414bcfd087ff7e6d4..d436172ef1e1a430a029ad817243e835813601ee 100644 GIT binary patch delta 16 XcmX@)cF1i*vgl-MQQ^&HqGxykI|>Fy delta 26 gcmX@)cF1i*vM8^iuAvbSDHs@785(Xb5WU0;0C5}#$^ZZW diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index f27bc0a13b0..de6b51403ea 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 7e1c249f58d..757ff297b36 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: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1874,7 +1874,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path" " as a relative path from source directory. Please update your document." @@ -2857,7 +2857,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2910,7 +2910,7 @@ msgid "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2920,33 +2920,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." @@ -3470,25 +3470,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated:" " {1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3582,12 +3582,12 @@ msgid "" "output it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index f18a6db519a08bd9486d1ef9ece9f17e243faeeb..588129bbe2dac65a1704408f15e8eff86953fcc8 100644 GIT binary patch delta 11720 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 diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index c13d0d622ba..df282d7c153 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -3,14 +3,14 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: -# Besnik Bleta , 2021 +# Besnik Bleta , 2021-2022 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" -"Last-Translator: Komiya Takeshi \n" +"PO-Revision-Date: 2022-01-02 15:07+0000\n" +"Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -462,12 +462,12 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/roles.py:193 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "numër PEP i pavlefshëm %s" #: sphinx/roles.py:227 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "numër RFC i pavlefshëm %s" #: sphinx/theming.py:80 #, python-format diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index c82111595d81dff81c407877febf7d53399da688..a3ed3462ea729277982a1171428e42c1f398378e 100644 GIT binary patch delta 35 lcmcb}a*<_1GrN(lfuXK}(ZnuAUMN$+z`)ATXycBVi~zNk3CsWh delta 35 ncmcb}a*<_1GrOU#p^>hU*~BhIUNF\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 8512441d2386d78bb3140ebd84340bf407a261e2..1916ff2451d946d24c7c270511d9cb16e81dd4e0 100644 GIT binary patch delta 16 XcmeA-?Kj;Z$UFHZkML#{-fUg~GHnG; delta 26 fcmeA-?Kj;Z$jfV}YiI;S3I+yNhK8Hvcnf&}T6zX8 diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 345357421c6..a27e619e515 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 2ebcbb0a0e2faeddcab50474275d787398ff4dc9..576873ad01cf3af2dfabe7ccf8fedf0e8111d5df 100644 GIT binary patch delta 35 lcmeys{DFBwGrN(lfuXK}(ZnuAUMN$+z`)ATXyXnGMgY9d38w%6 delta 35 ncmeys{DFBwGrOU#p^>hU*~BhIUNF\n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 74020d3e8cf9e95d169ace722193690b63f0b711..9e81b051705c0b71af9523dc19c65c90e338e12a 100644 GIT binary patch delta 16 YcmX@7cTR7^5#Gsjc!f7#=Pl<106{wj-~a#s delta 26 gcmX@7cTR7^5nf(HT|*-vQZO*EGBn(Lk++r;0Cxun3jhEB diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 460c601bb21..681d36a3fc3 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index ced17396823826839c436175d54999caecbc5df3..bfd23c2e493e7f5b227127b21e198b65b41306f4 100644 GIT binary patch delta 35 lcmeys{DFBwGrN(lfuXK}(ZnuAUMN$+z`)ATXyXnGMgY9d38w%6 delta 35 ncmeys{DFBwGrOU#p^>hU*~BhIUNF\n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 3e1bd2e0c75fe1d213120cb26a112b3f50e3d0ac..1ebd467811e593cd39ab60e70d80b3f519a20cbd 100644 GIT binary patch delta 18 acmccnmig{m<_#++O>Uedym`+g#S{Q#J_*GD delta 28 icmccnmig{m<_#++@fzwH8Uc}lfq|8w;pT0V)KdVgw+e;; diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 8af4b596475..050a80a8edc 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -23,7 +23,7 @@ msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2021-12-12 00:11+0000\n" +"PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index d88a9519ad687b804991096490b8ce6817e3acf3..ea16438443101b32096552590a69018fda19e38d 100644 GIT binary patch delta 35 lcmeyz{EvA;GrN(lfuXK}(ZnuAUMN$+z`)ATXyXnyMgYK~3DE!m delta 35 ncmeyz{EvA;GrOU#p^>hU*~BhIUNF\n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" @@ -134,7 +134,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,12 +142,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,12 +155,12 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "" @@ -458,6 +458,16 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1193,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1870,7 +1880,7 @@ msgid "%s (C %s)" msgstr "" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" @@ -1879,12 +1889,12 @@ msgid "Return values" msgstr "" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "" @@ -1897,7 +1907,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" @@ -1975,7 +1985,7 @@ msgid "Throws" msgstr "" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "" @@ -1992,7 +2002,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "" @@ -2007,7 +2017,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2021,20 +2031,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "" @@ -2065,7 +2075,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "" @@ -2077,92 +2087,92 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "" @@ -2830,19 +2840,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2850,76 +2860,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2956,56 +2966,62 @@ msgstr "" msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3020,30 +3036,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3508,6 +3524,13 @@ msgstr "" msgid "failed" msgstr "" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index b5791e1d1b9288d03c18c14ff1c3d3643a66ed2f..a7615a3b224adf8bca9138d96675a8013cbd039f 100644 GIT binary patch delta 8087 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 xHTfk8!B@+fS-y;noXpI+drQ*dA{&;}o~m2-=l*\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -142,7 +142,7 @@ msgstr "指令 %r 已經被註冊,它將會被覆寫" msgid "role %r is already registered, it will be overridden" msgstr "role %r 已經被註冊,它將會被覆寫" -#: sphinx/application.py:1245 +#: sphinx/application.py:1256 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -150,12 +150,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行讀取是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1249 +#: sphinx/application.py:1260 #, python-format msgid "the %s extension is not safe for parallel reading" msgstr "%s 擴充套件對於平行讀取是不安全的" -#: sphinx/application.py:1252 +#: sphinx/application.py:1263 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -163,12 +163,12 @@ msgid "" "explicit" msgstr "%s 擴充套件並未宣告平行寫入是否安全,假設為否 - 請尋求擴充套件作者以檢查並明確表示" -#: sphinx/application.py:1256 +#: sphinx/application.py:1267 #, python-format msgid "the %s extension is not safe for parallel writing" msgstr "%s 擴充套件對於平行寫入是不安全的" -#: sphinx/application.py:1264 sphinx/application.py:1268 +#: sphinx/application.py:1275 sphinx/application.py:1279 #, python-format msgid "doing serial %s" msgstr "執行串列 %s" @@ -466,6 +466,16 @@ msgstr "擴充套件 %r 從它的 setup() 函式回傳一個未支援物件; msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/roles.py:193 +#, python-format +msgid "invalid PEP number %s" +msgstr "" + +#: sphinx/roles.py:227 +#, python-format +msgid "invalid RFC number %s" +msgstr "" + #: sphinx/theming.py:80 #, python-format msgid "theme %r doesn't have \"theme\" setting" @@ -1201,7 +1211,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:614 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" @@ -1878,7 +1888,7 @@ msgid "%s (C %s)" msgstr "%s (C %s)" #: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261 -#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:445 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "參數" @@ -1887,12 +1897,12 @@ msgid "Return values" msgstr "回傳值" #: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270 -#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458 +#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:457 msgid "Returns" msgstr "回傳" #: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233 -#: sphinx/domains/python.py:460 +#: sphinx/domains/python.py:459 msgid "Return type" msgstr "回傳型別" @@ -1905,7 +1915,7 @@ msgid "variable" msgstr "變數" #: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 -#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204 +#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "函式" @@ -1983,7 +1993,7 @@ msgid "Throws" msgstr "拋出" #: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342 -#: sphinx/domains/python.py:1206 +#: sphinx/domains/python.py:1205 msgid "class" msgstr "類別" @@ -2000,7 +2010,7 @@ msgstr "模板參數" msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843 +#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:842 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" @@ -2015,7 +2025,7 @@ msgstr "%s() (類別)" msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928 +#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:927 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" @@ -2029,20 +2039,20 @@ msgstr "引數" msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208 +#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1207 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205 +#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1204 msgid "data" msgstr "資料" -#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211 +#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1210 msgid "attribute" msgstr "屬性" #: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58 -#: sphinx/domains/python.py:1213 +#: sphinx/domains/python.py:1212 msgid "module" msgstr "模組" @@ -2073,7 +2083,7 @@ msgstr "運算子" msgid "object" msgstr "物件" -#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1206 msgid "exception" msgstr "例外" @@ -2085,92 +2095,92 @@ msgstr "陳述式" msgid "built-in function" msgstr "內建函式" -#: sphinx/domains/python.py:451 +#: sphinx/domains/python.py:450 msgid "Variables" msgstr "變數" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:454 msgid "Raises" msgstr "引發" -#: sphinx/domains/python.py:688 sphinx/domains/python.py:832 +#: sphinx/domains/python.py:687 sphinx/domains/python.py:831 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:748 sphinx/domains/python.py:924 -#: sphinx/domains/python.py:975 +#: sphinx/domains/python.py:747 sphinx/domains/python.py:923 +#: sphinx/domains/python.py:974 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:750 +#: sphinx/domains/python.py:749 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:775 +#: sphinx/domains/python.py:774 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:776 +#: sphinx/domains/python.py:775 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:837 +#: sphinx/domains/python.py:836 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別方法)" -#: sphinx/domains/python.py:839 sphinx/domains/python.py:979 +#: sphinx/domains/python.py:838 sphinx/domains/python.py:978 #, python-format msgid "%s (%s property)" msgstr "%s (%s 的特性)" -#: sphinx/domains/python.py:841 +#: sphinx/domains/python.py:840 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態方法)" -#: sphinx/domains/python.py:1133 +#: sphinx/domains/python.py:1132 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:1134 +#: sphinx/domains/python.py:1133 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:1183 +#: sphinx/domains/python.py:1182 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:1209 +#: sphinx/domains/python.py:1208 msgid "class method" msgstr "類別方法" -#: sphinx/domains/python.py:1210 +#: sphinx/domains/python.py:1209 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python.py:1212 +#: sphinx/domains/python.py:1211 msgid "property" msgstr "特性" -#: sphinx/domains/python.py:1270 +#: sphinx/domains/python.py:1269 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s 的重複物件敘述,其他的實例在 %s ,使用 :noindex: 給它們其中之一" -#: sphinx/domains/python.py:1390 +#: sphinx/domains/python.py:1389 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "為交互參照 %r 找到多於一個目標: %s" -#: sphinx/domains/python.py:1444 +#: sphinx/domains/python.py:1443 msgid " (deprecated)" msgstr "(已棄用)" @@ -2838,19 +2848,19 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:813 +#: sphinx/ext/autodoc/__init__.py:815 #, python-format msgid "" -"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:906 +#: sphinx/ext/autodoc/__init__.py:908 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2858,76 +2868,76 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:950 +#: sphinx/ext/autodoc/__init__.py:952 #, python-format msgid "A mocked object is detected: %r" msgstr "一個 mocked 物件被偵測到: %r" -#: sphinx/ext/autodoc/__init__.py:969 +#: sphinx/ext/autodoc/__init__.py:971 #, python-format msgid "error while formatting signature for %s: %s" msgstr "正在為 %s 格式化簽名時發生錯誤: %s" -#: sphinx/ext/autodoc/__init__.py:1019 +#: sphinx/ext/autodoc/__init__.py:1021 msgid "\"::\" in automodule name doesn't make sense" msgstr "\"::\" 在 automodule 的名稱中並不合理" -#: sphinx/ext/autodoc/__init__.py:1026 +#: sphinx/ext/autodoc/__init__.py:1028 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "簽名引數或回傳註釋給予 automodule %s" -#: sphinx/ext/autodoc/__init__.py:1039 +#: sphinx/ext/autodoc/__init__.py:1041 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ 應該是一個字串的列表,不是 %r (在 %s 模組中)-- 正在忽略 __all__" -#: sphinx/ext/autodoc/__init__.py:1105 +#: sphinx/ext/autodoc/__init__.py:1107 #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "缺少 :members: 選項中所述的屬性:模組 %s ,屬性 %s" -#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383 -#: sphinx/ext/autodoc/__init__.py:2768 +#: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 +#: sphinx/ext/autodoc/__init__.py:2770 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "無法取得一個函式簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:1576 +#: sphinx/ext/autodoc/__init__.py:1578 #, python-format msgid "Failed to get a constructor signature for %s: %s" msgstr "無法取得一個 constructor 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:1680 +#: sphinx/ext/autodoc/__init__.py:1682 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847 -#: sphinx/ext/autodoc/__init__.py:1866 +#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 +#: sphinx/ext/autodoc/__init__.py:1868 #, python-format msgid "alias of %s" msgstr "%s 的別名" -#: sphinx/ext/autodoc/__init__.py:1908 +#: sphinx/ext/autodoc/__init__.py:1910 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s) 的別名" -#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241 +#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "無法取得一個 method 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:2372 +#: sphinx/ext/autodoc/__init__.py:2374 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/__init__.py:2811 +#: sphinx/ext/autodoc/__init__.py:2813 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2964,56 +2974,62 @@ msgstr "autosummary: 未找到 stub 檔 %r 。請檢查您的 autosummary_genera msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "一個有標題的 autosummary 需要 :toctree: 選項。已略過。 " -#: sphinx/ext/autosummary/__init__.py:348 +#: sphinx/ext/autosummary/__init__.py:352 #, python-format -msgid "autosummary: failed to import %s" -msgstr "autosummary: 無法 import %s" +msgid "" +"autosummary: failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/__init__.py:362 +#: sphinx/ext/autosummary/__init__.py:366 #, python-format msgid "failed to parse name %s" msgstr "剖析名稱 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:367 +#: sphinx/ext/autosummary/__init__.py:371 #, python-format msgid "failed to import object %s" msgstr "import 物件 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:782 +#: sphinx/ext/autosummary/__init__.py:817 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 檔案未找到: %s" -#: sphinx/ext/autosummary/__init__.py:790 +#: sphinx/ext/autosummary/__init__.py:825 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "autosummary 會在內部產生 .rst 檔案。但是您的 source_suffix 並未包含 .rst。已省略。" -#: sphinx/ext/autosummary/generate.py:189 -#: sphinx/ext/autosummary/generate.py:253 +#: sphinx/ext/autosummary/generate.py:190 +#: sphinx/ext/autosummary/generate.py:254 #, 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:400 +#: sphinx/ext/autosummary/generate.py:401 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 正在產生 autosummary 給: %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:405 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] 正在寫入 %s" -#: sphinx/ext/autosummary/generate.py:441 +#: sphinx/ext/autosummary/generate.py:448 #, python-format -msgid "[autosummary] failed to import %r: %s" -msgstr "[autosummary] 無法 import %r: %s " +msgid "" +"[autosummary] failed to import %s.\n" +"Possible hints:\n" +"%s" +msgstr "" -#: sphinx/ext/autosummary/generate.py:615 +#: sphinx/ext/autosummary/generate.py:624 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3028,30 +3044,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n使用 autosummary 指令產生 ReStructuredText。\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的一個前端。它會從給定的\n輸入檔案中所包含的 autosummary 指令,產生 reStructuredText 檔案。\n\nautosummary 指令的格式被記錄在 ``sphinx.ext.autosummary`` Python 模組中,\n它可以使用此方法來讀取::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:632 +#: sphinx/ext/autosummary/generate.py:641 msgid "source files to generate rST files for" msgstr "原始檔案以產生 rST 檔案給" -#: sphinx/ext/autosummary/generate.py:636 +#: sphinx/ext/autosummary/generate.py:645 msgid "directory to place all output in" msgstr "資料夾來放置所有輸出在" -#: sphinx/ext/autosummary/generate.py:639 +#: sphinx/ext/autosummary/generate.py:648 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "檔案的預設後綴(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:643 +#: sphinx/ext/autosummary/generate.py:652 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "自訂模板資料夾(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:647 +#: sphinx/ext/autosummary/generate.py:656 #, python-format msgid "document imported members (default: %(default)s)" msgstr "文件引入成員(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:651 +#: sphinx/ext/autosummary/generate.py:660 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " @@ -3516,6 +3532,13 @@ msgstr "已省略" msgid "failed" msgstr "失敗" +#: sphinx/util/docfields.py:81 +#, python-format +msgid "" +"Problem in %s domain: field is supposed to use role '%s', but that role is " +"not in the domain." +msgstr "" + #: sphinx/util/docutils.py:213 #, python-format msgid "unknown directive or role name: %s:%s" From 3a3c03a045e54cbb30718a08c80086e48eb0c5f0 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Mon, 10 Jan 2022 07:08:56 +0000 Subject: [PATCH 146/192] merge 'isinstance' calls (SIM101) --- sphinx/util/docfields.py | 3 +-- sphinx/writers/latex.py | 6 ++---- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index e2179a25ec8..6e16a9948a1 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -316,8 +316,7 @@ def transform(self, node: nodes.field_list) -> None: if is_typefield: # filter out only inline nodes; others will result in invalid # markup being written out - content = [n for n in content if isinstance(n, nodes.Inline) or - isinstance(n, nodes.Text)] + content = [n for n in content if isinstance(n, (nodes.Inline, nodes.Text))] if content: types.setdefault(typename, {})[fieldarg] = content continue diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index ef19c803648..46f736f3fde 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1857,8 +1857,7 @@ def visit_block_quote(self, node: Element) -> None: done = 0 if len(node.children) == 1: child = node.children[0] - if isinstance(child, nodes.bullet_list) or \ - isinstance(child, nodes.enumerated_list): + if isinstance(child, (nodes.bullet_list, nodes.enumerated_list)): done = 1 if not done: self.body.append(r'\begin{quote}' + CR) @@ -1869,8 +1868,7 @@ def depart_block_quote(self, node: Element) -> None: done = 0 if len(node.children) == 1: child = node.children[0] - if isinstance(child, nodes.bullet_list) or \ - isinstance(child, nodes.enumerated_list): + if isinstance(child, (nodes.bullet_list, nodes.enumerated_list)): done = 1 if not done: self.body.append(r'\end{quote}' + CR) From 2a3ea2e490c2d34895e7d18c52943c01bd7ba30b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 10 Jan 2022 19:02:30 +0900 Subject: [PATCH 147/192] Fix #10061: html theme: Confvals added by themes are not initialized --- CHANGES | 2 ++ sphinx/config.py | 17 ++++++++++++++--- sphinx/theming.py | 1 + 3 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 6ce3e51f3d0..b12528a0a77 100644 --- a/CHANGES +++ b/CHANGES @@ -58,6 +58,8 @@ Bugs fixed * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url * #9909: HTML, prevent line-wrapping in literal text. +* #10061: html theme: Configuration values added by themes are not be able to + override from conf.py * #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of inline and parsed literals * #9944: LaTeX: extra vertical whitespace for some nested declarations diff --git a/sphinx/config.py b/sphinx/config.py index 38ed1d38882..a4a448366d5 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -251,6 +251,17 @@ def init_values(self) -> None: if name in self.values: self.__dict__[name] = config[name] + def post_init_values(self) -> None: + """ + Initialize additional config variables that are added after init_values() called. + """ + config = self._raw_config + for name in config: + if name not in self.__dict__ and name in self.values: + self.__dict__[name] = config[name] + + check_confval_types(None, self) + def __getattr__(self, name: str) -> Any: if name.startswith('_'): raise AttributeError(name) @@ -427,7 +438,7 @@ def check_confval_types(app: "Sphinx", config: Config) -> None: "but `{current}` is given.") logger.warning(msg.format(name=confval.name, current=confval.value, - candidates=annotations.candidates)) + candidates=annotations.candidates), once=True) else: if type(confval.value) is type(default): continue @@ -452,13 +463,13 @@ def check_confval_types(app: "Sphinx", config: Config) -> None: permitted = " or ".join(wrapped_annotations) logger.warning(msg.format(name=confval.name, current=type(confval.value), - permitted=permitted)) + permitted=permitted), once=True) else: msg = __("The config value `{name}' has type `{current.__name__}', " "defaults to `{default.__name__}'.") logger.warning(msg.format(name=confval.name, current=type(confval.value), - default=type(default))) + default=type(default)), once=True) def check_primary_domain(app: "Sphinx", config: Config) -> None: diff --git a/sphinx/theming.py b/sphinx/theming.py index cfbe74b571d..819cec377cd 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -208,6 +208,7 @@ def load_external_theme(self, name: str) -> None: try: entry_point = theme_entry_points[name] self.app.registry.load_extension(self.app, entry_point.module) + self.app.config.post_init_values() return except KeyError: pass From 61ff90460d61a33a9187006fd199424b23e9fbd2 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Mon, 10 Jan 2022 13:51:35 +0000 Subject: [PATCH 148/192] use 'callable' to check if object is callable (B004) --- sphinx/config.py | 6 +++--- sphinx/util/inspect.py | 2 +- tests/test_build_html.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sphinx/config.py b/sphinx/config.py index 38ed1d38882..9cce0cc415e 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -206,7 +206,7 @@ def convert_overrides(self, name: str, value: Any) -> Any: except ValueError as exc: raise ValueError(__('invalid number %r for config value %r, ignoring') % (value, name)) from exc - elif hasattr(defvalue, '__call__'): + elif callable(defvalue): return value elif defvalue is not None and not isinstance(defvalue, str): raise ValueError(__('cannot override config setting %r with unsupported ' @@ -257,7 +257,7 @@ def __getattr__(self, name: str) -> Any: if name not in self.values: raise AttributeError(__('No such config value: %s') % name) default = self.values[name][0] - if hasattr(default, '__call__'): + if callable(default): return default(self) return default @@ -413,7 +413,7 @@ def check_confval_types(app: "Sphinx", config: Config) -> None: for confval in config: default, rebuild, annotations = config.values[confval.name] - if hasattr(default, '__call__'): + if callable(default): default = default(config) # evaluate default value if default is None and not annotations: continue # neither inferable nor expliclitly annotated types diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 763e39cc2b9..06920288f94 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -301,7 +301,7 @@ def isstaticmethod(obj: Any, cls: Any = None, name: str = None) -> bool: def isdescriptor(x: Any) -> bool: """Check if the object is some kind of descriptor.""" for item in '__get__', '__set__', '__delete__': - if hasattr(safe_getattr(x, item, None), '__call__'): + if callable(safe_getattr(x, item, None)): return True return False diff --git a/tests/test_build_html.py b/tests/test_build_html.py index 3a468df4a14..2568bb5b804 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -99,7 +99,7 @@ def check_xpath(etree, fname, path, check, be_found=True): else: assert nodes != [], ('did not find any node matching xpath ' '%r in file %s' % (path, fname)) - if hasattr(check, '__call__'): + if callable(check): check(nodes) elif not check: # only check for node presence From 574e787bf12148191477bc01abbf742f65e2e4ee Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Mon, 10 Jan 2022 15:35:27 +0000 Subject: [PATCH 149/192] use class-style syntax for 'NamedTuple's --- sphinx/builders/linkcheck.py | 37 ++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 61b6b45f954..ea8aaa30074 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -43,18 +43,31 @@ uri_re = re.compile('([a-z]+:)?//') # matches to foo:// and // (a protocol relative URL) -Hyperlink = NamedTuple('Hyperlink', (('uri', str), - ('docname', str), - ('lineno', Optional[int]))) -CheckRequest = NamedTuple('CheckRequest', (('next_check', float), - ('hyperlink', Optional[Hyperlink]))) -CheckResult = NamedTuple('CheckResult', (('uri', str), - ('docname', str), - ('lineno', int), - ('status', str), - ('message', str), - ('code', int))) -RateLimit = NamedTuple('RateLimit', (('delay', float), ('next_check', float))) + +class Hyperlink(NamedTuple): + uri: str + docname: str + lineno: Optional[int] + + +class CheckRequest(NamedTuple): + next_check: float + hyperlink: Optional[Hyperlink] + + +class CheckResult(NamedTuple): + uri: str + docname: str + lineno: int + status: str + message: str + code: int + + +class RateLimit(NamedTuple): + delay: float + next_check: float + # Tuple is old styled CheckRequest CheckRequestType = Union[CheckRequest, Tuple[float, str, str, int]] From 7f0166780ff61826a2965f7f78b645a661ad6dd7 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 11 Jan 2022 02:18:29 +0900 Subject: [PATCH 150/192] Fix #10058: autosummary: Imported members are not shown Originally, the `check_module()` call was added at 21b8384 to hide imported members on generating stubs. But it was incorrect approach. Therefore it was disabled by b433197 and fixed the original issue by another approach at 2390c554. Finally, the `check_module()` call becomes meaningless code. But, at present, it causes that imported members are not shown when `autodoc_class_signature` is 'separated'. To resolve the problem, this removes the meaningless call. --- CHANGES | 2 ++ sphinx/ext/autosummary/__init__.py | 2 -- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 6ce3e51f3d0..96637d00ece 100644 --- a/CHANGES +++ b/CHANGES @@ -54,6 +54,8 @@ Bugs fixed position-only-arguments * #9194: autodoc: types under the "typing" module are not hyperlinked * #10009: autodoc: Crashes if target object raises an error on getting docstring +* #10058: autosummary: Imported members are not shown when + ``autodoc_class_signature = 'separated'`` * #9947: i18n: topic directive having a bullet list can't be translatable * #9878: mathjax: MathJax configuration is placed after loading MathJax itself * #9857: Generated RFC links use outdated base url diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 36dc230193e..7b132c83b23 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -372,8 +372,6 @@ def get_items(self, names: List[str]) -> List[Tuple[str, str, str, str]]: location=self.get_location()) items.append((display_name, '', '', real_name)) continue - if documenter.options.members and not documenter.check_module(): - continue # try to also get a source code analyzer for attribute docs try: From 547f0a2d028f8fc4ee8fc02dd5473e6b7bcaedb5 Mon Sep 17 00:00:00 2001 From: Philipp A Date: Mon, 10 Jan 2022 17:02:40 +0100 Subject: [PATCH 151/192] Fix typing in docfields.py --- sphinx/util/docfields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 6e16a9948a1..a599c66a7f1 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -21,7 +21,7 @@ from sphinx.util.typing import TextlikeNode if TYPE_CHECKING: - from sphinx.directive import ObjectDescription + from sphinx.directives import ObjectDescription logger = logging.getLogger(__name__) From e51591d061a9795663f1c382799dfe9e40cadefe Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Mon, 10 Jan 2022 13:38:34 +0000 Subject: [PATCH 152/192] simplify some set comparisons (SIM109) --- sphinx/builders/_epub_base.py | 2 +- sphinx/builders/changes.py | 2 +- sphinx/domains/c.py | 2 +- sphinx/domains/cpp.py | 8 ++++---- sphinx/ext/napoleon/__init__.py | 4 ++-- sphinx/util/logging.py | 8 ++------ sphinx/util/stemmer/porter.py | 4 ++-- 7 files changed, 13 insertions(+), 17 deletions(-) diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 45368797848..d17361a21da 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -703,7 +703,7 @@ def build_epub(self) -> None: epub_filename = path.join(self.outdir, outname) with ZipFile(epub_filename, 'w', ZIP_DEFLATED) as epub: epub.write(path.join(self.outdir, 'mimetype'), 'mimetype', ZIP_STORED) - for filename in ['META-INF/container.xml', 'content.opf', 'toc.ncx']: + for filename in ('META-INF/container.xml', 'content.opf', 'toc.ncx'): epub.write(path.join(self.outdir, filename), filename, ZIP_DEFLATED) for filename in self.files: epub.write(path.join(self.outdir, filename), filename, ZIP_DEFLATED) diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index 0086fa158ef..a80e53d9aaf 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -148,7 +148,7 @@ def hl(no: int, line: str) -> str: def hl(self, text: str, version: str) -> str: text = html.escape(text) - for directive in ['versionchanged', 'versionadded', 'deprecated']: + for directive in ('versionchanged', 'versionadded', 'deprecated'): text = text.replace('.. %s:: %s' % (directive, version), '.. %s:: %s' % (directive, version)) return text diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index 6ed4f155994..74556c3be1a 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -217,7 +217,7 @@ def describe_signature(self, signode: TextElement, mode: str, assert not self.rooted, str(self) assert len(self.names) == 1 self.names[0].describe_signature(signode, 'noneIsName', env, '', symbol) - elif mode == 'markType' or mode == 'lastIsName' or mode == 'markName': + elif mode in ('markType', 'lastIsName', 'markName'): # Each element should be a pending xref targeting the complete # prefix. prefix = '' diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index c8625e81d76..30772c10574 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -776,7 +776,7 @@ def describe_signature(self, signode: TextElement, mode: str, assert len(self.names) == 1 assert not self.templates[0] self.names[0].describe_signature(signode, 'param', env, '', symbol) - elif mode == 'markType' or mode == 'lastIsName' or mode == 'markName': + elif mode in ('markType', 'lastIsName', 'markName'): # Each element should be a pending xref targeting the complete # prefix. however, only the identifier part should be a link, such # that template args can be a link as well. @@ -5385,7 +5385,7 @@ def parser() -> ASTExpression: postFixes: List[ASTPostfixOp] = [] while True: self.skip_ws() - if prefixType in ['expr', 'cast', 'typeid']: + if prefixType in ('expr', 'cast', 'typeid'): if self.skip_string_and_ws('['): expr = self._parse_expression() self.skip_ws() @@ -7781,7 +7781,7 @@ def _resolve_xref_inner(self, env: BuildEnvironment, fromdocname: str, builder: typ: str, target: str, node: pending_xref, contnode: Element) -> Tuple[Optional[Element], Optional[str]]: # add parens again for those that could be functions - if typ == 'any' or typ == 'func': + if typ in ('any', 'func'): target += '()' parser = DefinitionParser(target, location=node, config=env.config) try: @@ -7902,7 +7902,7 @@ def checkType() -> bool: if (env.config.add_function_parentheses and typ == 'func' and title.endswith('operator()')): addParen += 1 - if ((typ == 'any' or typ == 'func') and + if (typ in ('any', 'func') and title.endswith('operator') and displayName.endswith('operator()')): addParen += 1 diff --git a/sphinx/ext/napoleon/__init__.py b/sphinx/ext/napoleon/__init__.py index 557ed773553..fab918d4112 100644 --- a/sphinx/ext/napoleon/__init__.py +++ b/sphinx/ext/napoleon/__init__.py @@ -444,10 +444,10 @@ def _skip_member(app: Sphinx, what: str, name: str, obj: Any, """ has_doc = getattr(obj, '__doc__', False) - is_member = (what == 'class' or what == 'exception' or what == 'module') + is_member = what in ('class', 'exception', 'module') if name != '__weakref__' and has_doc and is_member: cls_is_owner = False - if what == 'class' or what == 'exception': + if what in ('class', 'exception'): qualname = getattr(obj, '__qualname__', '') cls_path, _, _ = qualname.rpartition('.') if cls_path: diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index bcf8bf63d34..7294885b5e1 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -375,12 +375,8 @@ def is_suppressed_warning(type: str, subtype: str, suppress_warnings: List[str]) else: target, subtarget = warning_type, None - if target == type: - if ((subtype is None and subtarget is None) or - subtarget is None or - subtarget == subtype or - subtarget == '*'): - return True + if target == type and subtarget in (None, subtype, "*"): + return True return False diff --git a/sphinx/util/stemmer/porter.py b/sphinx/util/stemmer/porter.py index 55e2d329d2d..52ca31e0c99 100644 --- a/sphinx/util/stemmer/porter.py +++ b/sphinx/util/stemmer/porter.py @@ -123,7 +123,7 @@ def cvc(self, i: int) -> int: or not self.cons(i - 2): return 0 ch = self.b[i] - if ch == 'w' or ch == 'x' or ch == 'y': + if ch in ('w', 'x', 'y'): return 0 return 1 @@ -193,7 +193,7 @@ def step1ab(self) -> None: elif self.doublec(self.k): self.k = self.k - 1 ch = self.b[self.k] - if ch == 'l' or ch == 's' or ch == 'z': + if ch in ('l', 's', 'z'): self.k = self.k + 1 elif (self.m() == 1 and self.cvc(self.k)): self.setto("e") From 0269bec1ed3a8492427048152770e13bb24d06f0 Mon Sep 17 00:00:00 2001 From: Jean Abou Samra Date: Tue, 11 Jan 2022 22:40:01 +0100 Subject: [PATCH 153/192] In translated docs, sort glossaries by translated terms This is done by moving the sorting from the glossary directive to a transform operating after the i18n transform. Closes #9827 --- doc/usage/restructuredtext/directives.rst | 3 + sphinx/domains/std.py | 16 +--- sphinx/transforms/__init__.py | 22 ++++- tests/roots/test-intl/glossary_terms.txt | 15 +++ .../xx/LC_MESSAGES/glossary_terms.po | 94 ++++++++++++------- tests/test_intl.py | 30 ++++-- 6 files changed, 125 insertions(+), 55 deletions(-) diff --git a/doc/usage/restructuredtext/directives.rst b/doc/usage/restructuredtext/directives.rst index 2a9743e948d..bd1b1a3c665 100644 --- a/doc/usage/restructuredtext/directives.rst +++ b/doc/usage/restructuredtext/directives.rst @@ -831,6 +831,9 @@ Glossary .. versionchanged:: 1.4 Index key for glossary term should be considered *experimental*. + .. versionchanged:: 4.4 + In internationalized documentation, the ``:sorted:`` flag sorts + according to translated terms. Meta-information markup ----------------------- diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 11a95e13b1e..82803597de5 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -9,7 +9,6 @@ """ import re -import unicodedata import warnings from copy import copy from typing import (TYPE_CHECKING, Any, Callable, Dict, Iterable, Iterator, List, Optional, @@ -336,6 +335,7 @@ class Glossary(SphinxDirective): def run(self) -> List[Node]: node = addnodes.glossary() node.document = self.state.document + node['sorted'] = ('sorted' in self.options) # This directive implements a custom format of the reST definition list # that allows multiple lines of terms before the definition. This is @@ -400,9 +400,8 @@ def run(self) -> List[Node]: was_empty = False # now, parse all the entries into a big definition list - items = [] + items: List[nodes.definition_list_item] = [] for terms, definition in entries: - termtexts: List[str] = [] termnodes: List[Node] = [] system_messages: List[Node] = [] for line, source, lineno in terms: @@ -416,7 +415,6 @@ def run(self) -> List[Node]: node_id=None, document=self.state.document) term.rawsource = line system_messages.extend(sysmsg) - termtexts.append(term.astext()) termnodes.append(term) termnodes.extend(system_messages) @@ -426,16 +424,10 @@ def run(self) -> List[Node]: self.state.nested_parse(definition, definition.items[0][1], defnode) termnodes.append(defnode) - items.append((termtexts, - nodes.definition_list_item('', *termnodes))) + items.append(nodes.definition_list_item('', *termnodes)) - if 'sorted' in self.options: - items.sort(key=lambda x: - unicodedata.normalize('NFD', x[0][0].lower())) - - dlist = nodes.definition_list() + dlist = nodes.definition_list('', *items) dlist['classes'].append('glossary') - dlist.extend(item[1] for item in items) node += dlist return messages + [node] diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index f1359dfadc4..26e075a7a31 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -9,8 +9,9 @@ """ import re +import unicodedata import warnings -from typing import TYPE_CHECKING, Any, Dict, Generator, List, Optional, Tuple +from typing import TYPE_CHECKING, Any, Dict, Generator, List, Optional, Tuple, cast from docutils import nodes from docutils.nodes import Element, Node, Text @@ -405,6 +406,24 @@ def apply(self, **kwargs: Any) -> None: node.attributes.update(info) +class GlossarySorter(SphinxTransform): + """Sort glossaries that have the ``sorted`` flag.""" + # This must be done after i18n, therefore not right + # away in the glossary directive. + default_priority = 500 + + def apply(self, **kwargs: Any) -> None: + for glossary in self.document.findall(addnodes.glossary): + if glossary["sorted"]: + definition_list = cast(nodes.definition_list, glossary[0]) + definition_list[:] = sorted( + definition_list, + key=lambda item: unicodedata.normalize( + 'NFD', + cast(nodes.term, item)[0].astext().lower()) + ) + + def setup(app: "Sphinx") -> Dict[str, Any]: app.add_transform(ApplySourceWorkaround) app.add_transform(ExtraTranslatableNodes) @@ -420,6 +439,7 @@ def setup(app: "Sphinx") -> Dict[str, Any]: app.add_transform(SphinxSmartQuotes) app.add_transform(DoctreeReadEvent) app.add_transform(ManpageLink) + app.add_transform(GlossarySorter) return { 'version': 'builtin', diff --git a/tests/roots/test-intl/glossary_terms.txt b/tests/roots/test-intl/glossary_terms.txt index a6e16c948bb..473d857e7a5 100644 --- a/tests/roots/test-intl/glossary_terms.txt +++ b/tests/roots/test-intl/glossary_terms.txt @@ -12,3 +12,18 @@ i18n with glossary terms The corresponding glossary #2 link to :term:`Some term`. + +Translated glossary should be sorted by translated terms: + +.. glossary:: + :sorted: + + AAA + Define AAA + + CCC + EEE + Define CCC + + BBB + Define BBB diff --git a/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms.po b/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms.po index 2746655eead..83542f1c380 100644 --- a/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms.po +++ b/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms.po @@ -1,35 +1,59 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) 2012, foof -# This file is distributed under the same license as the foo package. -# FIRST AUTHOR , YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: sphinx 1.0\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-01-29 14:10+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -msgid "i18n with glossary terms" -msgstr "I18N WITH GLOSSARY TERMS" - -msgid "Some term" -msgstr "SOME NEW TERM" - -msgid "The corresponding glossary" -msgstr "THE CORRESPONDING GLOSSARY" - -msgid "Some other term" -msgstr "SOME OTHER NEW TERM" - -msgid "The corresponding glossary #2" -msgstr "THE CORRESPONDING GLOSSARY #2" - -msgid "link to :term:`Some term`." -msgstr "LINK TO :term:`SOME NEW TERM`." +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2012, foof +# This file is distributed under the same license as the foo package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: sphinx 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2013-01-29 14:10+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "i18n with glossary terms" +msgstr "I18N WITH GLOSSARY TERMS" + +msgid "Some term" +msgstr "SOME NEW TERM" + +msgid "The corresponding glossary" +msgstr "THE CORRESPONDING GLOSSARY" + +msgid "Some other term" +msgstr "SOME OTHER NEW TERM" + +msgid "The corresponding glossary #2" +msgstr "THE CORRESPONDING GLOSSARY #2" + +msgid "link to :term:`Some term`." +msgstr "LINK TO :term:`SOME NEW TERM`." + +msgid "Translated glossary should be sorted by translated terms:" +msgstr "TRANSLATED GLOSSARY SHOULD BE SORTED BY TRANSLATED TERMS:" + +msgid "BBB" +msgstr "TRANSLATED TERM XXX" + +msgid "Define BBB" +msgstr "DEFINE XXX" + +msgid "AAA" +msgstr "TRANSLATED TERM YYY" + +msgid "Define AAA" +msgstr "DEFINE YYY" + +msgid "CCC" +msgstr "TRANSLATED TERM ZZZ" + +msgid "EEE" +msgstr "VVV" + +msgid "Define CCC" +msgstr "DEFINE ZZZ" diff --git a/tests/test_intl.py b/tests/test_intl.py index f84e72a848f..92d7badf46a 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -241,13 +241,29 @@ def test_text_glossary_term(app, warning): app.build() # --- glossary terms: regression test for #1090 result = (app.outdir / 'glossary_terms.txt').read_text() - expect = ("18. I18N WITH GLOSSARY TERMS" - "\n****************************\n" - "\nSOME NEW TERM" - "\n THE CORRESPONDING GLOSSARY\n" - "\nSOME OTHER NEW TERM" - "\n THE CORRESPONDING GLOSSARY #2\n" - "\nLINK TO *SOME NEW TERM*.\n") + expect = (r"""18. I18N WITH GLOSSARY TERMS +**************************** + +SOME NEW TERM + THE CORRESPONDING GLOSSARY + +SOME OTHER NEW TERM + THE CORRESPONDING GLOSSARY #2 + +LINK TO *SOME NEW TERM*. + +TRANSLATED GLOSSARY SHOULD BE SORTED BY TRANSLATED TERMS: + +TRANSLATED TERM XXX + DEFINE XXX + +TRANSLATED TERM YYY + DEFINE YYY + +TRANSLATED TERM ZZZ +VVV + DEFINE ZZZ +""") assert result == expect warnings = getwarning(warning) assert 'term not in glossary' not in warnings From 49196d44746f7dd84dcc3a1837bd5c8d68a9848e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 13 Jan 2022 01:40:27 +0900 Subject: [PATCH 154/192] Update CHANGES for PR #10091 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 7da316acd34..7ce6b26778a 100644 --- a/CHANGES +++ b/CHANGES @@ -31,6 +31,7 @@ Features added parameter for :meth:`Sphinx.add_js_file()` * #9815: html theme: Wrap sidebar components in div to allow customizing their layout via CSS +* #9827: i18n: Sort items in glossary by translated terms * #9899: py domain: Allows to specify cross-reference specifier (``.`` and ``~``) as ``:type:`` option * #9894: linkcheck: add option ``linkcheck_exclude_documents`` to disable link From 6697ed62ed38287b72dd6ff213ba41d9d8f86466 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Mon, 10 Jan 2022 09:21:53 +0000 Subject: [PATCH 155/192] address some unused loop control variables (B007) --- doc/development/tutorials/examples/recipe.py | 2 +- sphinx/addnodes.py | 2 +- sphinx/builders/__init__.py | 2 +- sphinx/builders/_epub_base.py | 6 +++--- sphinx/builders/gettext.py | 6 +++--- sphinx/builders/html/__init__.py | 2 +- sphinx/builders/linkcheck.py | 4 ++-- sphinx/directives/__init__.py | 2 +- sphinx/directives/other.py | 2 +- sphinx/domains/c.py | 3 +-- sphinx/domains/changeset.py | 2 +- sphinx/domains/citation.py | 4 ++-- sphinx/domains/cpp.py | 4 ++-- sphinx/domains/javascript.py | 4 ++-- sphinx/domains/math.py | 2 +- sphinx/domains/rst.py | 2 +- sphinx/environment/adapters/indexentries.py | 2 +- sphinx/environment/collectors/toctree.py | 4 ++-- sphinx/ext/apidoc.py | 2 +- sphinx/ext/autosummary/__init__.py | 6 +++--- sphinx/ext/autosummary/generate.py | 2 +- sphinx/ext/extlinks.py | 2 +- sphinx/ext/imgmath.py | 2 +- sphinx/ext/napoleon/__init__.py | 2 +- sphinx/setup_command.py | 2 +- sphinx/testing/path.py | 2 +- sphinx/testing/util.py | 2 +- sphinx/transforms/i18n.py | 2 +- sphinx/util/__init__.py | 10 +++++----- sphinx/util/osutil.py | 2 +- sphinx/writers/latex.py | 4 ++-- sphinx/writers/texinfo.py | 10 +++++----- sphinx/writers/text.py | 4 ++-- tests/test_domain_c.py | 2 +- tests/test_ext_napoleon.py | 6 +++--- tests/test_intl.py | 2 +- utils/doclinter.py | 2 +- 37 files changed, 60 insertions(+), 61 deletions(-) diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index fbcfea362f4..62c320d379f 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -87,7 +87,7 @@ def generate(self, docnames=None): # first letter of the recipe as a key to group thing # # name, subtype, docname, anchor, extra, qualifier, description - for name, dispname, typ, docname, anchor, _ in recipes: + for _name, dispname, typ, docname, anchor, _ in recipes: content[dispname[0].lower()].append( (dispname, 0, docname, anchor, docname, '', typ)) diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index 5b63d22f55d..af1c8fff2d8 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -92,7 +92,7 @@ class toctree(nodes.General, nodes.Element, translatable): def preserve_original_messages(self) -> None: # toctree entries rawentries = self.setdefault('rawentries', []) - for title, docname in self['entries']: + for title, _docname in self['entries']: if title: rawentries.append(title) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 4cdd748ebb7..b61cd026dcb 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -562,7 +562,7 @@ def write_process(docs: List[Tuple[str, nodes.document]]) -> None: for chunk in status_iterator(chunks, __('writing output... '), "darkgreen", len(chunks), self.app.verbosity): arg = [] - for i, docname in enumerate(chunk): + for docname in chunk: doctree = self.env.get_and_resolve_doctree(docname, self) self.write_doc_serialized(docname, doctree) arg.append((docname, doctree)) diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index d17361a21da..3b18917691f 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -377,14 +377,14 @@ def fix_genindex(self, tree: List[Tuple[str, List[Tuple[str, Any]]]]) -> None: """Fix href attributes for genindex pages.""" # XXX: modifies tree inline # Logic modeled from themes/basic/genindex.html - for key, columns in tree: - for entryname, (links, subitems, key_) in columns: + for _key, columns in tree: + for _entryname, (links, subitems, _key) in columns: for (i, (ismain, link)) in enumerate(links): m = self.refuri_re.match(link) if m: links[i] = (ismain, self.fix_fragment(m.group(1), m.group(2))) - for subentryname, subentrylinks in subitems: + for _subentryname, subentrylinks in subitems: for (i, (ismain, link)) in enumerate(subentrylinks): m = self.refuri_re.match(link) if m: diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 58d36cdab97..f9dac2891ef 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -157,7 +157,7 @@ def write_doc(self, docname: str, doctree: nodes.document) -> None: if 'index' in self.env.config.gettext_additional_targets: # Extract translatable messages from index entries. for node, entries in traverse_translatable_index(doctree): - for typ, msg, tid, main, key_ in entries: + for typ, msg, _tid, _main, _key in entries: for m in split_index_msg(typ, msg): if typ == 'pair' and m in pairindextypes.values(): # avoid built-in translated message was incorporated @@ -227,7 +227,7 @@ def _collect_templates(self) -> Set[str]: template_files = set() for template_path in self.config.templates_path: tmpl_abs_path = path.join(self.app.srcdir, template_path) - for dirpath, dirs, files in walk(tmpl_abs_path): + for dirpath, _dirs, files in walk(tmpl_abs_path): for fn in files: if fn.endswith('.html'): filename = canon_path(path.join(dirpath, fn)) @@ -247,7 +247,7 @@ def _extract_from_template(self) -> None: try: with open(template, encoding='utf-8') as f: context = f.read() - for line, meth, msg in extract_translations(context): + for line, _meth, msg in extract_translations(context): origin = MsgOrigin(template, line) self.catalogs['sphinx'].add(msg, origin) except Exception as exc: diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index ac1fbbaec9d..58fee87f931 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -486,7 +486,7 @@ def prepare_writing(self, docnames: Set[str]) -> None: rellinks: List[Tuple[str, str, str, str]] = [] if self.use_index: rellinks.append(('genindex', _('General Index'), 'I', _('index'))) - for indexname, indexcls, content, collapse in self.domain_indices: + for indexname, indexcls, _content, _collapse in self.domain_indices: # if it has a short name if indexcls.shortname: rellinks.append((indexname, indexcls.localname, diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index ea8aaa30074..4f760b8bc09 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -339,7 +339,7 @@ def __init__(self, env: BuildEnvironment, config: Config, self.wqueue = PriorityQueue() def invoke_threads(self) -> None: - for i in range(self.config.linkcheck_workers): + for _i in range(self.config.linkcheck_workers): thread = HyperlinkAvailabilityCheckWorker(self.env, self.config, self.rqueue, self.wqueue, self.rate_limits, self.builder) @@ -348,7 +348,7 @@ def invoke_threads(self) -> None: def shutdown_threads(self) -> None: self.wqueue.join() - for worker in self.workers: + for _worker in self.workers: self.wqueue.put(CheckRequest(CHECK_IMMEDIATELY, None), False) def check(self, hyperlinks: Dict[str, Hyperlink]) -> Generator[CheckResult, None, None]: diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py index b0635dcb023..90658a904ea 100644 --- a/sphinx/directives/__init__.py +++ b/sphinx/directives/__init__.py @@ -176,7 +176,7 @@ def run(self) -> List[Node]: self.names: List[T] = [] signatures = self.get_signatures() - for i, sig in enumerate(signatures): + for sig in signatures: # add a signature node for each signature in the current unit # and add a reference target for it signode = addnodes.desc_signature(sig, '') diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 367a58c7403..a14b6e801e3 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -342,7 +342,7 @@ def run(self) -> List[Node]: # be placed in the doctree. n_sects_to_raise = current_depth - nested_depth + 1 parent = cast(nodes.Element, self.state.parent) - for i in range(n_sects_to_raise): + for _i in range(n_sects_to_raise): if parent.parent: parent = parent.parent parent.append(node) diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index 74556c3be1a..5181afb1720 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -3654,8 +3654,7 @@ def run(self) -> List[Node]: " When skipping the root declaration," " need 'maxdepth' 0 for infinite or at least 2.", location=self.get_location()) - signatures = self.get_signatures() - for i, sig in enumerate(signatures): + for sig in self.get_signatures(): node.append(AliasNode(sig, aliasOptions, self.state.document, env=self.env)) return [node] diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index 2dbc84e91af..9db59897527 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -130,7 +130,7 @@ def note_changeset(self, node: addnodes.versionmodified) -> None: self.changesets.setdefault(version, []).append(changeset) def clear_doc(self, docname: str) -> None: - for version, changes in self.changesets.items(): + for changes in self.changesets.values(): for changeset in changes[:]: if changeset.docname == docname: changes.remove(changeset) diff --git a/sphinx/domains/citation.py b/sphinx/domains/citation.py index f68d324bf63..f98abc4d10a 100644 --- a/sphinx/domains/citation.py +++ b/sphinx/domains/citation.py @@ -48,7 +48,7 @@ def citation_refs(self) -> Dict[str, Set[str]]: return self.data.setdefault('citation_refs', {}) def clear_doc(self, docname: str) -> None: - for key, (fn, _l, lineno) in list(self.citations.items()): + for key, (fn, _l, _lineno) in list(self.citations.items()): if fn == docname: del self.citations[key] for key, docnames in list(self.citation_refs.items()): @@ -81,7 +81,7 @@ def note_citation_reference(self, node: pending_xref) -> None: docnames.add(self.env.docname) def check_consistency(self) -> None: - for name, (docname, labelid, lineno) in self.citations.items(): + for name, (docname, _labelid, lineno) in self.citations.items(): if name not in self.citation_refs: logger.warning(__('Citation [%s] is not referenced.'), name, type='ref', subtype='citation', location=(docname, lineno)) diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 30772c10574..4f336a4bfb4 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -6873,7 +6873,7 @@ def _check_template_consistency(self, nestedName: ASTNestedName, self.warn(msg) newTemplates: List[Union[ASTTemplateParams, ASTTemplateIntroduction]] = [] - for i in range(numExtra): + for _i in range(numExtra): newTemplates.append(ASTTemplateParams([])) if templatePrefix and not isMemberInstantiation: newTemplates.extend(templatePrefix.templates) @@ -7579,7 +7579,7 @@ def run(self) -> List[Node]: " need 'maxdepth' 0 for infinite or at least 2.", location=self.get_location()) signatures = self.get_signatures() - for i, sig in enumerate(signatures): + for sig in signatures: node.append(AliasNode(sig, aliasOptions, env=self.env)) contentnode = addnodes.desc_content() diff --git a/sphinx/domains/javascript.py b/sphinx/domains/javascript.py index 59e4740ba2b..2095d1d1008 100644 --- a/sphinx/domains/javascript.py +++ b/sphinx/domains/javascript.py @@ -385,10 +385,10 @@ def note_module(self, modname: str, node_id: str) -> None: self.modules[modname] = (self.env.docname, node_id) def clear_doc(self, docname: str) -> None: - for fullname, (pkg_docname, node_id, _l) in list(self.objects.items()): + for fullname, (pkg_docname, _node_id, _l) in list(self.objects.items()): if pkg_docname == docname: del self.objects[fullname] - for modname, (pkg_docname, node_id) in list(self.modules.items()): + for modname, (pkg_docname, _node_id) in list(self.modules.items()): if pkg_docname == docname: del self.modules[modname] diff --git a/sphinx/domains/math.py b/sphinx/domains/math.py index 78b7784a79d..7f66a473846 100644 --- a/sphinx/domains/math.py +++ b/sphinx/domains/math.py @@ -81,7 +81,7 @@ def math_node(node: Node) -> bool: self.data['has_equations'][docname] = any(document.findall(math_node)) def clear_doc(self, docname: str) -> None: - for equation_id, (doc, eqno) in list(self.equations.items()): + for equation_id, (doc, _eqno) in list(self.equations.items()): if doc == docname: del self.equations[equation_id] diff --git a/sphinx/domains/rst.py b/sphinx/domains/rst.py index 543a38e97f2..0899e02f801 100644 --- a/sphinx/domains/rst.py +++ b/sphinx/domains/rst.py @@ -235,7 +235,7 @@ def note_object(self, objtype: str, name: str, node_id: str, location: Any = Non self.objects[objtype, name] = (self.env.docname, node_id) def clear_doc(self, docname: str) -> None: - for (typ, name), (doc, node_id) in list(self.objects.items()): + for (typ, name), (doc, _node_id) in list(self.objects.items()): if doc == docname: del self.objects[typ, name] diff --git a/sphinx/environment/adapters/indexentries.py b/sphinx/environment/adapters/indexentries.py index 562462fbf4f..d13c24042dd 100644 --- a/sphinx/environment/adapters/indexentries.py +++ b/sphinx/environment/adapters/indexentries.py @@ -55,7 +55,7 @@ def add_entry(word: str, subword: str, main: str, link: bool = True, domain = cast(IndexDomain, self.env.get_domain('index')) for fn, entries in domain.entries.items(): # new entry types must be listed in directives/other.py! - for type, value, tid, main, index_key in entries: + for type, value, tid, main, index_key in entries: # noqa: B007 try: if type == 'single': try: diff --git a/sphinx/environment/collectors/toctree.py b/sphinx/environment/collectors/toctree.py index 250e16aa22d..ddc7a0417b5 100644 --- a/sphinx/environment/collectors/toctree.py +++ b/sphinx/environment/collectors/toctree.py @@ -177,7 +177,7 @@ def _walk_toc(node: Element, secnums: Dict, depth: int, titlenode: nodes.title = def _walk_toctree(toctreenode: addnodes.toctree, depth: int) -> None: if depth == 0: return - for (title, ref) in toctreenode['entries']: + for (_title, ref) in toctreenode['entries']: if url_re.match(ref) or ref == 'self': # don't mess with those continue @@ -261,7 +261,7 @@ def _walk_doctree(docname: str, doctree: Element, secnum: Tuple[int, ...]) -> No else: _walk_doctree(docname, subnode, secnum) elif isinstance(subnode, addnodes.toctree): - for title, subdocname in subnode['entries']: + for _title, subdocname in subnode['entries']: if url_re.match(subdocname) or subdocname == 'self': # don't mess with those continue diff --git a/sphinx/ext/apidoc.py b/sphinx/ext/apidoc.py index e8133baab44..07339d6e66e 100644 --- a/sphinx/ext/apidoc.py +++ b/sphinx/ext/apidoc.py @@ -227,7 +227,7 @@ def walk(rootpath: str, excludes: List[str], opts: Any def has_child_module(rootpath: str, excludes: List[str], opts: Any) -> bool: """Check the given directory contains child module/s (at least one).""" - for root, subs, files in walk(rootpath, excludes, opts): + for _root, _subs, files in walk(rootpath, excludes, opts): if files: return True diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 7b132c83b23..964c0f532f1 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -119,7 +119,7 @@ def process_autosummary_toc(app: Sphinx, doctree: nodes.document) -> None: def crawl_toc(node: Element, depth: int = 1) -> None: crawled[node] = True - for j, subnode in enumerate(node): + for subnode in node: try: if (isinstance(subnode, autosummary_toc) and isinstance(subnode[0], addnodes.toctree)): @@ -271,7 +271,7 @@ def run(self) -> List[Node]: docnames = [] excluded = Matcher(self.config.exclude_patterns) filename_map = self.config.autosummary_filename_map - for name, sig, summary, real_name in items: + for _name, _sig, _summary, real_name in items: real_name = filename_map.get(real_name, real_name) docname = posixpath.join(tree_prefix, real_name) docname = posixpath.normpath(posixpath.join(dirname, docname)) @@ -610,7 +610,7 @@ def limited_join(sep: str, items: List[str], max_chars: int = 30, n_chars = 0 n_items = 0 - for j, item in enumerate(items): + for item in items: n_chars += len(item) + len(sep) if n_chars < max_chars - len(overflow_marker): n_items += 1 diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index f1150599889..23686563075 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -318,7 +318,7 @@ def get_module_attrs(members: Any) -> Tuple[List[str], List[str]]: def get_modules(obj: Any) -> Tuple[List[str], List[str]]: items: List[str] = [] - for _, modname, ispkg in pkgutil.iter_modules(obj.__path__): + for _, modname, _ispkg in pkgutil.iter_modules(obj.__path__): fullname = name + '.' + modname try: module = import_module(fullname) diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index eb5c474d504..a14c396b60b 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -68,7 +68,7 @@ def check_uri(self, refnode: nodes.reference) -> None: uri = refnode['refuri'] - for alias, (base_uri, caption) in self.app.config.extlinks.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'): diff --git a/sphinx/ext/imgmath.py b/sphinx/ext/imgmath.py index 565deb5ff96..189bf878672 100644 --- a/sphinx/ext/imgmath.py +++ b/sphinx/ext/imgmath.py @@ -65,7 +65,7 @@ def read_svg_depth(filename: str) -> int: """Read the depth from comment at last line of SVG file """ with open(filename) as f: - for line in f: + for line in f: # noqa: B007 pass # Only last line is checked matched = depthsvgcomment_re.match(line) diff --git a/sphinx/ext/napoleon/__init__.py b/sphinx/ext/napoleon/__init__.py index fab918d4112..7f86b174597 100644 --- a/sphinx/ext/napoleon/__init__.py +++ b/sphinx/ext/napoleon/__init__.py @@ -288,7 +288,7 @@ def __unicode__(self): } def __init__(self, **settings: Any) -> None: - for name, (default, rebuild) in self._config_values.items(): + for name, (default, _rebuild) in self._config_values.items(): setattr(self, name, default) for name, value in settings.items(): setattr(self, name, value) diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index ab544139460..67b89f1c89c 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -112,7 +112,7 @@ def _guess_source_dir(self) -> str: for guess in ('doc', 'docs'): if not os.path.isdir(guess): continue - for root, dirnames, filenames in os.walk(guess): + for root, _dirnames, filenames in os.walk(guess): if 'conf.py' in filenames: return root return os.curdir diff --git a/sphinx/testing/path.py b/sphinx/testing/path.py index b16a9fff3c4..ef3b5c7d0ba 100644 --- a/sphinx/testing/path.py +++ b/sphinx/testing/path.py @@ -115,7 +115,7 @@ def copytree(self, destination: str, symlinks: bool = False) -> None: # as well. To avoid failures when adding additional files/directories # to the destination tree, ensure destination directories are not marked # read-only. - for root, dirs, files in os.walk(destination): + for root, _dirs, files in os.walk(destination): os.chmod(root, 0o755 & ~UMASK) for name in files: os.chmod(os.path.join(root, name), 0o644 & ~UMASK) diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index e2630df28ed..d062612cbb8 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -178,7 +178,7 @@ def build(self, *args: Any, **kwargs: Any) -> None: def find_files(root: str, suffix: bool = None) -> Generator[str, None, None]: - for dirpath, dirs, files in os.walk(root, followlinks=True): + for dirpath, _dirs, files in os.walk(root, followlinks=True): dirpath = path(dirpath) for f in [f for f in files if not suffix or f.endswith(suffix)]: # type: ignore fpath = dirpath / f diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index 08dcbe158cc..fb2824fe05e 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -462,7 +462,7 @@ def get_ref_key(node: addnodes.pending_xref) -> Optional[Tuple[str, str, str]]: # Extract and translate messages for index entries. for node, entries in traverse_translatable_index(self.document): new_entries: List[Tuple[str, str, str, str, str]] = [] - for type, msg, tid, main, key_ in entries: + for type, msg, tid, main, _key in entries: msg_parts = split_index_msg(type, msg) msgstr_parts = [] for part in msg_parts: diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index 1001a1bdf16..154bd60c1f1 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -88,7 +88,7 @@ def get_matching_files(dirname: str, dirs[:] = sorted(dirs[i] for (i, _) in qdirs) - for i, filename in sorted(qfiles): + for _i, filename in sorted(qfiles): yield filename @@ -132,7 +132,7 @@ def purge_doc(self, docname: str) -> None: self._existing.discard(unique) def merge_other(self, docnames: Set[str], other: Dict[str, Tuple[Set[str], Any]]) -> None: - for filename, (docs, unique) in other.items(): + for filename, (docs, _unique) in other.items(): for doc in docs & set(docnames): self.add_file(doc, filename) @@ -190,13 +190,13 @@ def add_file(self, docname: str, filename: str) -> str: return self[filename][1] def purge_doc(self, docname: str) -> None: - for filename, (docs, dest) in list(self.items()): + for filename, (docs, _dest) in list(self.items()): docs.discard(docname) if not docs: del self[filename] def merge_other(self, docnames: Set[str], other: Dict[str, Tuple[Set[str], Any]]) -> None: - for filename, (docs, dest) in other.items(): + for filename, (docs, _dest) in other.items(): for docname in docs & set(docnames): self.add_file(docname, filename) @@ -441,7 +441,7 @@ def split_full_qualified_name(name: str) -> Tuple[Optional[str], str]: calling this function. """ parts = name.split('.') - for i, part in enumerate(parts, 1): + for i, _part in enumerate(parts, 1): try: modname = ".".join(parts[:i]) import_module(modname) diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 2bbc25c9800..4f69b4f3842 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -75,7 +75,7 @@ def ensuredir(path: str) -> None: def mtimes_of_files(dirnames: List[str], suffix: str) -> Iterator[float]: for dirname in dirnames: - for root, dirs, files in os.walk(dirname): + for root, _dirs, files in os.walk(dirname): for sfile in files: if sfile.endswith(suffix): try: diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 46f736f3fde..0e95317d237 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1508,7 +1508,7 @@ def style(string: str) -> str: if not node.get('inline', True): self.body.append(CR) entries = node['entries'] - for type, string, tid, ismain, key_ in entries: + for type, string, _tid, ismain, _key in entries: m = '' if ismain: m = '|spxpagem' @@ -1976,7 +1976,7 @@ def visit_container(self, node: Element) -> None: def depart_container(self, node: Element) -> None: classes = node.get('classes', []) - for c in classes: + for _c in classes: self.body.append('\n\\end{sphinxuseclass}') def visit_decoration(self, node: Element) -> None: diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 351aef2f799..47f61e9b771 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -312,7 +312,7 @@ def collect_node_menus(self) -> None: del node_menus[top['node_name']] top['node_name'] = 'Top' # handle the indices - for name, content in self.indices: + for name, _content in self.indices: node_menus[name] = [] node_menus['Top'].append(name) @@ -320,7 +320,7 @@ def collect_rellinks(self) -> None: """Collect the relative links (next, previous, up) for each "node".""" rellinks = self.rellinks node_menus = self.node_menus - for id, entries in node_menus.items(): + for id in node_menus.keys(): rellinks[id] = ['', '', ''] # up's for id, entries in node_menus.items(): @@ -466,7 +466,7 @@ def tex_image_length(self, width_str: str) -> str: def collect_indices(self) -> None: def generate(content: List[Tuple[str, List[IndexEntry]]], collapsed: bool) -> str: ret = ['\n@menu\n'] - for letter, entries in content: + for _letter, entries in content: for entry in entries: if not entry[3]: continue @@ -1018,7 +1018,7 @@ def visit_colspec(self, node: Element) -> None: if len(self.colwidths) != self.n_cols: return self.body.append('\n\n@multitable ') - for i, n in enumerate(self.colwidths): + for n in self.colwidths: self.body.append('{%s} ' % ('x' * (n + 2))) def depart_colspec(self, node: Element) -> None: @@ -1054,7 +1054,7 @@ def visit_entry(self, node: Element) -> None: self.entry_sep = '@tab' def depart_entry(self, node: Element) -> None: - for i in range(node.get('morecols', 0)): + for _i in range(node.get('morecols', 0)): self.body.append('\n@tab\n') # -- Field Lists diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index 2e1dd474a24..9fef050c1ce 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -167,8 +167,8 @@ def cell_width(self, cell: Cell, source: List[int]) -> int: @property def cells(self) -> Generator[Cell, None, None]: seen: Set[Cell] = set() - for lineno, line in enumerate(self.lines): - for colno, cell in enumerate(line): + for line in self.lines: + for cell in line: if cell and cell not in seen: yield cell seen.add(cell) diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index 21df5cb2012..f69008b8f4b 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -716,7 +716,7 @@ def test_domain_c_build_field_role(app, status, warning): def _get_obj(app, queryName): domain = app.env.get_domain('c') - for name, dispname, objectType, docname, anchor, prio in domain.get_objects(): + for name, _dispname, objectType, docname, anchor, _prio in domain.get_objects(): if name == queryName: return (docname, anchor, objectType) return (queryName, "not", "found") diff --git a/tests/test_ext_napoleon.py b/tests/test_ext_napoleon.py index e484e1d0e7c..7090b1d64f3 100644 --- a/tests/test_ext_napoleon.py +++ b/tests/test_ext_napoleon.py @@ -101,9 +101,9 @@ def test_unknown_app_type(self): def test_add_config_values(self): app = mock.Mock(Sphinx) setup(app) - for name, (default, rebuild) in Config._config_values.items(): + for name in Config._config_values.keys(): has_config = False - for method_name, args, kwargs in app.method_calls: + for method_name, args, _kwargs in app.method_calls: if(method_name == 'add_config_value' and args[0] == name): has_config = True @@ -112,7 +112,7 @@ def test_add_config_values(self): has_process_docstring = False has_skip_member = False - for method_name, args, kwargs in app.method_calls: + for method_name, args, _kwargs in app.method_calls: if method_name == 'connect': if(args[0] == 'autodoc-process-docstring' and args[1] == _process_docstring): diff --git a/tests/test_intl.py b/tests/test_intl.py index 92d7badf46a..62dbb13528c 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -47,7 +47,7 @@ def write_mo(pathname, po): @pytest.fixture(autouse=True) def setup_intl(app_params): srcdir = path(app_params.kwargs['srcdir']) - for dirpath, dirs, files in os.walk(srcdir): + for dirpath, _dirs, files in os.walk(srcdir): dirpath = path(dirpath) for f in [f for f in files if f.endswith('.po')]: po = dirpath / f diff --git a/utils/doclinter.py b/utils/doclinter.py index 48e40e90a51..b4b27748a33 100644 --- a/utils/doclinter.py +++ b/utils/doclinter.py @@ -69,7 +69,7 @@ def main(args: List[str]) -> int: if os.path.isfile(path): errors += lint(path) elif os.path.isdir(path): - for root, dirs, files in os.walk(path): + for root, _dirs, files in os.walk(path): for filename in files: if filename.endswith('.rst'): path = os.path.join(root, filename) From 811230d94b5b9d6d686f600968c6042591733f0e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Jan 2022 04:40:53 +0000 Subject: [PATCH 156/192] Bump follow-redirects from 1.7.0 to 1.14.7 Bumps [follow-redirects](https://github.com/follow-redirects/follow-redirects) from 1.7.0 to 1.14.7. - [Release notes](https://github.com/follow-redirects/follow-redirects/releases) - [Commits](https://github.com/follow-redirects/follow-redirects/compare/v1.7.0...v1.14.7) --- updated-dependencies: - dependency-name: follow-redirects dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 28 ++++------------------------ 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/package-lock.json b/package-lock.json index 96cd10a63fc..ee40c8972b2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -422,30 +422,10 @@ "dev": true }, "follow-redirects": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz", - "integrity": "sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==", - "dev": true, - "requires": { - "debug": "^3.2.6" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } + "version": "1.14.7", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.7.tgz", + "integrity": "sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==", + "dev": true }, "fs-extra": { "version": "7.0.1", From 008005cc39838b37d2f78bdaf0d9cd3171cc3664 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 14 Jan 2022 02:25:00 +0900 Subject: [PATCH 157/192] Fix #9981: std domain: Strip value part of the option directive from genindex --- CHANGES | 1 + sphinx/domains/std.py | 2 +- tests/test_domain_std.py | 9 +++++---- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 7ce6b26778a..01766942103 100644 --- a/CHANGES +++ b/CHANGES @@ -41,6 +41,7 @@ Features added * #10055: sphinx-build: Create directories when ``-w`` option given * #9993: std domain: Allow to refer an inline target (ex. ``_`target name```) via :rst:role:`ref` role +* #9981: std domain: Strip value part of the option directive from general index * #9391: texinfo: improve variable in ``samp`` role * #9578: texinfo: Add :confval:`texinfo_cross_references` to disable cross references for readability with standalone readers diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 82803597de5..e9f75325a33 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -242,7 +242,7 @@ def add_target_and_index(self, firstname: str, sig: str, signode: desc_signature descr = _('%s command line option') % currprogram else: descr = _('command line option') - for option in sig.split(', '): + for option in signode.get('allnames', []): entry = '; '.join([descr, option]) self.indexnode['entries'].append(('pair', entry, signode['ids'][0], '', None)) diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 1428bce3177..00e7361a394 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -97,6 +97,9 @@ def test_cmd_option_with_optional_value(app): [desc, ([desc_signature, ([desc_name, '-j'], [desc_addname, '[=N]'])], [desc_content, ()])])) + assert_node(doctree[0], addnodes.index, + entries=[('pair', 'command line option; -j', 'cmdoption-j', '', None)]) + objects = list(app.env.get_domain("std").get_objects()) assert ('-j', '-j', 'cmdoption', 'index', 'cmdoption-j', 1) in objects @@ -355,10 +358,8 @@ def test_multiple_cmdoptions(app): [desc_addname, " directory"])], [desc_content, ()])])) assert_node(doctree[0], addnodes.index, - entries=[('pair', 'cmd command line option; -o directory', - 'cmdoption-cmd-o', '', None), - ('pair', 'cmd command line option; --output directory', - 'cmdoption-cmd-o', '', None)]) + entries=[('pair', 'cmd command line option; -o', 'cmdoption-cmd-o', '', None), + ('pair', 'cmd command line option; --output', 'cmdoption-cmd-o', '', None)]) assert ('cmd', '-o') in domain.progoptions assert ('cmd', '--output') in domain.progoptions assert domain.progoptions[('cmd', '-o')] == ('index', 'cmdoption-cmd-o') From 8ba20898b4faa08cec2481304818cbcc6f6f889b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 14 Jan 2022 02:56:47 +0900 Subject: [PATCH 158/192] Update CHANGES for PR #9551 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 7ce6b26778a..197c64df93a 100644 --- a/CHANGES +++ b/CHANGES @@ -29,6 +29,8 @@ Features added * #9961: html: Support nested HTML elements in other HTML builders * #10013: html: Allow to change the loading method of JS via ``loading_method`` parameter for :meth:`Sphinx.add_js_file()` +* #9551: html search: "Hide Search Matches" link removes "highlight" parameter + from URL * #9815: html theme: Wrap sidebar components in div to allow customizing their layout via CSS * #9827: i18n: Sort items in glossary by translated terms From a73df1e0f253955a853c80df62b7d5fce1e08e3f Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Thu, 13 Jan 2022 20:14:45 +0100 Subject: [PATCH 159/192] Skip "data:" URIs in ImageConverter --- sphinx/transforms/post_transforms/images.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sphinx/transforms/post_transforms/images.py b/sphinx/transforms/post_transforms/images.py index 8e2f9e2fadd..1a6d4f6d5cd 100644 --- a/sphinx/transforms/post_transforms/images.py +++ b/sphinx/transforms/post_transforms/images.py @@ -200,6 +200,9 @@ def match(self, node: nodes.image) -> bool: elif set(self.guess_mimetypes(node)) & set(self.app.builder.supported_image_types): # builder supports the image; no need to convert return False + elif node['uri'].startswith('data:'): + # all data URI MIME types are assumed to be supported + return False elif self.available is None: # store the value to the class variable to share it during the build self.__class__.available = self.is_available() From 99f905b8b4935ba8c316d081853092a415bb0ea1 Mon Sep 17 00:00:00 2001 From: danieleades <33452915+danieleades@users.noreply.github.com> Date: Fri, 14 Jan 2022 08:57:56 +0000 Subject: [PATCH 160/192] Update sphinx/writers/texinfo.py Co-authored-by: Takeshi KOMIYA --- sphinx/writers/texinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 47f61e9b771..7913972a932 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -320,7 +320,7 @@ def collect_rellinks(self) -> None: """Collect the relative links (next, previous, up) for each "node".""" rellinks = self.rellinks node_menus = self.node_menus - for id in node_menus.keys(): + for id in node_menus: rellinks[id] = ['', '', ''] # up's for id, entries in node_menus.items(): From 18d7dfbd9526e96ee6272cce73bc4af246dd4f61 Mon Sep 17 00:00:00 2001 From: danieleades <33452915+danieleades@users.noreply.github.com> Date: Fri, 14 Jan 2022 08:58:02 +0000 Subject: [PATCH 161/192] Update tests/test_ext_napoleon.py Co-authored-by: Takeshi KOMIYA --- tests/test_ext_napoleon.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ext_napoleon.py b/tests/test_ext_napoleon.py index 7090b1d64f3..250fdae26fb 100644 --- a/tests/test_ext_napoleon.py +++ b/tests/test_ext_napoleon.py @@ -101,7 +101,7 @@ def test_unknown_app_type(self): def test_add_config_values(self): app = mock.Mock(Sphinx) setup(app) - for name in Config._config_values.keys(): + for name in Config._config_values: has_config = False for method_name, args, _kwargs in app.method_calls: if(method_name == 'add_config_value' and From 9c68cd12d7d22585d3beec04aed7c1dcc2939020 Mon Sep 17 00:00:00 2001 From: danieleades <33452915+danieleades@users.noreply.github.com> Date: Fri, 14 Jan 2022 08:58:54 +0000 Subject: [PATCH 162/192] Update recipe.py --- doc/development/tutorials/examples/recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 62c320d379f..7af8af90dca 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -87,7 +87,7 @@ def generate(self, docnames=None): # first letter of the recipe as a key to group thing # # name, subtype, docname, anchor, extra, qualifier, description - for _name, dispname, typ, docname, anchor, _ in recipes: + for _name, dispname, typ, docname, anchor, _priority in recipes: content[dispname[0].lower()].append( (dispname, 0, docname, anchor, docname, '', typ)) From 0938c193ea6f56dbb930bfb323602bc4e2b7b9c6 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 15 Jan 2022 15:18:36 +0900 Subject: [PATCH 163/192] Update CHANGES for PR #10099 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 197c64df93a..a1bb6dc82d8 100644 --- a/CHANGES +++ b/CHANGES @@ -66,6 +66,7 @@ Bugs fixed * #9909: HTML, prevent line-wrapping in literal text. * #10061: html theme: Configuration values added by themes are not be able to override from conf.py +* #10073: imgconverter: Unnecessary availablity check is called for "data" URIs * #9925: LaTeX: prohibit also with ``'xelatex'`` line splitting at dashes of inline and parsed literals * #9944: LaTeX: extra vertical whitespace for some nested declarations @@ -78,6 +79,7 @@ Bugs fixed * #10057: Failed to scan documents if the project is placed onto the root directory + Testing -------- From 44e6d0ce2aaada8c997b64101b2eb8f69e47aedd Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 15 Jan 2022 19:59:45 +0900 Subject: [PATCH 164/192] doc: Remove a mention to :dedent: 0 `:dedent: 0` option for the code-block directive is a secret feature. So it should not be mentioned in our docs. --- CHANGES | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGES b/CHANGES index b90a0593936..ea5acc6982f 100644 --- a/CHANGES +++ b/CHANGES @@ -78,10 +78,8 @@ Bugs fixed * #9979: Error level messages were displayed as warning messages * #10057: Failed to scan documents if the project is placed onto the root directory -* #9636: code-block: ``:dedent:`` handled numeric argument ``0`` like no argument was given * #9636: code-block: ``:dedent:`` without argument did strip newlines - Testing -------- From e2f141620d11e931f0dd94a4690b341ad37d334c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 15 Jan 2022 20:01:30 +0900 Subject: [PATCH 165/192] Fix a flake8 warning --- tests/test_directive_code.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_directive_code.py b/tests/test_directive_code.py index e67f9599c45..5f519d3b924 100644 --- a/tests/test_directive_code.py +++ b/tests/test_directive_code.py @@ -581,6 +581,7 @@ def test_linenothreshold(app, status, warning): assert ('# Very small literal include ' '(linenothreshold check)' in html) + @pytest.mark.sphinx('dummy', testroot='directive-code') def test_code_block_dedent(app, status, warning): app.builder.build(['dedent']) From ff54f97aba881f31359d983d1e82c63199886768 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 15 Jan 2022 20:35:21 +0900 Subject: [PATCH 166/192] code-block: Pass list of strings ends with CR code to dedent_lines() --- sphinx/directives/code.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 046916bde66..ddd47e1f838 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -58,7 +58,7 @@ def run(self) -> List[Node]: def dedent_lines(lines: List[str], dedent: int, location: Tuple[str, int] = None) -> List[str]: if dedent is None: - return textwrap.dedent('\n'.join(lines)).split('\n') + return textwrap.dedent(''.join(lines)).splitlines(True) if any(s[:dedent].strip() for s in lines): logger.warning(__('non-whitespace stripped by dedent'), location=location) @@ -138,9 +138,9 @@ def run(self) -> List[Node]: if 'dedent' in self.options: location = self.state_machine.get_source_and_line(self.lineno) - lines = code.split('\n') + lines = code.splitlines(True) lines = dedent_lines(lines, self.options['dedent'], location=location) - code = '\n'.join(lines) + code = ''.join(lines) literal: Element = nodes.literal_block(code, code) if 'linenos' in self.options or 'lineno-start' in self.options: From 4b8bb7b3019db18726bcd5dbeac60e1897f3e9c0 Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe <50501825+Gobot1234@users.noreply.github.com> Date: Sat, 15 Jan 2022 13:43:20 +0000 Subject: [PATCH 167/192] Only add returns section if there is something --- sphinx/ext/napoleon/docstring.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/sphinx/ext/napoleon/docstring.py b/sphinx/ext/napoleon/docstring.py index d8cb75a5fd6..5bfe88191ef 100644 --- a/sphinx/ext/napoleon/docstring.py +++ b/sphinx/ext/napoleon/docstring.py @@ -769,12 +769,9 @@ def _parse_references_section(self, section: str) -> List[str]: def _parse_returns_section(self, section: str) -> List[str]: fields = self._consume_returns_section() multi = len(fields) > 1 - if multi: - use_rtype = False - else: - use_rtype = self._config.napoleon_use_rtype - + use_rtype = False if multi else self._config.napoleon_use_rtype lines: List[str] = [] + for _name, _type, _desc in fields: if use_rtype: field = self._format_field(_name, '', _desc) @@ -787,7 +784,8 @@ def _parse_returns_section(self, section: str) -> List[str]: else: lines.extend(self._format_block(':returns: * ', field)) else: - lines.extend(self._format_block(':returns: ', field)) + if any(field): # only add :returns: if there's something to say + lines.extend(self._format_block(':returns: ', field)) if _type and use_rtype: lines.extend([':rtype: %s' % _type, '']) if lines and lines[-1]: From dc60b1db76b5fb18c5cb84c03133a14231c7c65c Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe <50501825+Gobot1234@users.noreply.github.com> Date: Sat, 15 Jan 2022 13:59:25 +0000 Subject: [PATCH 168/192] Add a test for this --- tests/test_ext_napoleon_docstring.py | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index acf0001784d..71b02915457 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -263,6 +263,19 @@ class GoogleDocstringTest(BaseDocstringTest): :returns: Extended description of return value """ + ), + ( + """ + Single line summary + + Returns: + Extended + """, + """ + Single line summary + + :returns: Extended + """ ), ( """ Single line summary @@ -1118,7 +1131,7 @@ def test_noindex(self): .. method:: func(i, j) :noindex: - + description """ # NOQA config = Config() From d52adad64eb5dddc8d9adc328cafbe4717de02ff Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe <50501825+Gobot1234@users.noreply.github.com> Date: Sat, 15 Jan 2022 14:04:38 +0000 Subject: [PATCH 169/192] Fix formatting --- tests/test_ext_napoleon_docstring.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index 71b02915457..e64a7492185 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -263,8 +263,7 @@ class GoogleDocstringTest(BaseDocstringTest): :returns: Extended description of return value """ - ), - ( + ), ( """ Single line summary From 76c9b3c6055964b20bc0b0f79f6e37914f620ebc Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 15 Jan 2022 15:34:22 +0900 Subject: [PATCH 170/192] Fix #9413: xml: Invalid XML was generated when cross referencing python objects --- CHANGES | 1 + sphinx/builders/xml.py | 3 +++ 2 files changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index a1bb6dc82d8..2fd0c8e9c54 100644 --- a/CHANGES +++ b/CHANGES @@ -75,6 +75,7 @@ Bugs fixed * #10015: py domain: types under the "typing" module are not hyperlinked defined at info-field-list * #9390: texinfo: Do not emit labels inside footnotes +* #9413: xml: Invalid XML was generated when cross referencing python objects * #9979: Error level messages were displayed as warning messages * #10057: Failed to scan documents if the project is placed onto the root directory diff --git a/sphinx/builders/xml.py b/sphinx/builders/xml.py index fdef142596b..c4e066089fc 100644 --- a/sphinx/builders/xml.py +++ b/sphinx/builders/xml.py @@ -71,6 +71,9 @@ def write_doc(self, docname: str, doctree: Node) -> None: # work around multiple string % tuple issues in docutils; # replace tuples in attribute values with lists doctree = doctree.deepcopy() + for domain in self.env.domains.values(): + xmlns = "xmlns:" + domain.name + doctree[xmlns] = "https://www.sphinx-doc.org/" # type: ignore for node in doctree.findall(nodes.Element): for att, value in node.attributes.items(): if isinstance(value, tuple): From ff2105a2f3cea9e0997b26a1416582c01b5b4c74 Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe Date: Sat, 15 Jan 2022 17:31:23 +0000 Subject: [PATCH 171/192] Update tests/test_ext_napoleon_docstring.py --- tests/test_ext_napoleon_docstring.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index e64a7492185..e0ddc8b2f16 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -1130,7 +1130,7 @@ def test_noindex(self): .. method:: func(i, j) :noindex: - + description """ # NOQA config = Config() From da3981ae303921b578bc7b885695c5743ed2fe18 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 16 Jan 2022 02:43:41 +0900 Subject: [PATCH 172/192] Update CHANGES for PR #10101 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index e2f082b11fa..d2ddae71c86 100644 --- a/CHANGES +++ b/CHANGES @@ -63,6 +63,7 @@ Bugs fixed ``autodoc_class_signature = 'separated'`` * #9947: i18n: topic directive having a bullet list can't be translatable * #9878: mathjax: MathJax configuration is placed after loading MathJax itself +* #9932: napoleon: empty "returns" section is generated even if no description * #9857: Generated RFC links use outdated base url * #9909: HTML, prevent line-wrapping in literal text. * #10061: html theme: Configuration values added by themes are not be able to From d1e1d8645fd195e8d5abdf06e4d25d30a18b9f94 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 16 Jan 2022 00:13:04 +0000 Subject: [PATCH 173/192] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70297 -> 70297 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 100906 -> 100906 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 76037 -> 76037 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 86012 -> 86012 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83893 -> 83893 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19643 -> 19643 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81072 -> 81072 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/sphinx.pot | 236 +++++++-------- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78365 -> 78365 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 34 +-- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63197 -> 63164 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 275 +++++++++--------- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 268 ++++++++--------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 268 ++++++++--------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41670 -> 41670 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 268 ++++++++--------- 125 files changed, 4920 insertions(+), 4919 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 2cadd62569ee7f2a8e5ce12795570e0ecf1f2721..8f0ddedfaee83de5d471ee73a04e295be33c0492 100644 GIT binary patch delta 14 VcmZp)YqZ;-EWl{FSw-M39{?iv1a1HT delta 16 XcmZp)YqZ;-EHK$yfOoTjz(qa)F1H0Q diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 97d0db8dbc8..f23e40cf58b 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3453,25 +3453,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 371c92eecd02d271018142c0aaa85c6dbf9c1bfb..2339b4738e7ec26209a631fcf53b8cc0a870c9f3 100644 GIT binary patch delta 12 Tcmey${FQk^C!^)Yu53mCBk=_5 delta 12 Tcmey${FQk^C!^8Eu53mCBhCcm diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index bde5bc9127b..c7e8219b886 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 15acf9527adaef895bc67440ec4db094d39c7251..e03e02a961e8e2f3d66bab00c641fb73a10415c0 100644 GIT binary patch delta 14 WcmbPjKihu8PF_aK&AWIX3IYHvI|b1I delta 14 WcmbPjKihu8PF_Z%&AWIX3IYHv5e3Qs diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index df8971873dd..d2612dd2b74 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 0ebfea646e8f082f91b44a24008a51db7f1888dd..ed993edcd5c4ca9c04a4853ae83f322367b56c38 100644 GIT binary patch delta 14 VcmbQMGgoKB5?)5j%}aSJH~=ZT1rq=O delta 16 YcmbQMGgoKB65h#YczHK(\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 2e187f0fd2c5f0288c6c2c73d1b26ddb05aecb74..5eb8e2378f5eb8e4ef47bd31d85ca20106b85990 100644 GIT binary patch delta 14 VcmaDU^ipU;87rgZ=5p3g%m6J!1%Lnm delta 16 YcmaDU^ipU;8SCVEth}3>S)VZj06fnIi2wiq diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 5e866aac4cf..ce12949c0f1 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 2a34e0b74a07fe0c622929cd53df1f436a582f3a..551f4cf99eb943e948ca6ac438de674ebc9555a3 100644 GIT binary patch delta 15 WcmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabulka %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -889,7 +889,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1900,44 +1900,44 @@ msgstr "Vrací" msgid "Return type" msgstr "Typ návratové hodnoty" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "proměnná" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "proměnná prostředí; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "termín v glosáři" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "token gramatiky" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "referenční návěstí" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "proměnná prostředí" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "volba programu" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Rejstřík modulů" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhledávací stránka" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2986,12 +2986,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3096,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,40 +3438,40 @@ msgstr "Sbalit boční lištu" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,16 +3513,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index dadd29e69cb598116486116d90e219a1daa58d91..d6a9c2edb225e6d530dbd428003cff58dcd8eaa6 100644 GIT binary patch delta 14 VcmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3453,25 +3453,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 0275eb81fd6ea9397042ab9cc57cbbdab889c5bf..1dc761c5545b70a737cad603cefa3b53f35319b2 100644 GIT binary patch delta 14 Vcmdm)u`^?XkpiRTW@8055dbV=1fKu^ delta 16 Xcmdm)u`^?Xk;3FC1>Vi}3crK_JkJJx diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 0f49baf9d20..ee86a5fed37 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -1860,7 +1860,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2844,7 +2844,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2897,7 +2897,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2907,33 +2907,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3455,25 +3455,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3567,12 +3567,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 933de17f51151637fa2425109b9296738048304d..bcfaec7fac8a7972f68a160483e4a982414e7de4 100644 GIT binary patch delta 15 XcmZ1)xioUaQYj`wv(3w;{s{sAH8KWR delta 16 YcmZ1)xioUaQmM&jrT8{)mii\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -69,7 +69,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "erledigt" @@ -196,27 +196,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Keine solche Konfigurationseinstellung: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Konfigurationswert %r bereits gesetzt" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -224,57 +224,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Abschnitt %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Abb. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tab. %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Quellcode %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r nicht gefunden, daher ignoriert." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -497,17 +497,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -790,22 +790,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -891,7 +891,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -901,7 +901,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -922,7 +922,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1099,7 +1099,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1152,66 +1152,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1230,135 +1230,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1860,7 +1860,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1902,44 +1902,44 @@ msgstr "Rückgabe" msgid "Return type" msgstr "Rückgabetyp" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "Member" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "Variable" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "Typ" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2212,24 +2212,24 @@ msgstr "Rolle" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "Umgebungsvariable; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2245,79 +2245,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "Glossareintrag" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "Grammatik-Token" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "Referenz-Label" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "Umgebungsvariable" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "Programmoption" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Suche" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2844,7 +2844,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2897,7 +2897,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2907,33 +2907,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2988,12 +2988,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3098,30 +3098,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3440,40 +3440,40 @@ msgstr "Seitenleiste einklappen" msgid "Contents" msgstr "Inhalt" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3515,16 +3515,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3567,12 +3567,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index abc7aa4fc8ced18f884748c3479fbe5887105f19..b386770a4a8d100261ab14b10cc6591e77d3fe64 100644 GIT binary patch delta 17 YcmZo@V{K?--JsCKWN5Zosp;MU05@C)#{d8T delta 18 ZcmZo@V{K?--JsAk*`tYXvtHAs0{}yR2gv{c diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 424963da6f5..bfebbadfd63 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -68,7 +68,7 @@ msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχ msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "ολοκλήρωση" @@ -195,27 +195,27 @@ msgstr "δεν είναι δυνατή η υπερσκέλιση της ρύθμ msgid "unknown config value %r in override, ignoring" msgstr "άγνωστη τιμή παραμετροποίσης %r στην υπερσκέλιση, θα αγνοηθεί" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Δεν υπάρχει τέτοια τιμή παραμετροποίησης: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Η τιμή παραμετροποίησης %r υφίσταται ήδη." -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Υπάρχει ένα συντακτικό λάθος στο αρχείο παραμετροποίησής σας: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Το αρχείο παραμετροποίησης (ή ένα από τα στοιχεία που εισάγει) κάλεσε την sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -223,57 +223,57 @@ msgid "" "%s" msgstr "Υπάρχει ένα προγραμματιστικό λάθος στο αρχείο παραμετροποίησής σας:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Η τιμή παραμτετροποίησης 'source_suffix' αναμένει στοιχειοσειρά, στοιχειοσειρά καταλόγου, ή λεξικό. Αλλά παραδόθηκε %r." -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Τομέας %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Εικ. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Πίνακας %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Λίστα %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Η τιμή παραμετροποίησης '{name}' πρέπει να λαμβάνει μία από τις {candidates} αλλά εκχωρήθηκε η '{current}'." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Η τιμή παραμετροποίησης '{name]' έχει τύπο '[current__name__}'; αναμενόμενη {permitted}." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Η τιμή παραμετροποίησης '{name}' έχει τύπο '{current__name__}', αρχικοποίηση σε '{default__name__}'." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "το primary_domain %r δεν βρέθηκε, θα αγνοηθεί." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -496,17 +496,17 @@ msgstr "η ρύθμιση %s.%s δεν εμφανίζεται από τις πα msgid "unsupported theme option %r given" msgstr "δόθηκε μη υποστηριζόμενη επιλογή θέματος %r" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "το αρχείο %r στο μονοπάτι θέματος δεν αποτελεί ένα έγκυρο zipfile ή δεν περιλαμβάνει ένα θέμα" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "δεν βρέθηκε θέμα με όνομα %r (απουσιάζει το theme.conf;)" @@ -789,22 +789,22 @@ msgstr "ανάγνωση προτύπων..." msgid "writing message catalogs... " msgstr "εγγραφή καταλόγων μηνύματος..." -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Αναζητήστε οποιαδήποτε λάθη στο παραπάνω αποτέλεσμα ή σε %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "λανθασμένος σύνδεσμος: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Δεν βρέθηκε το anchor '%s'" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -890,7 +890,7 @@ msgid "The text files are in %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "σφάλμα καταγραφής αρχείου %s: %s" @@ -900,7 +900,7 @@ msgstr "σφάλμα καταγραφής αρχείου %s: %s" msgid "The XML files are in %(outdir)s." msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Τα αρχεία XML βρίσκονται σε %(outdir)s." @@ -921,7 +921,7 @@ msgid "Failed to read build info file: %r" msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1098,7 +1098,7 @@ msgstr "δεν βρέθηκε τιμή παραμετροποίησης \"latex_ msgid "\"latex_documents\" config value references unknown document %s" msgstr "η τιμή παραμετροποίησης \"latex_documents\" κάνει αναφορά το άγνωστο κείμενο %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1151,66 +1151,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Παρουσιάστηκε εξαίρεση κατά τη μεταγλώττιση, εκκίνηση αποσφαλματιστή: " -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "σφάλμα reST markup:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Σφάλμα κωδικοποίησης:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "Το πλήρες ιστορικό έχει αποθηκευτεί σε %s, σε περίπτωση που επιθυμείτε να αναφέρετε το ζήτημα στους προγραμματιστές." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Σφάλμα αναδρομής:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Εμφανίστηκε εξαίρεση:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Παρακαλείστε να το αναφέρετε αν ήταν ένα σφάλμα χρήσης, ώστε ένα καλύτερο μήνυμα σφάλματος να δοθεί την επόμενη φορά." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "Μία αναφορά σφάλματος μπορεί να υποβληθεί στον ινχηλάτη στο https://github.com/sphinx-doc/sphinx/issues>. Ευχαριστούμε!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1229,135 +1229,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "μονοπάτι για τα αρχεία πηγής τεκμηρίωσης" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "μονοπάτι στον κατάλογο εξόδου" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "μία λίστα με συγκεκριμένα αρχεία να επαναμεταγλωττιστούν. Θα αγνοηθεί αν δοθεί το -a" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "γενικές επιλογές" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "μεταγλωττιστής για χρήση (προεπιλογή: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "εγγραφή όλων των αρχείων (προεπιλογή: εγγραφή μόνο νέων και αλλαγμένων αρχείων)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "μην χρησιμοποιείτε ένα αποθηκευμένο περιβάλλον, πάντα να διαβάζετε όλα τα αρχεία" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "μονοπάτι για το αποθηκευμένο περιβάλλον και τα αρχεία doctree (προεπιλογή: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "παράλληλος μεταγλωττισμός με Ν διεργασίες όπου είναι δυνατό (ιδιαίτερη τιμή \"auto\" θα ορίσει Ν στο cpu-count)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "το μονοπάτι όπου βρίσκεται το αρχείο παραμετροποίησης (conf.py) (προεπιλογή: το ίδιο όπως το SOURCEDIR)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "να μη χρησιμοποιηθεί κανένα αρχείο παραμετροποίησης, μόνο επιλογές -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "παράκαμψη ρύθμισης στο αρχείο παραμετροποίησης" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "μεταφορά τιμής στα πρότυπα HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "ορίστε ετικέτα: συμπεριλάβατε \"only\" τμήματα με TAG" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "Ο τρόπος nit-picky, προειδοποιεί για όλες τις αναφορές που απουσιάζουν" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "επιλογές εξόδου κονσόλας" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "αυξήστε τον βερμπαλισμό (μπορεί να επαναληφθεί)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "καμία έξοδος στο stdout, μόνο προειδοποιήσεις στο stderr" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "κανένα αποτέλεσμα ούτε προειδοποιήσεις" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "να γίνεται εκπομπή χρωματιστής εξόδου (προεπιλογή: auto-detect)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "να μην παρουσιάζεται έγχρωμο αποτέλεσμα (προεπιλογή: αυτόματη αναγνώριση)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "προειδοποιήσεις εγγραφής (και σφάλματα) στο δοθέν αρχείο" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "μετατροπή προειδοποιήσεων σε σφάλματα" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "απεικόνιση πλήρους ιστορικού σε περίπτωση εξαίρεσης" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "εκτέλεση Pdb σε περίπτωση εξαίρεσης" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "δεν είναι δυνατή η εύρεση αρχείων %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "δεν γίνεται συνδιασμός της επιλογής -a και των ονομάτων αρχείων" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "δεν είναι δυνατό το άνοιγμα του αρχείου προειδοποίησης %r: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "Το όρισμα -D πρέπει να είναι της μορφής όνομα=τιμέ" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "Το όρισμα -Α πρέπει να είναι της μορφής όνομα=τιμή" @@ -1859,7 +1859,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1901,44 +1901,44 @@ msgstr "Επιστρέφει" msgid "Return type" msgstr "Επιστρεφόμενος τύπος" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "μέλος" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "ένωση" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "τύπος" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2061,7 +2061,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Ανέγκυρο math_eqref_format: %r" @@ -2211,24 +2211,24 @@ msgstr "ρόλος" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "μεταβλητή περιβάλλοντος; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Λανθασμένη περιγραφή επιλογής %r, θα πρέπει να μοιάζει με \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" ή \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2244,79 +2244,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "γλωσσάρι" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "γραμματική ένδειξη" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "ετικέτα αναφοράς" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "μεταβλητή περιβάλλοντος" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "επιλογή προγράμματος" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "έγγραφο" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Ευρετήριο μονάδων" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Σελίδα αναζήτησης" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "το numfig έχει απενεργοποιηθεί. Το :numref: θα ανγοηθεί." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "ο σύνδεσμος δεν έχει λεζάντα: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "ανέγκυρο numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "ανέγκυρο numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2843,7 +2843,7 @@ msgstr "ανέγκυρη υπογραφή για αυτόματο %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "σφάλμα κατά τη μορφοποίηση των ορισμάτων για %s:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "απουσιάζει το χαρακτηριστικό %s στο αντικείμενο %s" @@ -2896,7 +2896,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2906,33 +2906,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Βάσεις: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2987,12 +2987,12 @@ msgstr "αδυναμία ανάλυσης ονόματος %s" msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3097,30 +3097,30 @@ msgstr "" msgid "References" msgstr "Αναφορές" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Προειδοποιήσεις" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "Αποδόσεις" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3439,40 +3439,40 @@ msgstr "Κλείσιμο πλαϊνής μπάρας" msgid "Contents" msgstr "Περιεχόμενα" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "βρέθηκε ευρετήριο βασιζόμενο σε 4 στήλες. Μπορεί να αποτελεί σφάλμα της επέκτασης που χρησιμοποιείτε: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Δεν υπάρχει αναφορά για την υποσημείωση [%s]." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "Η υποσημείωση [#] δεν αναφέρεται." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "ασυνεπείς αναφορές υποσημείωσης στα μεταφρασμένα μηνύματα. original: {0}, translated: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "ασυνεπείς αναφορές στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "ασυνεπείς αναφορές παραπομπής στο μεταφρασμένο μήνυμα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3514,16 +3514,16 @@ msgstr "Δεν ήταν δυνατή η λήψη απομακρυσμένης ε msgid "Unknown image format: %s..." msgstr "Άγνωστος τύπος αρχείου: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "παράβλεψη" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "αποτυχία" @@ -3566,12 +3566,12 @@ msgid "" "it directly: %s" msgstr "Ανέγκυρος τύπος ημερομηνίας. Τοποθετείστε στη στοιχειοσειρά μονά εισαγωγικά εάν θέλετε να το εξάγετε απευθείας: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "το toctree περιλαμβάνει αναφορά σε άγνωστο αρχείο %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έκφρασης οδηγίας: %s" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 7b6ea7daac3d201a430d8c710ad14eb0a2567092..4550c5b4d7a1e5558acddaf3ec90dd2f5885a720 100644 GIT binary patch delta 12 Tcmcb?e1myHC!^)YE\n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 23eb6ae33f9501e31338be6104167cd852d7b554..6972d87dd257e1a9011e1595885fb790d328d9f9 100644 GIT binary patch delta 13 UcmeBT>0+7C!DMK*v8#a*03J#NS^xk5 delta 13 UcmeBT>0+7CF>wRm#%U#t03>k*KmY&$ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 31129cd7e6a..22e4477f513 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index dee7d0b01755ed90129304a41e1df183b065ffde..3ef9839ea1ff4200dfc0fe040b9438772c81435c 100644 GIT binary patch delta 13 UcmZo=X=Rzv!DMK*v8$R903FB#O8@`> delta 13 UcmZo=X=RzvF>wRm#%cMC03+`OF#rGn diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 98ab04700ac..c4298885c68 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index ae664cd9f1630613fdfc930b99a9b6f3aa3df38e..cc26d76798970de80e825d9c87a67c18db974705 100644 GIT binary patch delta 14 VcmX@WcYtq$F$<&RW)l`3W&k661GoSH delta 15 WcmX@WcYtq$G0Ws=7T(1UEX)8Z@&s)F diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 1740917100a..f139bee2508 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: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3453,25 +3453,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index d20a5819579b3bb341a2510cacf318d4a6f527a0..3feb35ba46bb96a7700d8e9d959b626a22783c47 100644 GIT binary patch delta 17 ZcmbQalx5~pmJRzRF&Ua|J}~KKJpe}J2ulC} delta 18 acmbQalx5~pmJRzRO@20sZ}XW+XX^o3g9-Zp diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index cdb92ef4631..ceb48ea6da6 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -72,7 +72,7 @@ msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "hecho" @@ -199,27 +199,27 @@ msgstr "no se puede reemplazar los ajustes de configuración %r con tipo no comp msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "No hay tal valor de configuración: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Valor de configuración %r ya presente" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Hay un error de sintaxis en su archivo de configuración: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "El archivo de configuración (o uno de los módulos que importa) invocó sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -227,57 +227,57 @@ msgid "" "%s" msgstr "Hay un error programable en su archivo de configuración:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "El valor de configuración `source_suffix' espera una cadena de caracteres, una lista de cadena de caracteres o un diccionario. Pero `%r' es dado." -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabla %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Lista %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "El valor de configuración `{name}` tiene que ser uno de {candidates}, pero fue dado `{current}`." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "El valor de configuración `{name}' tiene tipo `{current.__name__}'; esperado {permitted}." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "El valor de configuración `{name}' tiene el tipo `{current.__name__}', el valor predeterminado es `{default.__name__}'." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r no fue encontrado, se ignora." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -500,17 +500,17 @@ msgstr "configuración de %s.%s se produce en ninguna de las configuraciones de msgid "unsupported theme option %r given" msgstr "opción de tema no soportada %r fue dada" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "archivo %r o ruta del tema no es un archivo zip válido o no contiene ningún tema" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "sin tema llamado %r encontrado (¿falta el archivo theme.conf?)" @@ -793,22 +793,22 @@ msgstr "leyendo plantillas..." msgid "writing message catalogs... " msgstr "escribiendo catálogos de mensajes..." -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Busque cualquier error en la salida anterior o en el archivo %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "enlace roto: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Ancla '%s' no encontrado" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -894,7 +894,7 @@ msgid "The text files are in %(outdir)s." msgstr "Los archivos de texto están en %(outdir)s." #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "error escribiendo archivo %s: %s" @@ -904,7 +904,7 @@ msgstr "error escribiendo archivo %s: %s" msgid "The XML files are in %(outdir)s." msgstr "Los archivos XML están en %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Los archivos pseudo-XML están en %(outdir)s." @@ -925,7 +925,7 @@ msgid "Failed to read build info file: %r" msgstr "Error al leer la información de compilación del fichero: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1102,7 +1102,7 @@ msgstr "no se encontró el valor de configuración \"latex_documents\"; no se es msgid "\"latex_documents\" config value references unknown document %s" msgstr "El valor de configuración \"latex_documents\" hace referencia a un documento desconocido %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1155,66 +1155,66 @@ msgstr "%r no tiene configuración de \"tema\"" msgid "%r doesn't have \"%s\" setting" msgstr "%r no tiene configuración de \"%s\"" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Ha ocurrido un error al compilar, iniciando depurador:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "¡Interrumpido!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "error en marcado de reST" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Error de codificación:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "El rastreo completo se ha guardado en %s, si desea informar el problema a los desarrolladores." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Error de recursión:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Ha ocurrido una excepción:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Por favor, informe también esto si fue un error del usuario, de modo que la próxima vez se pueda proporcionar un mejor mensaje de error." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "Se puede presentar un informe de error en el rastreador en . ¡Gracias!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "número de trabajo debe ser un número positivo" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1233,135 +1233,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "ruta a los archivos fuente de la documentación" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "ruta al directorio de salida" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "una lista de archivos específicos para reconstruir. Ignorado si se especifica -a" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "opciones generales" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "constructor a usar (por defecto: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "escribir todos los archivos (por defecto: solo escribir archivos nuevos y modificados)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "no usar un entorno guardado, siempre leer todos los archivos" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "ruta para el entorno en caché y los archivos doctree (predeterminado: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "construir en paralelo con N procesos donde sea posible (el valor especial \"auto\" establecerá N en recuento de CPU)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "ruta del archivo de configuración (conf.py) donde se encuentra (predeterminado: igual que el valor SOURCEDIR)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "no use ningún archivo de configuración, solomente opciones -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "sobreescribir un ajuste en el fichero de configuración" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "pasar un valor a la plantilla HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "define la etiqueta: incluye bloques \"only\" con TAG" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "modo quisquilloso, advierte sobre todas las referencias faltantes" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "opciones de salida de consola" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "aumentar la verbosidad (puede repetirse)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "sin salida en salida estándar, solo advertencias en los mensajes de error estándar" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "sin salida, ni siquiera advertencias" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "emitir salida de color (predeterminado: detección automática)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "no emite salida de color (predeterminado: detección automática)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "escribir avisos (y errores) al fichero indicado" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "convertir advertencias en errores" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "con -W, sigue adelante cuando recibas advertencias" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "mostrar rastreo completo en excepción" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "ejecutar Pdb en excepción" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "no se pueden encontrar los archivos %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "no se puede combinar la opción -a y nombres de archivo" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "no se puede abrir el archivo de advertencia %r: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "El argumento de la opción -D debe estar en la forma nombre=valor" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "El argumento de la opción -A debe estar en la forma nombre=valor" @@ -1863,7 +1863,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1905,44 +1905,44 @@ msgstr "Devuelve" msgid "Return type" msgstr "Tipo del valor devuelto" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "miembro" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "función" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "unión" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2065,7 +2065,7 @@ msgstr "duplicada %s descripción de %s, otra %s en %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "No válido math_eqref_format: %r" @@ -2215,24 +2215,24 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "descripción duplicada de %s %s, otra instancia en %s" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "variables de entorno; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Descripción de la opción con formato incorrecto %r, debe verse como \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" o \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%sopción de línea de comando " -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "opción de línea de comando" @@ -2248,79 +2248,79 @@ msgstr "los términos del glosario no deben estar separados por líneas vacías" msgid "glossary seems to be misformatted, check indentation" msgstr "el glosario parece estar mal formateado, verifique la sangría" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "termino de glosario" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "gramática simbólica" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "etiqueta de referencia" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "variables de entorno" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "opción de programa" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Búsqueda" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiqueta duplicada %s, otra instancia en %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "duplicada %s descripción de %s, otra instancia en %s" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig está deshabilitado. :numref: se ignora." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "el enlace no tiene subtítulo: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "inválido numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "inválido numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2847,7 +2847,7 @@ msgstr "firma inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "error al formatear argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "falta el atributo %s en el objeto %s" @@ -2900,7 +2900,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2910,33 +2910,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2991,12 +2991,12 @@ msgstr "fallo al analizar el nombre %s" msgid "failed to import object %s" msgstr "fallo al importar el objeto %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: archivo no encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3101,30 +3101,30 @@ msgstr "" msgid "References" msgstr "Referencias" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "Campos" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3443,40 +3443,40 @@ msgstr "Contraer barra lateral" msgid "Contents" msgstr "Contenidos" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "Índice basado en 4 columnas encontrado. Puede ser un error de extensiones que usted usa: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Pie de página [%s] no está referenciado." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "Pie de página [#] no está referenciado." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referencias de pie de página inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referencias inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referencias de citas inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3518,16 +3518,16 @@ msgstr "No se pudo recuperar la imagen remota: %s [%s]" msgid "Unknown image format: %s..." msgstr "Formato de imagen desconocido: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres fuente no codificables, reemplazando con \"?\": %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "omitido" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "fallado" @@ -3570,12 +3570,12 @@ msgid "" "it directly: %s" msgstr "Formato de fecha inválido. Cite la cadena con comillas simples si desea generarla directamente: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contiene referencia al archivo inexistente %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "excepción al evaluar solamente la expresión directiva: %s" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 837f0df10cd6aa826832fec8bc10cbd66875c4fa..f2a18c2592a80f863e0aa29da5e5be68469f5d8b 100644 GIT binary patch delta 16 XcmX@t$#kxhX+ydXqvhrdpEL^qJ5B~w delta 18 ZcmX@t$#kxhX+yft\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -1860,7 +1860,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2844,7 +2844,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2897,7 +2897,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2907,33 +2907,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3455,25 +3455,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3567,12 +3567,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 9b319e2a5e3692b37d8491a048df72b93eca608a..d105bb5010fd521c9a845e88309886ba3266586a 100644 GIT binary patch delta 14 Vcmexw^50}bhybJI=1>7GE&wm)1pxp6 delta 16 Xcmexw^50}bh`{6;0p87t0&-jcKVSv( diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 0bdfa2db283..ddae749d5e7 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3453,25 +3453,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 2e924f8d953178b9541bfb3acedbd90cb0b5476b..0a0b385a881dc70a90cafce0a3abd957901c284c 100644 GIT binary patch delta 16 YcmZ2Ag>BUowha}_87((gF5mbF06xtJ_y7O^ delta 18 acmZ2Ag>BUowha}_CofpeySa7w(nkPQLJ6e+ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 7dbf7e8f795..6a37b077e44 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -1860,7 +1860,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2844,7 +2844,7 @@ msgstr "امضای ناشناخته‌ برای %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "خطا در قالب بندی نشانوند برای %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "ویژگی ناموجود %s در شیئ %s" @@ -2897,7 +2897,7 @@ msgid "" msgstr "ویژگی نایاب در گزینه‌ی :members: قید شده: پیمانه‌ی:%s، ویژگی %s" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s" @@ -2907,33 +2907,33 @@ msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه msgid "Failed to get a constructor signature for %s: %s" msgstr "شکست در دریافت امضای سازنده‌ی شیئ برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "پایه ها:%s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "نام جانشین %s" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "نام جانشین نوع متغیر(%s)" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3455,25 +3455,25 @@ msgstr "پانویس [%s] ارجاع داده نشده است." msgid "Footnote [#] is not referenced." msgstr "پانویس [#] ارجاع داده نشده است." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "ارجاعات پانویس ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "ارجاعات ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "ارجاعات نقل قول ادبی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3567,12 +3567,12 @@ msgid "" "it directly: %s" msgstr "قالب تاریخ ناشناخته. اگر می‌خواهید از رشته‌متن مستقیماً خروجی بگیرید، آن را با نقل قول رشته‌متنی محصور کنید: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "درختواره‌ی فهرست مطالب شامل ارجاع به پرونده ناموجود %r است" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "ایراد در هنگام ارزیابی تنها عبارت دستور العمل: %s" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index bdfc080e5849e267dd29f7d98ab90010c24e708b..7c46f4388a7ec5f797cc3d0157ddbfcab54a9d76 100644 GIT binary patch delta 15 XcmaDL_CRdI88#+Ev(4w&Cb0kjH6;c0 delta 15 XcmaDL_CRdI88#*Zqs`~oCb0kjH3kLn diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index b60021bb5d0..378c0381513 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,7 +888,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1899,44 +1899,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Etsi sivu" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,12 +2985,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3095,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,40 +3437,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3512,16 +3512,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 25bc8152343f89c11beaf5d088753cf08263dce8..5364492f281985832a7ac0ed37c0fc66aed5866d 100644 GIT binary patch delta 17 ZcmZp@#L{|+WrNvlCPTB$7PHUx0sumT2Y~

\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -92,7 +92,7 @@ msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "fait" @@ -219,27 +219,27 @@ msgstr "impossible de remplacer le paramètre de configuration %r par un type no msgid "unknown config value %r in override, ignoring" msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Option de configuration inexistante : %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "L'option de configuration %r est déjà présente" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Votre fichier de configuration comporte une erreur de syntaxe : %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Le fichier de configuration (ou un des modules qu'il utilise) génère un sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -247,57 +247,57 @@ msgid "" "%s" msgstr "Votre fichier de configuration comporte une erreur de programmation : \n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Le paramètre « source_suffix » s'attend à recevoir une chaîne de caractères, une liste de chaînes de caractères ou un dictionnaire. Mais vous avez fourni un « %r »." -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tableau %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Code source %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "La valeur « {current} » du paramètre « {name} » ne figure pas dans la liste des possibilités valables « {candidates} »." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Le type du paramètre de configuration « {name} » doit être {permitted} et non « {current.__name__} »." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Le paramètre de configuration « {name} » a pour type « {current.__name__} », tandis que le type par défaut est « {default.__name__} »." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r non trouvé; ignoré." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -520,17 +520,17 @@ msgstr "le paramètre %s.%s n'apparaît dans aucune des configurations de thème msgid "unsupported theme option %r given" msgstr "L'option %r n'est pas supportée pour ce thème" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "le fichier %r dans le dossier des thèmes n'est pas une archive zip valide ou ne contient aucun thème" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "Le thème nommé %r n'a pas été trouvé (le fichier theme.conf est-il bien présent ?)" @@ -813,22 +813,22 @@ msgstr "lecture des gabarits... " msgid "writing message catalogs... " msgstr "écriture des catalogues de messages... " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Recherchez les éventuelles erreurs dans la sortie ci-dessus ou dans %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "lien mort: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Ancre '%s' non trouvée" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -914,7 +914,7 @@ msgid "The text files are in %(outdir)s." msgstr "Les fichiers texte se trouvent dans %(outdir)s." #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "erreur lors l'écriture du fichier %s : %s" @@ -924,7 +924,7 @@ msgstr "erreur lors l'écriture du fichier %s : %s" msgid "The XML files are in %(outdir)s." msgstr "Les fichiers XML se trouvent dans %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Le fichier pseudo-XML se trouve dans %(outdir)s." @@ -945,7 +945,7 @@ msgid "Failed to read build info file: %r" msgstr "Échec de lecture du fichier de configuration de construction : %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1122,7 +1122,7 @@ msgstr "aucune valeur de configuration \"latex_documents\" trouvée; aucun docum msgid "\"latex_documents\" config value references unknown document %s" msgstr "La valeur du paramètre \"latex_documents\" référence un document inconnu %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1175,66 +1175,66 @@ msgstr "%r n'a pas d'option « theme »" msgid "%r doesn't have \"%s\" setting" msgstr "%r n'a pas d'option « %s »" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Une exception a été levée lors de la génération, démarrage du débogueur :" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "Interrompu !" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "Erreur de balise reST :" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Erreur d'encodage :" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "Le traceback complet a été sauvé dans %s, au cas où vous souhaiteriez signaler le problème aux développeurs." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Erreur de récursion :" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "Cela peut se produire avec des fichiers sources très volumineux ou profondément imbriqués. Vous pouvez augmenter avec attention la limite de récursivité par défaut de Python de 1000 dans conf.py avec p. ex. :" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Une exception a été levée :" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Merci de rapporter ceci s'il s'agit d'une erreur utilisateur, afin d'améliorer le message d'erreur à l'avenir." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "Un rapport d'erreur peut être déposé dans le système de tickets à . Merci !" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 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/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "Pour plus d'informations, visitez le site ." -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1253,135 +1253,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "chemin des fichiers sources de la documentation" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "chemin du répertoire de sortie" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "une liste de fichiers spécifiques à reconstruire. Sera ignoré si l'option -a est spécifiée." -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "options générales" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "constructeur à utiliser (par defaut: HTML)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "enregistrement des tous les fichiers (par défaut : enregistrement des nouveaux fichiers et des fichiers qui ont été modifiés)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "ne pas utiliser un environnement sauvegardé, relire toujours tous les fichiers" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "chemin pour le cache d'environnement et de fichiers doctree (défaut : OUTPUTDIR/.doctrees) " -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "build parallèle avec N processus si possible (la valeur spéciale \"auto\" ajuste N à cpu-count)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "chemin dans lequel se trouve le fichier de configuration (conf.py). (valeur par défaut : identique à SOURCEDIR)." -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "n'utilisez aucun fichier de configuration, seulement l'option -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "outre passer un paramètre du fichier de configuration" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "passer une valeur aux templates HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "définit une balise : seules les blocs \"only\" avec TAG seront inclus" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "mode sourcilleux, signale toute référence manquante" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "options de la console de sortie" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "augmenter la verbosité (peut être répété)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "aucune sortie vers stdout, seulement les avertissements vers stderr" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "aucune sortie du tout, même pas les avertissements" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "émettre une sortie de couleur (par défaut : auto-détection)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "ne pas émettre une sortie de couleur (par défaut : auto-détection)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "écrire les avertissements (et les erreurs) vers le fichier spécifié" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "modifier les avertissements en erreurs" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "avec -W, l'exécution se poursuit en cas d'avertissements" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "montrer le retraçage complet en cas d'exception" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "exécuter Pdb si une exception se produit." -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "fichier %r introuvable" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "impossible de combiner l'option -a avec le nom du fichier" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "impossible d'ouvrir le fichier des avertissements %r : %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "l'option -D doit être sous la forme nom=valeur" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "l'option -A doit être sous la forme nom=valeur" @@ -1883,7 +1883,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1925,44 +1925,44 @@ msgstr "Renvoie" msgid "Return type" msgstr "Type renvoyé" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "énumération" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2085,7 +2085,7 @@ msgstr "description de %s dupliquée pour%s; l'autre %s se trouve dans %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format invalide : %r" @@ -2235,24 +2235,24 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "description dupliquée pour %s %s; l'autre instance se trouve dans %s" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "variable d'environnement; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "description de l'option malformée, elle doit ressembler à \nMalformed option description %r, should look like \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" or \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "option de ligne de commande %s" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "option de ligne de commande" @@ -2268,79 +2268,79 @@ msgstr "les termes du glossaire ne doivent pas être séparés par des lignes vi msgid "glossary seems to be misformatted, check indentation" msgstr "le glossaire semble être mal formaté; vérifiez l'indentation" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "terme du glossaire" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "élément de grammaire" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "étiquette de référence" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "variable d'environnement" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "option du programme" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "document" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Index du module" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Page de recherche" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "libellé dupliqué %s, l'autre instance se trouve dans %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "description %s dupliquée pour %s; l'autre instance se trouve dans %s" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "le paramètre numfig est désactivé : le paramètre :numref: est ignoré" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "Impossible de créer une référence croisée. Aucun nombre n'est attribué: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "le lien n'a pas de légende : %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "format de numfig_format invalide : %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "format de numfig_format invalide : %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "lablel non défini: 1%s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Impossible de créer une référence croisée. Titre ou légende introuvable: %s" @@ -2867,7 +2867,7 @@ msgstr "signature invalide pour auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erreur pendant la mise en forme de l'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "attribut manquant %s dans l'objet %s" @@ -2920,7 +2920,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Échec pour obtenir la signature de la fonction pour %s : %s" @@ -2930,33 +2930,33 @@ msgstr "Échec pour obtenir la signature de la fonction pour %s : %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "Échec pour obtenir la signature du constructeur pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, 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:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3011,12 +3011,12 @@ msgstr "échec de l’analyse du nom %s" msgid "failed to import object %s" msgstr "échec d’importation de l'object %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate : fichier nontrouvé : %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3121,30 +3121,30 @@ msgstr "" msgid "References" msgstr "Références" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Avertissements" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "Yields" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "chaîne littérale malformée (guillemet fermant manquant) : %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "chaîne littérale malformée (guillemet ouvrant manquant) : %s" @@ -3463,40 +3463,40 @@ msgstr "Réduire la barre latérale" msgid "Contents" msgstr "Contenu" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "index trouvé avec style ancien à 4 colonnes. Possiblement un bogue d’extensions que vous utilisez : %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "La note de bas de page [%s] n'est pas référencée." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "La note de bas de page [#] n'est pas référencée." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "incohérences de références de notes de bas de page dans le message traduit. Original : {0}, traduit : {1} " -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "incohérences de références dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "incohérences de références de citation dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3538,16 +3538,16 @@ msgstr "impossible d'atteindre l'image distante %s[%s]" msgid "Unknown image format: %s..." msgstr "Format d'image inconnu : %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "le caractère source est indécodable, il sera remplacé par \"?\" : %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "ignoré" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "échoué" @@ -3590,12 +3590,12 @@ msgid "" "it directly: %s" msgstr "Format de date invalide. Insérez la chaîne de caractères entre des guillemets simples si vous voulez l'afficher telle quelle : %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "la table des matières contient des références à des fichiers inexistants %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exception pendant l’évaluation de l'expression de la directive only : %s" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index a150249553862c09b9e0553dfee2ae36fc6342a1..42e8036d64bf2684736093af8c3a4fff73149124 100644 GIT binary patch delta 13 UcmZo*X<(Vq!DMK*v8#*`03AjIJOBUy delta 13 UcmZo*X<(VqF>wRm#%WoM03&S$A^-pY diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 0b21c8cfa3a..af0e21c13b9 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index b0ebf31ab3f181be49874525aea228a51f1744a8..045d7a841222591e9749dea0c734cd87061cdd3c 100644 GIT binary patch delta 14 WcmZ3YzC?Y)Q7%Ty&BwUzaR2};Q3bgG delta 16 YcmZ3YzC?Y)QLf2vxp+5U;=05E06t#_761SM diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 32dee914cf1..b07a38d0b11 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index e73df0a7c217ad62ef2d99c8b0901163265dc88d..974b5334135b2300bd7b055d44ae111cb3b98ff5 100644 GIT binary patch delta 17 YcmaFZ&i1gKZ39OqlcCvWuFmVf078QYo&W#< delta 18 acmaFZ&i1gKZ39Q=WP?t=&0?LWe*pka%m|MF diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 103c5970239..4db9053369c 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -69,7 +69,7 @@ msgstr "'स्थापना' को जैसा कि अभी कोन msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "संपन्न" @@ -196,27 +196,27 @@ msgstr "असमर्थित प्रकार के साथ विन msgid "unknown config value %r in override, ignoring" msgstr "आरोहण में अज्ञात विन्यास मान %r, अनदेखा किया गया" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "ऐसा कोई विन्यास मान नहीं है: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "विन्यास मान %r पहले से विद्यमान है" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "आपकी विन्यास फाइल में रचनाक्रम की त्रुटि है: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "विन्यास फाइल (अथवा इसके द्वारा आयातित प्रभागों) द्वारा sys.exit() का आह्वान किया गया" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -224,57 +224,57 @@ msgid "" "%s" msgstr "विन्यास फाइल में प्रोग्राम के योग्य त्रुटि है:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "विन्यास मान `source_suffix' में अक्षर-समूह, अक्षर-समूहों की सूची, अथवा कोष की अनुमति है. लेकिन `%r' दिया गया है." -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "भाग %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "चित्र %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "सारणी %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "सूची %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "`{name}` विन्यास मान, {candidates} में से एक होना चाहिए, परन्तु `{current}` दिया गया है." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; अपेक्षित {permitted}." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; मानक `{default.__name__}' का प्रयोग किया गया." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r नहीं मिला, अनदेखा किया गया." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -497,17 +497,17 @@ msgstr "विन्यास मान %s.%s खोजे गए किसी msgid "unsupported theme option %r given" msgstr "विन्यास का असमर्थित रूप विकल्प %r दिया गया" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "रुपविन्यास के पथ में फाइल %r कोई प्रमाणिक ज़िप फाइल नहीं है या इसमें कोई रुपविन्यास नहीं सहेजा गया है" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "%r नामक कोई रूप विन्यास नहीं मिला (theme.conf अनुपस्थित?)" @@ -790,22 +790,22 @@ msgstr "नमूनों को पढ़ा जा रहा है..." msgid "writing message catalogs... " msgstr "सन्देश सूचीपत्रों को लिखा जा रहा है..." -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "उपरोक्त परिणाम में अथवा %(outdir)s /output.txt में त्रुटियाँ ढूँढने का प्रयास " -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "खंडित कड़ी: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "लक्ष्य '%s' नहीं मिला" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -891,7 +891,7 @@ msgid "The text files are in %(outdir)s." msgstr "पाठ फाइल %(outdir)s में हैं." #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "%s फाइल लिखने में व्यवधान: %s" @@ -901,7 +901,7 @@ msgstr "%s फाइल लिखने में व्यवधान: %s" msgid "The XML files are in %(outdir)s." msgstr "एक्स.एम्.एल. लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "छद्म-एक्स.एम्.एल. लेखपत्र %(outdir)s में हैं." @@ -922,7 +922,7 @@ msgid "Failed to read build info file: %r" msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1099,7 +1099,7 @@ msgstr "कोई \"latex_documents\" विन्यास मान नही msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1152,66 +1152,66 @@ msgstr "%r में कोई \"रूप\" मान नहीं है" msgid "%r doesn't have \"%s\" setting" msgstr "%r में कोई \"%s \" मान नहीं है" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "निर्माण के दौरान अपवाद घटित हुआ है, दोष-मुक्तक चालू किया जा रहा " -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "कार्य खंडित " -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "रेस्ट सुसज्जा त्रुटि:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "कूटलेखन त्रुटि:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "यदि आप इस विषय को कूटलिपिकारों के संज्ञान में लाना चाहते है तो पिछला पूरा विवरण %s में सहेज दिया गया है" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "पुनरावर्तन त्रुटि:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "अपवाद घटित:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "यदि यह प्रयोक्ता की गलती थी तो कृपया इसको भी रिपोर्ट करें ताकि अगली बार गलती होने पर अधिक अर्थपूर्ण सन्देश दिया जा सके." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "त्रुटि की सूचना पर उपस्थित पंजिका में दर्ज की जा सकती है. धन्यवाद!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "कार्य संख्या एक धनात्मक संख्या होनी चाहिए" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1230,135 +1230,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "अभिलेख की स्रोत फाइलों का पथ" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "परिणाम निर्देशिका का पथ" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "पुनर्निर्माण के लिए निश्चित फाइलों की सूची. यदि -a निर्दिष्ट है तो उपेक्षा कर दी जाएगी" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "सामान्य विकल्प" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "प्रयोग के लिए निर्माता (मानक: एच.टी.एम्.एल. #html#)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "सभी फाइलें लिखें (मानक: केवल नई और परिवर्तित फाइलें लिखें)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "सहेजी गयी परिस्थिति का प्रयोग न करें, सदैव सभी फाइलों को पढ़ें" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "संचित परिस्थिति और डॉक-ट्री फाइलों का पथ (मानक: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "यदि संभव हो तो समानांतर N प्रक्रियाओं में निर्माण करें (ऑटो #auto# विशेष मान द्वारा cpu-count को N पर लगा दिया जाएगा)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "पथ जहाँ पर विन्यास फाइल (conf.py) स्थित है (मानक: SOURCEDIR के समरूप)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "किसी भी विन्यास फाइल का उपयोग ही न करें, मात्र -D विकल्प" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "विन्यास फाइल के एक मान का उल्लंघन करें " -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "एच.टी.एम्.एल. के नमूने में राशि प्रेषित करें" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "नाम-पत्र परिभाषित करें: केवल नाम-पत्र वाले खण्डों का समावेश करें" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "गहन जांच का पालन करें, सभी अनुपस्थित संदर्भों के बारे में सचेत करें" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "प्रदर्शित परिणामों के विकल्प" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "शब्द-प्रयोग बढ़ाएं (पुनरावृत्ति की जा सकती है) " -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "एस.टी.डी आउट #stdout# पर कोई परिणाम नहीं, एस.टी.डी एरर #stderr# पर चेतावनियाँ " -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "कुछ भी निर्गमित नहीं, यहाँ तक कि चेतावनी भी नहीं" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "रंगीन परिणाम ही दिखाएँ (मानक: स्वतः अनुमानित)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "रंगीन परिणाम नहीं दिखाएँ (मानक: स्वतः अनुमानित)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "चेतावनियाँ (और त्रुटियाँ) दी गई फाइल में लिखें" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "चेतावनियों को अशुद्धि मानें" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "अपवाद होने पर पूरा विलोम-अनुगमन देखें" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "अपवाद होने पर पी.डी.बी. चलाएं" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "%r फाइलों को नहीं ढूँढा जा सका" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "-a विकल्प और फाइल के नामों को सम्मिलित नहीं किया जा सकता" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "चेतावनी फाइल %r नहीं खोली जा सकी: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "-D विकल्प का मान नाम = मान के रूप में होना आवश्यक है" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "-A विकल्प का मान नाम = मान के रूप में होना आवश्यक है" @@ -1860,7 +1860,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1902,44 +1902,44 @@ msgstr "प्रदत्त " msgid "Return type" msgstr "प्रदत्त प्रकार " -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "चर पद" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "फंक्शन" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "मैक्रो" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "युग्म" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "गणक" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "प्रगणक " -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "प्रकार" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "समीकरण का प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "अमान्य math_eqref_format: %r" @@ -2212,24 +2212,24 @@ msgstr "भूमिका" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "परिस्थिति चर पद; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "अशुद्ध रूप विकल्प विवरण %r, अपेक्षित प्रारूप \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" अथवा \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2245,79 +2245,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "पारिभाषिक पद" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "व्याकरण संकेत " -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "सन्दर्भ शीर्षक" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "परिस्थिति चर पद " -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "प्रोग्राम विकल्प " -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "लेखपत्र" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "प्रभाग सूची" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "खोज पृष्ठ" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig असमर्थ है. :numref: उपेक्षित है." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "कड़ी का कोई शीर्षक नहीं है: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "अमान्य numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "अमान्य numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2844,7 +2844,7 @@ msgstr "स्वतः %s (%r) के लिए अमान्य हस्त msgid "error while formatting arguments for %s: %s" msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "%s गुण %s वस्तु में अनुपस्थित" @@ -2897,7 +2897,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2907,33 +2907,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2988,12 +2988,12 @@ msgstr "पद-विच्छेदन में असफलता: %s" msgid "failed to import object %s" msgstr "विषय-वस्तु के आयात में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3098,30 +3098,30 @@ msgstr "" msgid "References" msgstr "सन्दर्भ" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "चेतावनी देता है" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "मिलता है" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3440,40 +3440,40 @@ msgstr "किनारे का स्थान घटाएं" msgid "Contents" msgstr "विषय सामिग्री" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 पंक्तिबद्ध सूचियाँ मिलीं. यह आपके द्वारा उपयोग किए गए आयाम की त्रुटि हो सकती है: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "पाद-टिप्पणी [%s] का कोई सन्दर्भ नहीं है." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "पाद-टिप्पणी [#] सन्दर्भ कहीं नहीं है" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "अनुवादित संदेश में असंगत पाद-टिप्पणी के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "अनुवादित संदेश में असंगत प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "अनुवादित संदेश में असंगत उद्धरण के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3515,16 +3515,16 @@ msgstr "दूरस्थ चित्र नहीं लाया जा स msgid "Unknown image format: %s..." msgstr "अज्ञात चित्र प्रारूप: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "असाधनीय स्रोत अक्षर, \"?\" द्वारा बदले जा रहे हैं: %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "छोड़ा " -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "असफल" @@ -3567,12 +3567,12 @@ msgid "" "it directly: %s" msgstr "अमान्य तिथि प्रारूप. यदि आप सीधे परिणाम में दर्शाना चाहते हैं तो अक्षरमाला को एकाकी उद्धरण चिन्ह द्वारा चिन्हित करें: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "विषय-सूची-संरचना में अविद्यमान फाइल %r का सन्दर्भ है" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "केवल निर्देशक भाव का मूल्यांकन करते समय अपवाद: %s" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 4f6e1bfa6369cd5379a50e6acce208102cb7e7f1..75f707229ca886d7ed1b99b5f12ca58d8fcb818b 100644 GIT binary patch delta 13 Ucmey*{GWM32a}=M#;#IE04Wv)Hvj+t delta 13 Vcmey*{GWM3$HWbM8>eM50st>P1|0wZ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 696524033cb..535503f5541 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index f7caaa86e24924fde2640390218ca8c09b7ea824..81c4bb227b22210ad10e6e29bd7b671be1dd7401 100644 GIT binary patch delta 16 XcmaFX&iJgIaf6-)qvd9OjqTC^Im-q4 delta 16 XcmaFX&iJgIaf6-)qtRx4jqTC^IiUse diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 1758bcc750f..85e0b5407de 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 5c2cab100c4d166030cf8125a36695b1409b2ade..5335f915835db4add3bca58e4d7f3410850c2faa 100644 GIT binary patch delta 15 Wcmewt{V#gMekmqHv&{#kY=r?o4hDk& delta 16 Ycmewt{V#gMeyPdNrT8|Vl`<3t08S(ayZ`_I diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 3ac88e29df0..c6833483b1c 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -71,7 +71,7 @@ msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "kész" @@ -198,27 +198,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -226,57 +226,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "%s. bekezdés" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "%s. ábra" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "%s. táblázat" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "%s. felsorlás" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -499,17 +499,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -792,22 +792,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -893,7 +893,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -903,7 +903,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -924,7 +924,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1101,7 +1101,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1154,66 +1154,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1232,135 +1232,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1862,7 +1862,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1904,44 +1904,44 @@ msgstr "Visszatérési érték" msgid "Return type" msgstr "Visszatérés típusa" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "tag" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "változó" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "függvény" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makró" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "típus" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2064,7 +2064,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2214,24 +2214,24 @@ msgstr "szerepkör" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "környezeti változó; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2247,79 +2247,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "szójegyzék" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "nyelvtani jel" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "referencia cimke" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "környezeti változó" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "program opció" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Modulok" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Keresés" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2846,7 +2846,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2899,7 +2899,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2909,33 +2909,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2990,12 +2990,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3100,30 +3100,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3442,40 +3442,40 @@ msgstr "Oldalsáv összezárása" msgid "Contents" msgstr "Tartalom" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3517,16 +3517,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3569,12 +3569,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 9b15e7c3f2b5e26c983b36e3128078176d9c0c8c..3b26a6954307639b2fadbc608813bb590d958505 100644 GIT binary patch delta 17 ZcmeCV%iMF9dBdVMCPTB$OWIzf0{}^U2u1(^ delta 18 acmeCV%iMF9dBdW%$*0=*Hg9OVlMVn|6A8`$ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 9451efec72a..0d226675523 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -70,7 +70,7 @@ msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "selesai" @@ -197,27 +197,27 @@ msgstr "tidak dapat menulis ulang pengaturan konfigurasi %r dengan tipe yang tid msgid "unknown config value %r in override, ignoring" msgstr "nilai konfigurasi %r yang tidak dikenal pada penulisan ulang, mengabaikan" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Tidak terdapat nilai konfigurasi demikian: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Nilai konfigurasi %r sudah ada" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ada kesalahan sintaksis dalam file konfigurasi Anda: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Berkas konfigurasi (atau salah satu dari modul terimpor) disebut sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -225,57 +225,57 @@ msgid "" "%s" msgstr "Terdapat kesalahan programmable dalam berkas konfigurasi anda:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Nilai konfigurasi `source_suffix 'mengharapkan sebuah string, daftar string, atau kamus. Tetapi `%r' diberikan." -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Bab %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Gambar. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Daftar %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Nilai konfigurasi `{name}` harus salah satu dari {candidates}, tapi `{current}` diberikan." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Nilai konfigurasi `{name}' memiliki tipe `{current.__name__}'; diharapkan {permitted}." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Nilai konfigurasi `{name}` bertipe `{current.__name__}', default menjadi `{default.__name__}'." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r tidak ditemukan, diabaikan." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -498,17 +498,17 @@ msgstr "pengaturan %s.%s terjadi pada tak satupun konfigurasi tema yang dicari" msgid "unsupported theme option %r given" msgstr "opsi tema yang tidak didukung %r diberikan" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "berkas %r pada path tema merupakan berkas zip yang tidak valid atau tidak berisi tema" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "tema bernama %r tidak ditemukan (kehilangan theme.conf?)" @@ -791,22 +791,22 @@ msgstr "membaca templat... " msgid "writing message catalogs... " msgstr "menulis katalog pesan... " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Mencari kesalahan sembarang dalam keluaran di atas atau di %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "tautan rusak: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Anchor '%s' tidak ditemukan" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -892,7 +892,7 @@ msgid "The text files are in %(outdir)s." msgstr "Berkas teks berada di %(outdir)s." #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "kesalahan menulis berkas %s: %s" @@ -902,7 +902,7 @@ msgstr "kesalahan menulis berkas %s: %s" msgid "The XML files are in %(outdir)s." msgstr "Berkas XML berada di %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Berkas pseudo-XML berada di %(outdir)s." @@ -923,7 +923,7 @@ msgid "Failed to read build info file: %r" msgstr "Gagal membaca berkas info build: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1100,7 +1100,7 @@ msgstr "tidak ditemukan nilai konfigurasi \"latex_documents\"; dokumen tidak aka msgid "\"latex_documents\" config value references unknown document %s" msgstr "nilai konfigurasi \"latex_documents\" mereferensikan dokumen yang tidak dikenal %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1153,66 +1153,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Eksepsi terjadi saat membangun, memulai debugger:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "Diinterupsi" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "markup reST salah:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Kesalahan encoding:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "Traceback lengkap telah disimpan di %s, bila ingin melaporkan masalah ini kepada developer." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Kesalahan rekursi:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Terjadi eksepsi:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Mohon juga melaporkan hal ini jika sebuah kesalahan pengguna sehingga lain kali perintah salah yang lebih baik dapat disediakan." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "Laporan bug dapat diisi pada tracker di . Terima kasih!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 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/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1231,135 +1231,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "path ke berkas sumber" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "path ke direktori output" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "daftar berkas spesifik yang dibuat ulang. Diabaikan jika -a ditentukan" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "opsi umum" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "builder yang digunakan (default: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "tulis semua berkas (default: hanya tulis berkas yang baru dan diubah)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "jangan pakai saved environment, selalu baca semua berkas" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "path untuk the cached environment dan berkas doctree (default: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "build secara parallel dengan N processes jika memungkinkan (nilai spesial \"auto\" akan menetapkan N ke cpu-count)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "path tempat berkas konfigurasi (conf.py) berada (default: sama seperti SOURCEDIR)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "jalankan tanpa berkas sama sekali, hanya opsi -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "override sebuah aturan di berkas konfigurasi" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "masukkan sebuah nilai ke templat HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "define tag: masukkan blok \"only\" dengan TAG" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "mode nit-picky, ingatkan tentang semua referensi yang hilang" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "opsi output konsol" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "tingkatkan verbosity (dapat diulang)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "tanpa output pada stdout, hanya peringatan pada stderr" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "tanpa output sama sekali, peringatan sekalipun" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "siarkan output berwarna (default: auto-detect)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "jangan siarkan output berwarna (default: auto-detect)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "tulis peringatan (dan galat) pada berkas terpilih" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "ubah peringatan menjadi galat" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "tampilkan traceback penuh pada eksepsi" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "jalankan Pdb pada eksepsi" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "tidak dapat mencari berkas %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "tidak dapat menggabungkan opsi -a dan nama berkas" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "tidak dapat membuka berkas peringatan %r: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "argumen opsi -D harus dalam bentuk name=value" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "argumen opsi -A harus dalam bentuk name=value" @@ -1861,7 +1861,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1903,44 +1903,44 @@ msgstr "Kembali" msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "anggota" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "fungsi" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipe" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2063,7 +2063,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "duplikasi label persamaan %s, misalnya di %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Math_eqref_format tidak valid: %r" @@ -2213,24 +2213,24 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "variabel environment; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Deskripsi opsi salah bentuk %r, seharusnya terlihat seperti \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" atau \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "opsi baris perintah" @@ -2246,79 +2246,79 @@ msgstr "Daftar istilah kata sulit tidak boleh dipisahkan oleh garis kosong" msgid "glossary seems to be misformatted, check indentation" msgstr "Daftar istilah kata sulit tampaknya salah format, periksa indentasi" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "daftar istilah" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "token grammar" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "label referensi" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "variabel environment" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "opsi program" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "dokumen" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Indeks Modul" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pencarian Halaman" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "label rangkap %s, contoh lain dalam %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig dinonaktifkan. :numref: diabaikan." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "tautan tidak memiliki teks: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format tidak valid: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format tidak valid: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2845,7 +2845,7 @@ msgstr "tanda tangan tidak valid untuk outo %s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "kesalahan saat memformat argumen untuk %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut hilang %s dalam objek %s" @@ -2898,7 +2898,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2908,33 +2908,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2989,12 +2989,12 @@ msgstr "gagal mengurai nama %s" msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3099,30 +3099,30 @@ msgstr "" msgid "References" msgstr "Referensi" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Peringatkan" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "Hasil" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3441,40 +3441,40 @@ msgstr "Tutup sidebar" msgid "Contents" msgstr "Konten" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 kolom berdasarkan indeks ditemukan. Ini mungkin bug ekstensi yang Anda gunakan: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Catatan kaki [%s] tidak dirujuk." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "Catatan kaki [#] tidak dirujuk." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referensi catatan kaki yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referensi yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referensi kutipan tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3516,16 +3516,16 @@ msgstr "Tidak dapat mengambil gambar jarak jauh: %s [%s]" msgid "Unknown image format: %s..." msgstr "Format gambar tidak dikenal: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "dilewati" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "gagal" @@ -3568,12 +3568,12 @@ msgid "" "it directly: %s" msgstr "Format tanggal tidak valid. Kutip string dengan kutipan tunggal jika Anda ingin menampilkannya secara langsung: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree berisi ref ke berkas yang tidak ada %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 9c5dd2d415136038c5ce1ca0b8753cfba5731b14..f37c4d5d7f2e155ec7e80d4cb0924149db6ab79d 100644 GIT binary patch delta 15 WcmaDY`C4*AIXjb~+2%_2B31w~&IL*U delta 16 XcmaDY`C4*AIs4@K?0lPB+0$47JsJim diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 2c04f80812f..df02c1d7c66 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Kafli %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Mynd %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tafla %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Listi %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,7 +888,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1899,44 +1899,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Leitarsíða" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,12 +2985,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3095,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,40 +3437,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3512,16 +3512,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 804e37613bcd95edf5b6cf409e0cfcd3a54b7e6a..2321bf538bf7cadbdf5c526e6c8f4dab3cfb3bba 100644 GIT binary patch delta 15 WcmaFq|I&Yhy9AS=*=A3P1^fUtqy?-1 delta 16 XcmaFq|I&YhyTs&t3BJvt5>xmAKrjYt diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 11b40dbf5d0..e21e29c1554 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -70,7 +70,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "fatto" @@ -197,27 +197,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -225,57 +225,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Sezione %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabella %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Listato %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "il primary_domain %r non è stato trovato, tralasciato." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -498,17 +498,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -791,22 +791,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -892,7 +892,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -902,7 +902,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -923,7 +923,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1100,7 +1100,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1153,66 +1153,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1231,135 +1231,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1861,7 +1861,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1903,44 +1903,44 @@ msgstr "Ritorna" msgid "Return type" msgstr "Tipo di ritorno" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variabile" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2063,7 +2063,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2213,24 +2213,24 @@ msgstr "ruolo" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "variabile d'ambiente, %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2246,79 +2246,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "voce del glossario" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "elemento grammaticale" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "etichetta di riferimento" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "variabile d'ambiente" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "opzione del programma" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Indice dei moduli" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Cerca" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2845,7 +2845,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2898,7 +2898,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2908,33 +2908,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2989,12 +2989,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3099,30 +3099,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3441,40 +3441,40 @@ msgstr "Comprimi la barra laterale" msgid "Contents" msgstr "Contenuti" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3516,16 +3516,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3568,12 +3568,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 7d5ba92790f6e5ba10330f0dcecc64e5526fd974..53f5e9d2aa9be27d33f545d8a4517a9240cd9a22 100644 GIT binary patch delta 17 Zcmew}pY_jt)(x8%F&Ua|-nz(rEdWt|2(17B delta 18 acmew}pY_jt)(x8%O}@Q|Z}Y)L)@uP|_6lME diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index fe779a92699..2fca6689945 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -82,7 +82,7 @@ msgstr "conf.pyにある'setup'はPythonのcallableではありません。定 msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "完了" @@ -209,27 +209,27 @@ msgstr "%r は正しい型ではないため無視されました" msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "%s という設定値はありません" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "設定値 %r は既に登録済みです" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "設定ファイルに文法エラーが見つかりました: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "設定ファイル(あるいはインポートしたどれかのモジュール)がsys.exit()を呼びました" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -237,57 +237,57 @@ msgid "" "%s" msgstr "設定ファイルにプログラム上のエラーがあります:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "設定値 `source_suffix' に `%r' が指定されましたが、文字列、文字列のリスト、辞書、のいずれかを指定してください。" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "%s 章" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "図 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "リスト %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr " 設定値 `{name}` に `{current}` が指定されましたが、 {candidates} のいずれかを指定してください。" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されていますが、 {permitted} 型を指定してください。" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されています。デフォルト値は `{default.__name__}' です。" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "primary_domain %r が見つかりません。無視します。" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -510,17 +510,17 @@ msgstr "設定 %s.%s がテーマ設定にありません" msgid "unsupported theme option %r given" msgstr "サポートされていないテーマオプション %r が指定されました" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "テーマパス上のファイル %r は正しいzipファイルではないか、テーマを含んでいません" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "sphinx_rtd_theme (< 0.3.0) が検出されました。Sphinx-6.0 以降では利用できなくなります。" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "テーマ %r がありません(theme.confが見つからない?)" @@ -803,22 +803,22 @@ msgstr "テンプレートの読み込み中..." msgid "writing message catalogs... " msgstr "メッセージカタログを出力中... " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "上記の出力結果、または %(outdir)s /output.txt を見てエラーを確認してください" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "リンクが切れています: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "アンカー '%s' が見つかりません" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "linkcheck_allowed_redirects 内の正規表現のコンパイルに失敗しました: %r %s" @@ -904,7 +904,7 @@ msgid "The text files are in %(outdir)s." msgstr "テキストファイルは%(outdir)sにあります。" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "ファイル書き込みエラー %s: %s" @@ -914,7 +914,7 @@ msgstr "ファイル書き込みエラー %s: %s" msgid "The XML files are in %(outdir)s." msgstr "XMLファイルは%(outdir)sにあります。" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "pseudo-XMLファイルは%(outdir)sにあります。" @@ -935,7 +935,7 @@ msgid "Failed to read build info file: %r" msgstr "build info ファイルの読み込みに失敗しました: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1112,7 +1112,7 @@ msgstr "設定値 \"latex_documents\" が見つかりません。ドキュメン msgid "\"latex_documents\" config value references unknown document %s" msgstr "設定値 \"latex_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1165,66 +1165,66 @@ msgstr "%r に \"theme\" 設定がありません" msgid "%r doesn't have \"%s\" setting" msgstr "%r に \"%s\" 設定がありません" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "ビルド中に例外が発生しました。デバッガを起動します:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "割り込まれました!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "reST マークアップエラー:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "エンコードエラー:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "完全なトレースバックを%sに保存しました。問題を開発者に報告するときに添付してください。" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "再起呼び出しエラー:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "これは、非常に大きなソースファイルや深くネストされたソースファイルで発生する可能性があります。conf.py で、Python のデフォルトの再帰回数制限である 1000 を、例えば次のように慎重に増やすことができます: " -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "例外が発生しました" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "次期バージョンでのエラーメッセージ改善のために、ユーザーエラーの場合にも報告してください。" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "バグ報告はこちらにお願いします 。ご協力ありがとうございます!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "ジョブ番号は正数でなければなりません" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "詳しくは、を見てください。" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1243,135 +1243,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "ドキュメントソースファイルへのパス" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "出力先ディレクトリへのパス" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "再構築するための設定ファイルのリスト。 -a が指定されている場合は無視されます" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "一般的なオプション" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "使用するビルダー(デフォルト:html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "すべてのファイルに書き込む(デフォルト: 新規ファイルまたは変更されたファイルのみ)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "保存された環境は使わず、常に全てのファイルを読み込む" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "キャッシュされた環境とDoctreeファイルへのパス(デフォルト:OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "可能な場合、ビルドを N 個のプロセスで並列実行する(特別な値 \"auto\" は N を cpu-count に設定する)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "設定ファイル(conf.py)がある場所のパス(デフォルト:SOURCEDIRと同じ場所)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "設定ファイルを使用せず、-Dオプションのみを使用" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "設定ファイルの設定を上書きする" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "HTMLテンプレートに値を渡す" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "定義タグ: TAG ブロック\"のみ\"含む" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "nit-picky モード。不足しているすべての参照について警告する" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "コンソール出力オプション" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "精度の増加(繰り返し可能)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "標準出力には出力せず、標準エラー出力に警告を出すのみ" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "何も出力せず、警告もしない" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "色分けで出力する(デフォルト:自動検出)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "色分けの出力をしない(デフォルト:自動検出)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "指定ファイルに警告(およびエラー)を書き込む" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "警告をエラーとして扱う" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "-Wを指定すると、警告が表示されたときは実行を続ける" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "例外時にフルトレースバックを表示する" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "例外が発生したときにPdbを実行する" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "ファイル %r が見つかりません" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "-aオプションとファイル名を組み合わせることはできません" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "警告ファイル %r を開けません: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "-Dオプション引数は name = value の形式でなければなりません" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "-Aオプション引数は name = value の形式でなければなりません" @@ -1873,7 +1873,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1915,44 +1915,44 @@ msgstr "戻り値" msgid "Return type" msgstr "戻り値の型" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "のメンバ変数" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "変数" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "列挙型" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "関数パラメータ" @@ -2075,7 +2075,7 @@ msgstr "%s の記述 %s はすでに %s で %s が使われています" msgid "duplicate label of equation %s, other instance in %s" msgstr "数式 %s のラベルはすでに %s で使われています" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無効な math_eqref_format: %r" @@ -2225,24 +2225,24 @@ msgstr "ロール" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s の記述 %s はすでに %s で使われています" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "環境変数; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "不正なオプションの説明 %r は、\"opt\"、\"-opt args\"、\"--opt args\"、\"/opt args\" または \"+opt args\" のようになります。" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s コマンドラインオプション" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "コマンドラインオプション" @@ -2258,79 +2258,79 @@ msgstr "用語集の用語は空行で区切ってはいけません" msgid "glossary seems to be misformatted, check indentation" msgstr "用語集のフォーマットが間違っているようです。インデントを確認してください" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "用語集の項目" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "文法トークン" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "参照ラベル" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "環境変数" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "プログラムオプション" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "document" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "モジュール索引" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "検索ページ" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "ラベル %s はすでに %s で使われています" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "%s の記述 %s はすでに %s で使われています" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig は無効です。:numref: は無視されます。" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "クロスリファレンスの作成に失敗しました。番号が割り当てられていません: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "リンクにキャプションがありません: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無効な numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "無効な numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "未定義のラベル: %s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "クロスリファレンスの作成に失敗しました。タイトルまたはキャプションが見つかりませんでした: %s" @@ -2857,7 +2857,7 @@ msgstr "auto%s (%r) の署名が無効です" msgid "error while formatting arguments for %s: %s" msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "オブジェクト %s に属性 %s がありません" @@ -2910,7 +2910,7 @@ msgid "" msgstr "members: オプションで指定された属性がありません: モジュール %s、属性 %s" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s の関数シグネチャの取得に失敗しました: %s" @@ -2920,33 +2920,33 @@ msgstr "%s の関数シグネチャの取得に失敗しました: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "%s のコンストラクタ署名の取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "%sの別名です。" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)のエイリアスです。" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s のメソッド・シグネチャの取得に失敗しました: %s" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "無効な __slots__ が %s で見つかりました。無視されました。" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3001,12 +3001,12 @@ msgstr "%sの名前を解析できませんでした " msgid "failed to import object %s" msgstr "%sオブジェクトをインポートできませんでした " -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ファイルが見つかりません: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3111,30 +3111,30 @@ msgstr "受け取る" msgid "References" msgstr "参照" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "列挙" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "無効な値セット (終了括弧がありません): %s" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "無効な値セット (開始括弧がありません): %s" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "不正な文字列リテラル (終了引用符がありません): %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "不正な文字列リテラル (開始引用符がありません): %s" @@ -3453,40 +3453,40 @@ msgstr "サイドバーをたたむ" msgid "Contents" msgstr "コンテンツ" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4列ベースのインデックスが見つかりました。あなたが使っている拡張子のバグかもしれません: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Footnote [%s] は参照されていません。" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "Footnote [#] は参照されていません。" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "翻訳されたメッセージの footnote 参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "翻訳されたメッセージの参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "翻訳されたメッセージの引用参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3528,16 +3528,16 @@ msgstr "リモート画像を取得できませんでした: %s [%s]" msgid "Unknown image format: %s..." msgstr "不明な画像フォーマット: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "デコードできないソース文字です。\"?\" に置き換えます: %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "スキップしました" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "失敗しました" @@ -3580,12 +3580,12 @@ msgid "" "it directly: %s" msgstr "日付形式が無効です。直接出力したい場合は、文字列を一重引用符で囲みます: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree に存在しないファイルへの参照が含まれています %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only ディレクティブの条件式の評価中に例外が発生しました: %s" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 6fcf3b50f87cc6f84dfd03525019c0c2a558d4d2..106896b1b484d1f9eec29155a17a2f265b4f4d46 100644 GIT binary patch delta 16 Ycmdnm&$_jrb;F%ijFy}4uDUS?07R(>u>b%7 delta 16 Ycmdnm&$_jrb;F%ij7FR9uDUS?07QQXssI20 diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 0fa3a242e50..d6dc79189af 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-05 10:17+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -1858,7 +1858,7 @@ msgstr ".. acks 내용이 목록이 아닙니다" msgid ".. hlist content is not a list" msgstr ".. hlist 내용이 목록이 아닙니다" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2842,7 +2842,7 @@ msgstr "auto%s (%r)에 대한 잘못된 서명" msgid "error while formatting arguments for %s: %s" msgstr "%s에 대한 인수를 서식화하는 동안 오류 발생: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "%s 속성이 %s 객체에 없음" @@ -2895,7 +2895,7 @@ msgid "" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" @@ -2905,33 +2905,33 @@ msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "%s의 별칭" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)의 별칭" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3453,25 +3453,25 @@ msgstr "각주 [%s]이(가) 참조되지 않았습니다." msgid "Footnote [#] is not referenced." msgstr "각주 [#]이 참조되지 않았습니다." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "번역된 메시지의 각주 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "번역된 메시지의 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "번역된 메시지의 인용 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "잘못된 날짜 형식입니다. 바로 출력하려면 작은 따옴표로 문자열을 인용하십시오: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree에 존재하지 않는 파일 %r에 대한 참조가 있음" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index ac4798d089c9dbe983fa18fb48c4e9a089113353..0d65de8bb8ade55f8a5849d1ac943c711b2a8f58 100644 GIT binary patch delta 14 Vcmexk{>Oa7K>Oa7L4nCH1$Z}~6VT%Z07*s%O8@`> diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index d5d4b736509..7ec3c82d63d 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index a727d5c6dbc8f334fb19f30f8409f0799c50da64..a032f6a65da750f88d3a8b83ef5b79afde9917a5 100644 GIT binary patch delta 15 Wcmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "Atgriež" msgid "Return type" msgstr "Atgriežamais tips" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "loceklis" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "mainīgais" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tips" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "role" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "apkārtnes mainīgais; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "glosārija termins" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "gramatiskais marķieris" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "atsauces virsraksts" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "apkārtnes mainīgais" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programmas opcija" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Moduļu indekss" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Atlases lapa" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "Savērst sānjoslu" msgid "Contents" msgstr "Saturs" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 61b1c1a57e35d0c0a0b4e30b909eed4883d56c05..506bc0058b115b9c3d612a676fef58299bb181f4 100644 GIT binary patch delta 15 XcmX@hf0lp4O=c!Tv(2}eKQRLUGpq(Q delta 15 XcmX@hf0lp4O=czoqs_OOKQRLUGmQo> diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 1758a95c003..c05fc2a5ad3 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,7 +888,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1899,44 +1899,44 @@ msgstr "Враќа" msgid "Return type" msgstr "Повратен тип" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "променлива" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "макро" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,12 +2985,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3095,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,40 +3437,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3512,16 +3512,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index ea328fcbecb4f7b455a758bba3fc0358b320d72a..43c40ebac2e061d5bc41ae422bbd9bbe6990c1f1 100644 GIT binary patch delta 15 WcmX?TdeC%(xFD0E*=9+>6`TMowgkKY delta 16 XcmX?TdeC%(xZq@aLB7qZf^#?lGu8z} diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index c2355b6d584..ec7e08905f8 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "Returnere" msgid "Return type" msgstr "Retur type" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "rolle" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "ordliste" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "grammatikk token" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "referanse-etikett" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "programvalg" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søkeside" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "Skjul sidepanelet" msgid "Contents" msgstr "Innhold" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 8c2472afb3e1039b2f15ed40b06244224fbe1989..dc4c9e6936a44dc400fb72c0b10b5b7876b410a1 100644 GIT binary patch delta 15 WcmbQ~Hq&jxF##q+v&|<20)+rE@dca! delta 16 YcmbQ~Hq&jxF@eeN1o$>z5pWd(06+o;(f|Me diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index d532cae0c47..477257c376d 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -889,7 +889,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1900,44 +1900,44 @@ msgstr "Returns" msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "चल" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "किसिम" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "भूमिका" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "शब्द-अर्थमा भएको" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "सन्दर्व सामग्री" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "कार्यक्रमका बिकल्प" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "मडुल अनुसुची" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "पानामा खोज्नुहोस्" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2986,12 +2986,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3096,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,40 +3438,40 @@ msgstr "साइडबर सानो बनाउनुहोस्" msgid "Contents" msgstr "विषयसूची" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,16 +3513,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index bceab49fa26b0ca11c0ce342896359a52b4bf62d..c0c98790ac03679fdad4768d3f8bf0b1613e7b33 100644 GIT binary patch delta 16 XcmdlzlX3S<#tj}ijFy`{b&3=KH_HXX delta 18 acmdlzlX3S<#tj}ilM8fsH;3w^DF6USQ3k~T diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 57bbf2ec54a..63cb7938c0a 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -1863,7 +1863,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2847,7 +2847,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2900,7 +2900,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2910,33 +2910,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3458,25 +3458,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3570,12 +3570,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 13dceb7630e2a18378c1be66a0cf2016791a24a6..49ffdf3685665950b137955df7b682a74727a898 100644 GIT binary patch delta 17 ZcmaF)lJVtB#tn*2OonEgm7R_m0RT%b2QvTw delta 18 acmaF)lJVtB#tn*2lRcgIHtRd>G6Dcr>Ie1! diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index f42783e339e..59aa71bbd8f 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -69,7 +69,7 @@ msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego de msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "gotowe" @@ -196,27 +196,27 @@ msgstr "nie można nadpisać ustawienia konfiguracji %r nie wspieranym typem, ig msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "Nie ma takiej wartości konfiguracyjnej: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Wartość konfiguracji %r już podana" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Plik konfiguracyjny (albo jeden z modułów przez niego zaimportowanych) wywołał sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -224,57 +224,57 @@ msgid "" "%s" msgstr "W twoim piku konfiguracyjnym jest błąd programowalny: \n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Rozdział %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Rys. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Wartość konfiguracyjna `{name}` musi być jednym z {candidates}, a podany jest `{current}`." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "Nie odnaleziono primary_domain %r, zignorowano." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -497,17 +497,17 @@ msgstr "ustawienie %s.%s nie występuje w żadnej z przeszukiwanych konfiguracji msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "plik %r na ścieżce motywu nie jest poprawnym plikiem zip lub nie zawiera motywu" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nie znaleziono motywu o nazwie %r (brak theme.conf?)" @@ -790,22 +790,22 @@ msgstr "wczytywanie szablonów... " msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "zepsuty odnośnik: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "Nie znaleziono kotwicy '%s'" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -891,7 +891,7 @@ msgid "The text files are in %(outdir)s." msgstr "Pliki tekstowe są w %(outdir)s." #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "błąd zapisu pliku %s: %s" @@ -901,7 +901,7 @@ msgstr "błąd zapisu pliku %s: %s" msgid "The XML files are in %(outdir)s." msgstr "Pliki XML znajdują się w %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Pliki pseudo-XML są w %(outdir)s." @@ -922,7 +922,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1099,7 +1099,7 @@ msgstr "nie znaleziono wartości konfiguracyjnej \"latex_documents\"; żadne dok msgid "\"latex_documents\" config value references unknown document %s" msgstr "wartość konfiguracyjna \"latex_documents\" odwołuje się do nieznanego dokumentu %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1152,66 +1152,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Błąd kodowania:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Błąd rekursji:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Wystąpił wyjątek:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "Raport o błędzie można zgłosić pod adresem . Dzięki!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1230,135 +1230,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "ogólne opcje" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "zapisz wszystkie pliki (domyślnie: zapisz tylko nowe i zmienione pliki)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "zastąp ustawienie w pliku konfiguracyjnym" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "przekaż wartość do szablonów HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "zwiększ szczegółowość (może być powtórzone)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "zapisz ostrzeżenia (i błędy) do podanego pliku" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "zamień ostrzeżenia na błędy" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "nie można znaleźć plików %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "Argument opcji -D musi mieć postać nazwa=wartość" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "Argument opcji -A musi mieć postać nazwa=wartość" @@ -1860,7 +1860,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1902,44 +1902,44 @@ msgstr "Zwraca" msgid "Return type" msgstr "Typ zwracany" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "pole" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "zmienna" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "unia" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2062,7 +2062,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" @@ -2212,24 +2212,24 @@ msgstr "rola" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "zmienna środowiskowa; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2245,79 +2245,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "termin glosariusza" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "symbol gramatyki" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "etykieta odsyłacza" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "zmienna środowiskowa" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "opcja programu" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Wyszukiwanie" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2844,7 +2844,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "brakujący atrybut %s w obiekcie %s" @@ -2897,7 +2897,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2907,33 +2907,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2988,12 +2988,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3098,30 +3098,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3440,40 +3440,40 @@ msgstr "Zwiń pasek boczny" msgid "Contents" msgstr "Treść" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3515,16 +3515,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "Nieznany format obrazka: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3567,12 +3567,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 58e1dc6aa64e177d061e268dd1c2a42c697ff37c..c1e7ed95ef2c213c7b04bf58a8818b9f070a6bb5 100644 GIT binary patch delta 12 Tcmeyy{Ec}+C!^)Yt{g@HBnbrW delta 12 Tcmeyy{Ec}+C!^8Et{g@HBjyC> diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index c2cbbe07258..9f4498b901a 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index e8de025c23245d41be4a20918825f53fea8397e9..67149ecaa96a4b5bbe61db506699ffbdd7c41594 100644 GIT binary patch delta 16 Wcmdn+lVt-C-C4zGx%uv@%M$@l7zt?r delta 16 Wcmdn+lVt-C-C4zGwE6C;%M$@k?g?T5 diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 172bde773e7..5ffe8f2a695 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 02:45+0000\n" "Last-Translator: Rafael Fontenelle \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -1862,7 +1862,7 @@ msgstr ".. conteúdo acks não está na lista" msgid ".. hlist content is not a list" msgstr ".. conteúdo hlist não está na lista" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2846,7 +2846,7 @@ msgstr "assinatura inválida para auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "erro ao formatar argumentos para %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "faltando atributo %s no objeto %s" @@ -2899,7 +2899,7 @@ msgid "" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" @@ -2909,33 +2909,33 @@ msgstr "Falha ao obter uma assinatura de função para %s: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "Falha ao obter uma assinatura de construtor para %s: %s" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "apelido de %s" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "apelido de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Falha ao obter uma assinatura de método para %s: %s" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3457,25 +3457,25 @@ msgstr "Nota de rodapé [%s] não é referenciada." msgid "Footnote [#] is not referenced." msgstr "Nota de rodapé [#] não é referenciada." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referências de nota de rodapé inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referências inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referências de citação inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3569,12 +3569,12 @@ msgid "" "it directly: %s" msgstr "Formato de data inválido. Envolva a string com aspas simples se desejar emiti-la diretamente: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree contém referência ao arquivo inexistente %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 5f31e98b785309b195ac9466639e7a2a86beff68..50a379b9e0f63e8468b328b5ac19eddb0b346cd3 100644 GIT binary patch delta 15 WcmbQ^Fvnp-yfBlY+2%yy-8=v+`2{in delta 16 XcmbQ^Fvnp-yzu09VZP0|!s~eeH+=>K diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 6f0464badf4..4a60f34c6e0 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -889,7 +889,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1900,44 +1900,44 @@ msgstr "Retorno" msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "papel" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "variável de ambiente; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "Termo de glossário" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "token de gramática" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "rótulo de referência" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "variável de ambiente" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "opção de programa" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Pesquisa" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2986,12 +2986,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3096,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,40 +3438,40 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdo" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,16 +3513,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index d436172ef1e1a430a029ad817243e835813601ee..b6660dea89a250c138cc86767a2306907534146d 100644 GIT binary patch delta 14 VcmX@)cF1jmgD8`s*\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -67,7 +67,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -194,27 +194,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -222,57 +222,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabelul %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "Cod %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -495,17 +495,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -788,22 +788,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -889,7 +889,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -899,7 +899,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -920,7 +920,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1097,7 +1097,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1150,66 +1150,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1228,135 +1228,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1900,44 +1900,44 @@ msgstr "Întoarce" msgid "Return type" msgstr "Tipul întors" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "membru" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "variabilă" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funcție" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enumerator" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2060,7 +2060,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2210,24 +2210,24 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "variabilă de mediu; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2243,79 +2243,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "termen de glosar" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "element de gramatică" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "etichetă de referință" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "variabilă de mediu" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "opțiune a programului" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Index al modulelor" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pagină de Căutare" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2986,12 +2986,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3096,30 +3096,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3438,40 +3438,40 @@ msgstr "Ascundere bară laterală" msgid "Contents" msgstr "Cuprins" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3513,16 +3513,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 2dc89edf623a112947ef7ed0433b31a1535ce5d0..76ae1730fa1eea109ac057863c7d8f177462acad 100644 GIT binary patch delta 16 XcmX@s#CWWUaf6jSqvd96d2S^DG>ioh delta 16 XcmX@s#CWWUaf6jSqtRw-d2S^DG-3q_ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index caf208a196d..e1eae7d4e44 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -1862,7 +1862,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2846,7 +2846,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2899,7 +2899,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2909,33 +2909,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3457,25 +3457,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3569,12 +3569,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index aeae858f0ced7d7d5125f4d57225179d73936cb6..69f97f60baa8113ec87c60981107a7bb8af09ee1 100644 GIT binary patch delta 15 WcmeB|>6h8CpN+}TZ1X`jKXw2sss#i9 delta 16 XcmeB|>6h8CpKbDUHonbg*__w`IK&1i diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 6ae1d16d8f9..fe03ff3a9cc 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,7 +888,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1899,44 +1899,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "සාමාජික" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "විචල්‍යය" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "ක්‍රියාව" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "මැක්‍රෝ" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "වර්ගය" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "සෙවුම් පිටුව" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,12 +2985,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3095,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,40 +3437,40 @@ msgstr "" msgid "Contents" msgstr "අන්තර්ගතය" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3512,16 +3512,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 9d6bb67a671e4196636d8fcc159c943c18a3677c..72ed2e6d9f5a4d6e32922371a233d0af45d9d24f 100644 GIT binary patch delta 16 YcmX>yi{;2HmJPqBFj{W@GsU9<07l6OK>z>% delta 16 YcmX>yi{;2HmJPqBFdA+CGsU9<07jn(IsgCw diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index b4cfd4d01d8..d58ac1d20fb 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: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -1859,7 +1859,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2843,7 +2843,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "chyba formátovania argumentov %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "chýba atribút %s objektu %s" @@ -2896,7 +2896,7 @@ msgid "" msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2906,33 +2906,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "alias pre %s" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias pre TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3454,25 +3454,25 @@ msgstr "Poznámka pod čiarou [%s] nie je odkazovaná." msgid "Footnote [#] is not referenced." msgstr "Poznámka pod čiarou [#] nie je odkazovaná." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3566,12 +3566,12 @@ msgid "" "it directly: %s" msgstr "Neplatný formát dátumu. Použije jednoduché úvodzovky, ak ho chcete priamo vo výstupe: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "strom obsahu obsahuje neexistujúci súbor %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index dd5873720adc6a0a87027f7b3e33f98c483f3c2e..2ba41d8e0e89a7114f775630ca701ac7707ac19c 100644 GIT binary patch delta 14 VcmeyM^+9Wc1uvuJW=mdk4gf3r1e^c> delta 16 XcmeyM^+9Wc1@GhpUf#{FyxJT9Io<_t diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 0f8a1226e1a..9dc5eac0fd8 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: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 757ff297b36..fc637022215 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: 2022-01-09 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,7 +64,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -191,28 +191,28 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called " "sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but " "`{current}` is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,18 +493,18 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since " "Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -792,22 +792,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -893,7 +893,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -903,7 +903,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -924,7 +924,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1101,7 +1101,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1154,66 +1154,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue " "to the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1236,135 +1236,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\"" " will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1916,44 +1916,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2076,7 +2076,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2226,24 +2226,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\"," " \"--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2259,79 +2259,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -3001,12 +3001,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does " "not contain .rst. Skipped." @@ -3114,30 +3114,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3456,17 +3456,17 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" @@ -3530,16 +3530,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 588129bbe2dac65a1704408f15e8eff86953fcc8..8cb3433510c342e1b8e3cfc221b0a01a9f27450e 100644 GIT binary patch delta 17 ZcmbRHgk|m%mJRzCF&Ua|KDa2R9{^5g2!;Rv delta 17 ZcmbRHgk|m%mJRzCF&P+bKDa2R9{^5B2!Q|q diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index df282d7c153..defed56e551 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 15:07+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -66,7 +66,7 @@ msgstr "'setup' siç është përcaktuar aktualisht te conf.py s’është funks msgid "loading translations [%s]... " msgstr "po ngarkohen përkthime [%s]… " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "u bë" @@ -193,27 +193,27 @@ msgstr "s’mund të anashkalohet rregullim formësimi %r me një lloj të pambu msgid "unknown config value %r in override, ignoring" msgstr "vlerë e panjohur formësimi %r te anashkalimi, po shpërfillet" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "S’ka vlerë të tillë formësimi: %s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "Vlerë formësimi %r e pranishme tashmë" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "Ka një gabim sintakse te kartela juaj e formësimit: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Kartela e formësimit (ose një nga modulet që ajo importon) thirri sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "Ka një gabim të programueshëm te kartela juaj e formësimit:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "Vlera e formësimit `source_suffix' pret një varg, një listë vargjesh, ose një fjalor. Por është dhënë `%r'." -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "Ndarja %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Vlera e formësimit `{name}` duhet të jetë një nga {candidates}, por është dhënë `{current}`." -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}'; pritej {permitted}." -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "Vlera e formësimit `{name}' është e llojit `{current.__name__}', si parazgjedhje merr `{default.__name__}'." -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "s’u gjet primary_domain %r, po shpërfillet." -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "rregullimi %s.%s nuk haset në asnjë prej formësimeve temash ku u kër msgid "unsupported theme option %r given" msgstr "është dhënë mundësi teme %r e pambuluar" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "kartela %r te shteg teme s’është kartelë zip e vlefshme ose nuk përmban temë" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "U gjet sphinx_rtd_theme (< 0.3.0). S’do të jetë e passhme që prej Sphinx-6.0" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "s’u gjet temë e emërtuar %r (mos mungon theme.conf?)" @@ -787,22 +787,22 @@ msgstr "po lexohen gjedhe… " msgid "writing message catalogs... " msgstr "po shkruhen katalogë mesazhesh… " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "Shihni për çfarëdo gabimesh te përfundimi më sipër ose te %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "lidhje e dëmtuar: %s (%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "S’u gjet spirancë '%s'" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "S’u arrit të përpilohet shprehje e rregullt te linkcheck_allowed_redirects: %r %s" @@ -888,7 +888,7 @@ msgid "The text files are in %(outdir)s." msgstr "Kartelat tekst gjenden në %(outdir)s." #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "gabim në shkrim kartele %s: %s" @@ -898,7 +898,7 @@ msgstr "gabim në shkrim kartele %s: %s" msgid "The XML files are in %(outdir)s." msgstr "Kartelat XML gjenden në %(outdir)s." -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "Kartelat pseudo-XML gjenden në %(outdir)s." @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "S’u arrit të lexohet kartelë të dhënash montimi: %r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1096,7 +1096,7 @@ msgstr "s’u gjet vlerë formësimi \"texinfo_documents\"; s’do të shkruhet msgid "\"latex_documents\" config value references unknown document %s" msgstr "vlera e formësimit \"texinfo_documents\" i referohet një dokumenti të panjohur %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "%r s’ka rregullimin \"theme\"" msgid "%r doesn't have \"%s\" setting" msgstr "%r s’ka rregullimin \"%s\"" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "Ndodhi një përjashtim gjatë montimit, po niset diagnostikuesi:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "U ndërpre!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "Gabim markup-i reST:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "Gabim kodimi:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "Traceback-u i plotë është ruajtur te %s, nëse doni t’ua raportoni problemin zhvilluesve." -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "Gabim përsëritje:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "Kjo mund të ndodhë me kartela burim shumë të mëdha ose të futura thellë brenda njëra-tjetrës. Mund të rrisni me kujdes kufirin parazgjedhje për ripërsëritje Python prej 1000, te conf.py, me p.sh.:" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "Ndodhi një përjashtim:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "Ju lutemi, njoftojeni nëse qe një gabim përdoruesi, që kështu herës tjetër të mund të furnizohet një mesazh më i mirë gabimi." -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "Një njoftim të mete mund të depozitohet te gjurmuesi në . Faleminderit!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "numri i aktit duhet të jetë një numër pozitiv" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "Për më tepër hollësi, vizitoni ." -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "\nProdhoni dokumentim nga kartela burim.\n\nsphinx-build prodhon dokumentim prej kartelash te SOURCEDIR dhe e vendos\nte OUTPUTDIR. Kërkon për 'conf.py' te SOURCEDIR për rregullime formësimi.\nMjeti 'sphinx-quickstart' mund të përdoret për të prodhuar kartela gjedhe,\npërfshi 'conf.py'\n\nsphinx-build mund të krijojë dokumentim në formate të ndryshëm. Një format\npërzgjidhet duke specifikuar te rreshti i urdhrave emrin e montuesit; HTML-ja,\nsi parazgjedhje. Montuesit mund të kryejnë gjithashtu veprime të tjera të lidhura\nme përpunim dokumentimi.\n\nSi parazgjedhje, gjithçka që është e papërditësuar, montohet. Nëse doni\nmontim vetëm për kartela të përzgjedhura, kjo mund të bëhet duke\nspecifikuar emra kartelash individuale.\n" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "shteg për te kartela burimi dokumentimi" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "shteg për te drejtori përfundimesh" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "një listë kartelash specifike për rimontim. E shpërfillur, nëse jepet -a" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "mundësi të përgjithshme" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "montues për t’u përdorur (parazgjedhje: html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "shkruaj krejt kartelat (parazgjedhje: shkruaj vetëm kartela të reja dhe ato të ndryshuara)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "mos përdor një mjedis të ruajtur, lexo përherë krejt kartelat" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "shteg për mjedis të ruajtur në fshehtinë dhe kartela doctree (parazgjedhje: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "montoje në paralel me N procese, kur është e mundur (vlera speciale “auto”\" do ta vërë N-në sa cpu-count)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "shteg ku gjendet kartelë formësimi (conf.py) (parazgjedhje: i njëjtë me SOURCEDIR)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "mos përdor fare kartelë formësimesh, vetëm mundësitë -D" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "anashkalo një rregullim te kartelë formësimi" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "jep një vlerë te gjedhe HTML" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "përcaktoni etiketë: përfshi blloqe “only” me TAG" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "mënyrë gërricëse, sinjalizo mbi krejt referencat që mungojnë" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "mundësi për ç’prodhon konsola" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "pa output në stdout, thjesht sinjalizime në stderr" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "pa output fare, madje as sinjalizime" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "shkruaj sinjalizime (dhe gabime) te kartela e dhënë" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "shndërroji sinjalizimet në gabime" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "me -W, vazhdo punën, kur merren sinjalizime" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "xhiro Pdb, në rast përjashtimesh" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "s’gjenden dot kartela %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "s’mund të ndërthuret një mundësi -a dhe emra kartelash" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "s’hapet dot kartelë sinjalizimesh %r: %s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "argumenti i mundësisë -D duhet të jetë në formën emër=vlerë" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "argumenti i mundësisë -A duhet të jetë në formën emër=vlerë" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1899,44 +1899,44 @@ msgstr "Kthime" msgid "Return type" msgstr "Lloj kthimi" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "anëtar" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "ndryshore" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "funksion" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "bashkim" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "lloj" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "parametër funksioni" @@ -2059,7 +2059,7 @@ msgstr "përshkrim %s i përsëdytur i %s, tjetër %s në %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "etiketë e përsëdytur ekuacioni %s, instancë tjetër te %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format i pavlefshëm: %r" @@ -2209,24 +2209,24 @@ msgstr "rol" msgid "duplicate description of %s %s, other instance in %s" msgstr "përshkrim i përsëdytur %s %s, instancë tjetër te %s" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "ndryshore mjedisi; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "Përshkrim i keqformuar mundësie %r, duhet të duket si \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" ose \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "Mundësi për rresht urdhrash %s" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "mundësi për rresht urdhrash" @@ -2242,79 +2242,79 @@ msgstr "termat e fjalorthit s’duhet të paraprihet nga rreshta të zbrazët" msgid "glossary seems to be misformatted, check indentation" msgstr "fjalorthi duket të jetë i keformatuar, kontrolloni shmangie kryeradhe" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "term fjalorthi" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "etiketë reference" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "ndryshore mjedisi" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "mundësi programi" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Tregues Modulesh" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Faqe Kërkimesh" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiketë %s e përsëdytur, tjetër instancë te %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "përshkrim %s i përsëdytur për %s, tjetër instancë te %s" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig është i çaktivizuar. :numref: është shpërfillur." -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u caktua ndonjë numër: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "lidhja s’ka titull: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "numfig_format i pavlefshëm: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "numfig_format i pavlefshëm: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "etiketë e papërcaktuar: %s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u gjet titull ose legjendë: %s" @@ -2841,7 +2841,7 @@ msgstr "nënshkrim i pavlefshëm për auto%s (%r)" msgid "error while formatting arguments for %s: %s" msgstr "gabim gjatë formatimi argumentesh për %s: %s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "atribut %s që mungon te objekt %s" @@ -2894,7 +2894,7 @@ msgid "" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" @@ -2904,33 +2904,33 @@ msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "S’u arrit të merrej nënshkrim konstruktori për %s: %s" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "Baza: %s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "alias për %s" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias për TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,12 +2985,12 @@ msgstr "s’u arrit të përtypej emri %s" msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3095,30 @@ msgstr "" msgid "References" msgstr "Referenca" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "Sinjalizime" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "u caktua vlerë e pavlefshme (mungon kllapë mbyllëse): %s" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "u caktua vlerë e pavlefshme (mungon kllapë hapëse): %s" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "shprehje vargu e keqformuar (mungon thonjëz mbyllëse): %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "shprehje vargu e keqformuar (mungon thonjëz hapëse): %s" @@ -3437,40 +3437,40 @@ msgstr "Tkurre anështyllën" msgid "Contents" msgstr "Lëndë" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "U gjet tregues me bazë 4 shtylla. Mund të jetë një e metë e zgjerimeve që përdorni: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Poshtëshënimi [%s] s’është në referencë." -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "Poshtëshënimi [#] s’është në referencë." -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "referenca pa njëtrajtësi, te fundfaqe në mesazhin e përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "referenca pa njëtrajtësi, te mesazhi i përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "referenca citimi pa njëtrajtësi, te fundfaqe në mesazhin e përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3512,16 +3512,16 @@ msgstr "S’u soll dot figurë e largët: %s [%s]" msgid "Unknown image format: %s..." msgstr "Format i panjohur figure: %s…" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "shenja burimi të padeshifrueshme, po zëvendësohen me \"?\": %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "e anashkaluar" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "e dështuar" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "Format i pavlefshëm datash. Quote the string by single quote Nëse doni të jepet drejtpërsëdrejti, përdorni për vargun thonjëza njëshe: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "“toctree” përmban referencë për te një kartelë joekzistuese %r" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 9dd2bfbacfb14c82a012b88126b2de70ce14cf0d..656ba0d1945bc94e3b0b88e204d2832cc45dd02a 100644 GIT binary patch delta 14 WcmX@$dBAhSIUz>N&F6(a3IYH#RR(ha delta 14 WcmX@$dBAhSIUz=)&F6(a3IYH#D+X); diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index eaa0302f090..b0c09977385 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -1858,7 +1858,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2842,7 +2842,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2895,7 +2895,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,33 +2905,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3453,25 +3453,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3565,12 +3565,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index a3ed3462ea729277982a1171428e42c1f398378e..0b75652845fa037f3123ee344398932b6d1d0f4a 100644 GIT binary patch delta 13 Ucmcb}a*<_12a}=M#;)Ux040D0F8}}l delta 13 Vcmcb}a*<_1$HWbM8>j7N1OO|i1{DAR diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 4315cf01220..00937daeea9 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 5eb22b8d3a44e9bf53cbbf45bf67843ce5b77aba..62f460ac62fa4db60786583372e544fd2e902417 100644 GIT binary patch delta 12 TcmX@Za)xC>C!^)Yu0xCfAuR;* delta 12 TcmX@Za)xC>C!^8Eu0xCfAqoWR diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index e8383e75878..abe22be744b 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index fbc438717b7444e8a39610fc844c0c8fb26bc26a..20d4aef142657ccf151d90bab2a12a5d3aa36ee1 100644 GIT binary patch delta 14 WcmdmFy2*6IF9Al&&A$bS{vj#x` delta 14 WcmdmFy2*6IF9AlQ&A$bS{i3U0V diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 29c30665166..cf32b11b573 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 285c29225f705f795decec2497a5134336395f43..6990462ae50e49f1ebb0b399ea566352559c53d6 100644 GIT binary patch delta 12 Ucmey)@||VEc1FvMJN7dI04Ajcp#T5? delta 13 Vcmey)@||VE_KEj-Hy+u{2mmrZ2IK$$ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 75fa1a471c2..6fe88e0d1e0 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 421943a5102afe9a77d466883181ffdbad4dcf7b..58166ca8be9291149ab59a114c3f1f718e814feb 100644 GIT binary patch delta 12 Tcmeyw{E2x&C!^)Yt_(&1BdG-9 delta 12 Tcmeyw{E2x&C!^8Et_(&1BZdUq diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 75c1dc3f99d..e1ac1e170ab 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 3847422975128d2390b45697e5a2aa3c411cc56b..a690ab4df735229819397b75c86e549a61648059 100644 GIT binary patch delta 16 XcmbPsih0^8<_)~HjFy}EYB@3hIOhfF delta 16 XcmbPsih0^8<_)~Hj7FRJYB@3hIK2hp diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 57347808a06..38b74cffc0d 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -1860,7 +1860,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2844,7 +2844,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2897,7 +2897,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2907,33 +2907,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3455,25 +3455,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3567,12 +3567,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 1916ff2451d946d24c7c270511d9cb16e81dd4e0..848afa2eda6e5dad310867acd0ef5f06df53380e 100644 GIT binary patch delta 15 WcmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -66,7 +66,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -193,27 +193,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -221,57 +221,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -494,17 +494,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -787,22 +787,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -888,7 +888,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -898,7 +898,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -919,7 +919,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1096,7 +1096,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1149,66 +1149,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1227,135 +1227,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1899,44 +1899,44 @@ msgstr "Повертає" msgid "Return type" msgstr "Тип повернення" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2059,7 +2059,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2209,24 +2209,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "змінна оточення; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2242,79 +2242,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "змінна оточення" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "Індекс модулів" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Сторінка пошуку" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,12 +2985,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3095,30 +3095,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3437,40 +3437,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3512,16 +3512,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 576873ad01cf3af2dfabe7ccf8fedf0e8111d5df..3854364d68b913fd0372c6b93bd6e469c9564315 100644 GIT binary patch delta 13 Ucmeys{DFBw2a}=M#;!C*04IdAv0st+y1@Hg> diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 64f12964efb..22bc490f15c 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 9e81b051705c0b71af9523dc19c65c90e338e12a..1fb39989a02798e0be57587b9daefec14c812f44 100644 GIT binary patch delta 14 WcmX@7cTR7^B3?$z&5LS_G6kss delta 16 YcmX@7cTR7^BHqcTczHLk=bg_906@V8<^TWy diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 681d36a3fc3..5a918e4284a 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -1857,7 +1857,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2841,7 +2841,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2894,7 +2894,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,33 +2904,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3452,25 +3452,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3564,12 +3564,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index bfd23c2e493e7f5b227127b21e198b65b41306f4..14d0995ed53c2ee2e9bbef0126b6fa187aafd2d3 100644 GIT binary patch delta 12 Tcmeys{DFBwC!^)Yt~5pfBY6be delta 12 Tcmeys{DFBwC!^8Et~5pfBUS{} diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index d9e57898609..ab07aa1b370 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-09 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3451,25 +3451,25 @@ msgstr "" msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 1ebd467811e593cd39ab60e70d80b3f519a20cbd..f32523ef369866ffcc40e23422fdc590465e18a3 100644 GIT binary patch delta 5481 zcmXZfeSFX59>?*^S;l5tGn<(WW41AyW*djOKe5CX9k!*S*3zNOJdn`MHxyEN6y|0r zll!(IcZXxSr_?#kJt=b3#+3V_<($rWy}BC<34-?>n=4WA7`VUzlt5OPKjNxmr5gwjsd7M9qBAYrG6r6htn|)=b(;Y zAGX0tOu*kT0%Mlh3A&@kE5v)_U^C+B*bA3ooZ%HDTZSV_D7xJ7*vKzT>oD5C9cL6cm?AzaJ4PMj;QBzP|r<5PpR=}Xs1P}375JD zHllX2-Syvc{l06Axki5=>c0OMHDLT&TjlLh@#Cl?%0u0zNvK=$K5Cw|Ysvp*8WnVC z$E!cFABfGELwpFMF`7H07ki^JG!&o2QK%gqL_fTQD$<)SjxVzxpbn^-cpfL?yZ8{+ zD<}T}GzOO2;(HPm7dWS2YvP%hfMuwiokA_-obxKSBmM)MV!}GRpuVW*2Vy4XxOlnq z6OTq)e)tssgWsY)G^f|wh1582qXzQXV5`|56-T=`-r3zb*g4ASIg3z7QHt7_x1UB5 zjT(Fn!#_2q2QI*#cmk6#Y$JaUU`~Ce^h3NIiI)v zo_Wc2%yursSRPz~x>jFeBdkUZ@H=Yf^)}lHf>3dDXDsTuL>G5KEua^wh6cO-7cf-! ze;f_HFw;37^<`Uz_ZEOEu4+`#T}MrrwZ;A|HUt$vgPLFzs#d0=YNQNPvBJgIQRADf zER6Y0TN)am8>)C7bn$TK2-E^cV-8Nn!FU*3VC%ozh4yhijS=*};^GC^iFhMEfi${EfSEG=IR=gM!aX)H>H!vHUZs#+MW07x?IfUvj{D(1p@Bped{CC*v*cP899)R(< z0X6<<)GhI;uo-!vg8b{O^Xbq7Z=oL8jB$7#m6>{<8S@AR;Sd~#PvJ(??;$(w5k)v- zP-mWmN_{U3#|apX@1Vvn-%0-Uz;QYr#rnJKfR8)#oFh@0DMX#=5^REHsM)Pdi{U z@fQAtcq=LswWv&n9JD*lK*hsRzt2T~EJfACR(y{6%{dy)=;-^o{f9_CYUQsx-$Sjm z#Kq+pPy89iU=>E9-xv05V^MJihT$_9hm)`aE=6VV2qx(Mw>)HD%tQ@bfLcHiYJip4 z6?dQy-a$XSi+Zl^mo}wg*o8O>yI~IY#(9{FCtRHLmHih`A!akb*+4^QV5qq|O#)ibBPz!n)AHZp-_cx-(J%cUr z;t}$%0sM~IiPJEcxDPhMY*Z#j;dAI=F;=5)$JAqXqHWlaco+T^k6;?MK5oCHLs3UC z4Yh$1Y=PT78XahSgDKeHguT~2P%9tp;w6|${3Sk(e_#|obvW(08b#t3f?q zi(zQKu{Or$go)Sy2Vk`Be=dzQIwqlttQ?iX8>kohoUzw4A2r|`n2g1kiC>{6Z1SyL zNDFL3oQTRuHtPA2sOJ`AB$nKh^RJ+x9h}AttU{$W@jLtBco=mQV^Kv^f*SA(REld+ z8S8u2F7$cSS-*`Vl{ivh<9Xny-IlipSZ}Qc^EvNzOeQ)EzsEJmhR(=vg@hqm} zP4|1!dAqRT7(xFGjKLDr?b?r;_##GO#J}xPcS27OJVrxD@G`c*4cG(^ql%>lhu|&L z8TY$jZ_Q(!cD&8G z3uA~6VjNy}{SAM#DQ<##J{6V0bkwz;f!e^Q&K=GJsH3d>(X-#`J9KoRBdyAQddFZi zaXGfcuTdGgj(Rb++Fr*j)Xt}(CM>~N{0f!w8>o%NT(p@;M*W_NdT*RZ!c$rf!-)RE0V4ZIZf`%ZiWk7E$V)Y$P;Q1f{`UE^WY z4hFmUHPk|8p{l>g#Ro8+_$cP!@2Hx1^s;>}4|V46qc%|P;!4zbKcQ;lH>B1)6Zn(; z_9tO5KXgSsn2Fl?P)x+pE?$hvSQ)m$O{l6riJI`b`#t1mTMH4W@kXHD8;5>48RMDX zOsAouE4|l2wPO$BhF9zhgHWl>MeTGfsu*8KrFsSG*6hPv`~f>-*Q@sWPC!k(5(BWz z#oMtB^PAl?+F}hVwT-UXopf~$!#C;o@C~ec-4@Yo=LWo={*yQWt5Mf2<%az*^+#o@ z5LJA0Q5)WdUOO7M-4Cs9+86qvil+dz^6A(QXJa!whDzZLOvby|9usfbj68v@iKn18 zv=p_V&r!AUJqF?3Tkih*|6&JdhPq~%sEMbdQZ@^91VxyQ>riKY->>$)=Gcok3$@TW zs88%E)Hp%6?UyeMLx@vQ6Cv DViM&| delta 5514 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 g&rHo27xn7+%, 2020 # Izabel Wang , 2020 # Jian Dai , 2020 +# JY3, 2022 # Nomaka , 2018 # Lenville Leo , 2013 # Lenville Leo , 2013 @@ -22,9 +23,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" -"PO-Revision-Date: 2022-01-02 00:12+0000\n" -"Last-Translator: Komiya Takeshi \n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" +"PO-Revision-Date: 2022-01-10 05:20+0000\n" +"Last-Translator: JY3\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +81,7 @@ msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对 msgid "loading translations [%s]... " msgstr "正在加载翻译 [%s]... " -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "完成" @@ -207,27 +208,27 @@ msgstr "配置项 %r 覆盖值类型不支持,已忽略" msgid "unknown config value %r in override, ignoring" msgstr "覆盖中包含未知配置项 %r ,已忽略" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "不存在的配置项:%s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "配置项 %r 已存在" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "配置文件中存在语法错误: %s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "配置文件(或配置文件导入的模块)调用了 sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -235,57 +236,57 @@ msgid "" "%s" msgstr "配置文件中有程序上的错误:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "配置值\"source_后缀\"需要字符串、字符串列表或字典。但给出\"%r\"。" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "节 %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "图 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "配置项 `{name}` 必须设置为 {candidates} 之一,但现在是 `{current}` 。" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "配置值\"[name]\"的类型为\"[当前._name];但\"当前\"为\"当前\"。\"当前\"为\"当前\"。\"当前\"为\"当前\"。=================================预期 [允许]。" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "配置项 `{name}' 的类型是 `{current.__name__}',默认为 `{default.__name__}'。" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "未找到 primary_domain %r,已忽略。" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -508,17 +509,17 @@ msgstr "配置项 %s.%s 在所有已找到主题配置中均未出现" msgid "unsupported theme option %r given" msgstr "不支持的主题选项 %r" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "主题路径指定的文件 %r 是一个无效的或不包含主题的 zip 文件" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "主题 %r 未找到 (缺少 theme.conf?)" @@ -801,22 +802,22 @@ msgstr "读取模板... " msgid "writing message catalogs... " msgstr "写入消息目录... " -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "在上述输出或 %(outdir)s/output.txt 中检查错误" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "损坏的链接:%s(%s)" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "锚点“%s”未找到" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -902,7 +903,7 @@ msgid "The text files are in %(outdir)s." msgstr "文本文件保存在 %(outdir)s 目录。" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "写入文件 %s 时发生错误:%s" @@ -912,7 +913,7 @@ msgstr "写入文件 %s 时发生错误:%s" msgid "The XML files are in %(outdir)s." msgstr "XML 文件保存在 %(outdir)s 目录。" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "伪 XML 文件保存在 %(outdir)s。" @@ -933,7 +934,7 @@ msgid "Failed to read build info file: %r" msgstr "读取构建信息文件失败:%r" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1110,7 +1111,7 @@ msgstr "未找到“latex_documents”配置项,不会写入文档" msgid "\"latex_documents\" config value references unknown document %s" msgstr "配置项“latex_documents”引用了未知文档 %s" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1163,66 +1164,66 @@ msgstr "%r 未包含 \"theme\" 配置" msgid "%r doesn't have \"%s\" setting" msgstr "%r 未包含 \"%s\" 配置" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "构建时抛出异常,启动调试器:" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "已中断!" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "reST 标记错误:" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "编码错误:" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "如果你想向开发者报告问题,可以查阅已经保存在 %s 的完整 Traceback 信息 。" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "递归错误:" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "抛出异常:" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "如果此处抛出了用户的错误,也请向我们报告,这样以后可以显示更友好、更详细的错误信息。" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "请向 Bug 追踪系统 投递 Bug 报告。谢谢!" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "工作编号应为正值" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1241,135 +1242,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "文档源文件的路径" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "输出目录的路径" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "指定重新构建的文件列表。如果指定了 -a 参数,则忽略此项" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "通用选项" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "构建器(默认:html)" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "写入所有文件(默认:只写入新文件和修改过的文件)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "不使用已保存的环境,始终读取全部文件" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "缓存环境和 doctree 文件路径(默认:OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "如果可能,用 N 个进程并行构建文档(如果指定为“auto”,则 N 为 CPU 数量)" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "配置文件(conf.py)所在目录路径(默认:与 SOURCEDIR 相同)" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "只用 -D 选项时,不会采用任何配置文件" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "覆盖配置文件中的配置项" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "向 HTML 模板传值" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "定义标签,用于把涉及此 TAG 的“only”块的内容包含进来" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "挑刺模式,在引用失败时报警" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "控制台输出选项" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "输出更详细的日志(甚至可能重复)" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "不输出到 stdout,只在 stderr 上输出报警" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "无任何输出,报警也不会输出" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "着色输出(默认:自动检测)" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "不着色输出(默认:自动检测)" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "把警告(包含错误)信息写入给定的文件" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "把警告视为错误" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "与 -W 配合使用,在警告时继续运行" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "发生异常时显示完整回溯信息" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "发生异常时运行 Pdb" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "无法找到文件 %r" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "-a 选项和文件名不能同时使用" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "无法打开警告信息文件 %r:%s" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "-D 选项的参数必须是 name=value 形式" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "-A 选项的参数必须是 name=value 形式" @@ -1871,7 +1872,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1913,44 +1914,44 @@ msgstr "返回" msgid "Return type" msgstr "返回类型" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "成员" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "变量" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "联合体" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "枚举" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "枚举子" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "类型" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2073,7 +2074,7 @@ msgstr "对%s重复的描述 %s,其它的%s出现在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重复的公式标签 %s,另一实例出现在 %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "无效的 math_eqref_format:%r" @@ -2223,24 +2224,24 @@ msgstr "角色" msgid "duplicate description of %s %s, other instance in %s" msgstr "重复的引文 %s%s,已有引文出现在 %s" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "环境变量; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "畸形的选项描述 %r,应是“opt”、“-opt args”、“--opt args”、“/opt args”或“+opt args”形式" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s命令行选项" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "命令行选项" @@ -2256,79 +2257,79 @@ msgstr "词汇必须用空行分隔" msgid "glossary seems to be misformatted, check indentation" msgstr "看起来形式不对的词汇建议检查缩进" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "术语" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "语法记号" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "引用标签" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "环境变量" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "程序选项" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "文档" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "模块索引" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜索页面" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "重复的标签 %s,已有标签出现在 %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "对 %s的重复描述%s,其它实例出现在 %s" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已禁用,忽略 :numref:。" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "链接没有标题:%s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "无效的 numfig_format:%s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "无效的 numfig_format:%s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2855,7 +2856,7 @@ msgstr "无效的 auto%s 签名(%r)" msgid "error while formatting arguments for %s: %s" msgstr "格式化 %s 参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "属性 %s 不存在,在对象 %s 上" @@ -2908,7 +2909,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2918,33 +2919,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2999,12 +3000,12 @@ msgstr "无法解析名称 %s" msgid "failed to import object %s" msgstr "无法导入对象 %s" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate:无法找到文件 %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3109,30 +3110,30 @@ msgstr "" msgid "References" msgstr "引用" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "生成器" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3163,7 +3164,7 @@ msgstr "重要" #: sphinx/locale/__init__.py:258 msgid "Note" -msgstr "注解" +msgstr "备注" #: sphinx/locale/__init__.py:259 msgid "See also" @@ -3451,40 +3452,40 @@ msgstr "折叠边栏" msgid "Contents" msgstr "目录" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "发现使用了 4 列布局的索引页。可能是你所用的扩展出现了 Bug:%r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "脚注 [%s] 没有被引用过。" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "脚注 [#] 没有被引用过。" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "译文中的脚注引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "译文中的引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "译文中的引文引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3526,16 +3527,16 @@ msgstr "无法获取远程图像:%s [%s]" msgid "Unknown image format: %s..." msgstr "未知的图像格式:%s……" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "源码中存在编码无法识别的字符,已经替换为“?”:%r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "跳过" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "失败" @@ -3578,12 +3579,12 @@ msgid "" "it directly: %s" msgstr "无效的日期格式。如果你想直接输出日期字符串,请用单引号:%s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "目录树引用的文件 %r 不存在" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "only 指令表达式求值时抛出异常:%s" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index ea16438443101b32096552590a69018fda19e38d..f7b74124930cf8553510bac02c57f0b4f1ec4026 100644 GIT binary patch delta 13 Ucmeyz{EvA;2a}=M#;y`Z04V$gGynhq delta 13 Vcmeyz{EvA;$HWbM8>eM30st=~1{weW diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 1f7464d0f58..7737d53ffb9 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index cbe2739ac4bdc75318bfa0bb5c054e4294095671..405db0540ea4c3956d75bfb43f0d43d0a3e60916 100644 GIT binary patch delta 13 UcmeBW>1CPF!DMK*v8$O803MhGV*mgE delta 13 UcmeBW>1CPFF>wRm#%bk@03^Q!NdN!< diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index a6aa7e92968..eef79d9f056 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-02 00:12+0000\n" +"POT-Creation-Date: 2022-01-16 00:12+0000\n" "PO-Revision-Date: 2022-01-02 00:12+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -65,7 +65,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "" @@ -192,27 +192,27 @@ msgstr "" msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -220,57 +220,57 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -493,17 +493,17 @@ msgstr "" msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" @@ -786,22 +786,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -887,7 +887,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -897,7 +897,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -918,7 +918,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1095,7 +1095,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1148,66 +1148,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1226,135 +1226,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1856,7 +1856,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1898,44 +1898,44 @@ msgstr "" msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "" @@ -2058,7 +2058,7 @@ msgstr "" msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -2208,24 +2208,24 @@ msgstr "" msgid "duplicate description of %s %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "" @@ -2241,79 +2241,79 @@ msgstr "" msgid "glossary seems to be misformatted, check indentation" msgstr "" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" @@ -2840,7 +2840,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2893,7 +2893,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,33 +2903,33 @@ msgstr "" msgid "Failed to get a constructor signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,12 +2984,12 @@ msgstr "" msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3094,30 +3094,30 @@ msgstr "" msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "" @@ -3436,40 +3436,40 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3511,16 +3511,16 @@ msgstr "" msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "" @@ -3563,12 +3563,12 @@ msgid "" "it directly: %s" msgstr "" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index a7615a3b224adf8bca9138d96675a8013cbd039f..4708c49eeea366171943b694ce5b0767637ba522 100644 GIT binary patch delta 17 YcmX?hl delta 18 acmX?hl\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -73,7 +73,7 @@ msgstr "目前在 conf.py 裡定義的 'setup' 並非一個 Python 的可呼叫 msgid "loading translations [%s]... " msgstr "正在載入翻譯 [%s]..." -#: sphinx/application.py:290 sphinx/util/__init__.py:539 +#: sphinx/application.py:290 sphinx/util/__init__.py:540 msgid "done" msgstr "完成" @@ -200,27 +200,27 @@ msgstr "無法以未支援的型別覆寫組態設定 %r,忽略中" msgid "unknown config value %r in override, ignoring" msgstr "覆寫未知的組態值 %r,忽略中" -#: sphinx/config.py:258 +#: sphinx/config.py:269 #, python-format msgid "No such config value: %s" msgstr "無此類組態值:%s" -#: sphinx/config.py:282 +#: sphinx/config.py:293 #, python-format msgid "Config value %r already present" msgstr "組態值 %r 已經存在" -#: sphinx/config.py:331 +#: sphinx/config.py:342 #, python-format msgid "There is a syntax error in your configuration file: %s\n" msgstr "在您的組態檔中有一個語法錯誤:%s\n" -#: sphinx/config.py:334 +#: sphinx/config.py:345 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "組態檔(或它 import 的其中一個模組)呼叫了 sys.exit()" -#: sphinx/config.py:341 +#: sphinx/config.py:352 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -228,57 +228,57 @@ msgid "" "%s" msgstr "在您的組態檔中有一個程式化錯誤:\n\n%s" -#: sphinx/config.py:367 +#: sphinx/config.py:378 #, python-format msgid "" "The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "組態值 `source_suffix' 預期是一個字串、一組字串,或字典。但是 `%r' 被給予。" -#: sphinx/config.py:386 +#: sphinx/config.py:397 #, python-format msgid "Section %s" msgstr "章節 %s" -#: sphinx/config.py:387 +#: sphinx/config.py:398 #, python-format msgid "Fig. %s" msgstr "圖 %s" -#: sphinx/config.py:388 +#: sphinx/config.py:399 #, python-format msgid "Table %s" msgstr "表格 %s" -#: sphinx/config.py:389 +#: sphinx/config.py:400 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:426 +#: sphinx/config.py:437 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "組態值 `{name}` 必須是 {candidates} 的其中之一,但 `{current}` 被給予。" -#: sphinx/config.py:444 +#: sphinx/config.py:455 msgid "" "The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預期 {permitted} 。" -#: sphinx/config.py:457 +#: sphinx/config.py:468 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "組態值 `{name}' 有 `{current.__name__}' 型別;預設為 `{default.__name__}' 。" -#: sphinx/config.py:467 +#: sphinx/config.py:478 #, python-format msgid "primary_domain %r not found, ignored." msgstr "找不到 primary_domain %r,已略過。" -#: sphinx/config.py:479 +#: sphinx/config.py:490 msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." @@ -501,17 +501,17 @@ msgstr "設定 %s。%s 不在已被搜尋的主題組態中出現" msgid "unsupported theme option %r given" msgstr "未支援的主題選項 %r 被給予" -#: sphinx/theming.py:228 +#: sphinx/theming.py:229 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "主題路徑中的檔案 %r 不是有效的 zipfile 或未包含主題" -#: sphinx/theming.py:243 +#: sphinx/theming.py:244 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" msgstr "找到 sphinx_rtd_theme (< 0.3.0)。從 Sphinx-6.0 之後將無法使用。" -#: sphinx/theming.py:248 +#: sphinx/theming.py:249 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "未找到名為 %r 的主題(缺少 theme.conf?)" @@ -794,22 +794,22 @@ msgstr "" msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/linkcheck.py:119 +#: sphinx/builders/linkcheck.py:132 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:270 #, python-format msgid "broken link: %s (%s)" msgstr "" -#: sphinx/builders/linkcheck.py:456 +#: sphinx/builders/linkcheck.py:469 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:701 +#: sphinx/builders/linkcheck.py:714 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" msgstr "" @@ -895,7 +895,7 @@ msgid "The text files are in %(outdir)s." msgstr "" #: sphinx/builders/html/__init__.py:1074 sphinx/builders/text.py:77 -#: sphinx/builders/xml.py:91 +#: sphinx/builders/xml.py:94 #, python-format msgid "error writing file %s: %s" msgstr "" @@ -905,7 +905,7 @@ msgstr "" msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:103 +#: sphinx/builders/xml.py:106 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" @@ -926,7 +926,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 +#: sphinx/transforms/__init__.py:117 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:234 #, python-format msgid "%b %d, %Y" @@ -1103,7 +1103,7 @@ msgstr "" msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:596 #: sphinx/templates/latex/latex.tex_t:97 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1156,66 +1156,66 @@ msgstr "" msgid "%r doesn't have \"%s\" setting" msgstr "" -#: sphinx/cmd/build.py:38 +#: sphinx/cmd/build.py:40 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:48 +#: sphinx/cmd/build.py:50 msgid "Interrupted!" msgstr "" -#: sphinx/cmd/build.py:50 +#: sphinx/cmd/build.py:52 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:56 +#: sphinx/cmd/build.py:58 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#: sphinx/cmd/build.py:61 sphinx/cmd/build.py:76 #, python-format msgid "" "The full traceback has been saved in %s, if you want to report the issue to " "the developers." msgstr "" -#: sphinx/cmd/build.py:63 +#: sphinx/cmd/build.py:65 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:66 +#: sphinx/cmd/build.py:68 msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" msgstr "" -#: sphinx/cmd/build.py:71 +#: sphinx/cmd/build.py:73 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:77 +#: sphinx/cmd/build.py:79 msgid "" "Please also report this if it was a user error, so that a better error " "message can be provided next time." msgstr "" -#: sphinx/cmd/build.py:80 +#: sphinx/cmd/build.py:82 msgid "" "A bug report can be filed in the tracker at . Thanks!" msgstr "" -#: sphinx/cmd/build.py:96 +#: sphinx/cmd/build.py:98 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:470 #: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:623 msgid "For more information, visit ." msgstr "" -#: sphinx/cmd/build.py:105 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1234,135 +1234,135 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:126 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:128 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:130 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:133 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:138 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "寫入所有檔案(預設:只寫入新增及已變更檔案)" -#: sphinx/cmd/build.py:141 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:151 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:154 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:165 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:168 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:170 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +#: sphinx/cmd/build.py:174 sphinx/ext/apidoc.py:330 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:177 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:185 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:187 +#: sphinx/cmd/build.py:189 msgid "with -W, keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:223 +#: sphinx/cmd/build.py:225 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:226 +#: sphinx/cmd/build.py:228 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:245 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:255 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:262 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" @@ -1864,7 +1864,7 @@ msgstr "" msgid ".. hlist content is not a list" msgstr "" -#: sphinx/directives/patches.py:118 +#: sphinx/directives/patches.py:117 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." @@ -1906,44 +1906,44 @@ msgstr "回傳" msgid "Return type" msgstr "回傳型別" -#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675 +#: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7675 msgid "member" msgstr "成員函數" -#: sphinx/domains/c.py:3757 +#: sphinx/domains/c.py:3756 msgid "variable" msgstr "變數" -#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674 +#: sphinx/domains/c.py:3757 sphinx/domains/cpp.py:7674 #: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1203 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:3759 +#: sphinx/domains/c.py:3758 msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:3760 +#: sphinx/domains/c.py:3759 msgid "struct" msgstr "結構" -#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673 +#: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7673 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678 +#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7678 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679 +#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7679 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676 +#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7676 msgid "type" msgstr "型別" -#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681 +#: sphinx/domains/c.py:3765 sphinx/domains/cpp.py:7681 msgid "function parameter" msgstr "函式參數" @@ -2066,7 +2066,7 @@ msgstr "%s 的重複 %s 敘述,其他的 %s 在 %s" msgid "duplicate label of equation %s, other instance in %s" msgstr "重複公式標籤 %s,亦出現於 %s" -#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071 +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2069 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無效的 math_eqref_format: %r" @@ -2216,24 +2216,24 @@ msgstr "角色" msgid "duplicate description of %s %s, other instance in %s" msgstr "%s %s 的重複敘述,其他的實例在 %s" -#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#: sphinx/domains/std.py:100 sphinx/domains/std.py:117 #, python-format msgid "environment variable; %s" msgstr "環境變數; %s" -#: sphinx/domains/std.py:192 +#: sphinx/domains/std.py:191 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" msgstr "異常的選項敘述 %r ,應該要看起來像 \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" 或 \"+opt args\"" -#: sphinx/domains/std.py:243 +#: sphinx/domains/std.py:242 #, python-format msgid "%s command line option" msgstr "%s 命令列選項" -#: sphinx/domains/std.py:245 +#: sphinx/domains/std.py:244 msgid "command line option" msgstr "命令列選項" @@ -2249,79 +2249,79 @@ msgstr "術語表項目不可以被空白行分隔" msgid "glossary seems to be misformatted, check indentation" msgstr "術語表似乎有格式錯誤,請檢查縮排" -#: sphinx/domains/std.py:563 +#: sphinx/domains/std.py:555 msgid "glossary term" msgstr "雜項術語" -#: sphinx/domains/std.py:564 +#: sphinx/domains/std.py:556 msgid "grammar token" msgstr "語法單詞" -#: sphinx/domains/std.py:565 +#: sphinx/domains/std.py:557 msgid "reference label" msgstr "參照標籤" -#: sphinx/domains/std.py:567 +#: sphinx/domains/std.py:559 msgid "environment variable" msgstr "環境變數" -#: sphinx/domains/std.py:568 +#: sphinx/domains/std.py:560 msgid "program option" msgstr "程式選項" -#: sphinx/domains/std.py:569 +#: sphinx/domains/std.py:561 msgid "document" msgstr "文件" -#: sphinx/domains/std.py:605 +#: sphinx/domains/std.py:597 msgid "Module Index" msgstr "模組索引" -#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:598 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜尋頁面" -#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/domains/std.py:647 sphinx/domains/std.py:756 #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "重複的標籤 %s,亦出現於 %s" -#: sphinx/domains/std.py:674 +#: sphinx/domains/std.py:666 #, python-format msgid "duplicate %s description of %s, other instance in %s" msgstr "重複 %s 的描述 %s,亦出現於 %s" -#: sphinx/domains/std.py:872 +#: sphinx/domains/std.py:864 msgid "numfig is disabled. :numref: is ignored." msgstr "numfig 已停用。 :numref: 已略過。" -#: sphinx/domains/std.py:880 +#: sphinx/domains/std.py:872 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" msgstr "無法建立一個交互參照。任一數字未被指定: %s" -#: sphinx/domains/std.py:892 +#: sphinx/domains/std.py:884 #, python-format msgid "the link has no caption: %s" msgstr "這個連結沒有標題: %s" -#: sphinx/domains/std.py:906 +#: sphinx/domains/std.py:898 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "無效的 numfig_format: %s (%r)" -#: sphinx/domains/std.py:909 +#: sphinx/domains/std.py:901 #, python-format msgid "invalid numfig_format: %s" msgstr "無效的 numfig_format: %s" -#: sphinx/domains/std.py:1122 +#: sphinx/domains/std.py:1114 #, python-format msgid "undefined label: %s" msgstr "未定義的標籤: %s" -#: sphinx/domains/std.py:1124 +#: sphinx/domains/std.py:1116 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "無法建立一個交互參照。未找到標題或題目: %s" @@ -2848,7 +2848,7 @@ msgstr "" msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1695 +#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1699 #, python-format msgid "missing attribute %s in object %s" msgstr "" @@ -2901,7 +2901,7 @@ msgid "" msgstr "缺少 :members: 選項中所述的屬性:模組 %s ,屬性 %s" #: sphinx/ext/autodoc/__init__.py:1308 sphinx/ext/autodoc/__init__.py:1385 -#: sphinx/ext/autodoc/__init__.py:2770 +#: sphinx/ext/autodoc/__init__.py:2791 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "無法取得一個函式簽名給 %s: %s" @@ -2911,33 +2911,33 @@ msgstr "無法取得一個函式簽名給 %s: %s" msgid "Failed to get a constructor signature for %s: %s" msgstr "無法取得一個 constructor 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:1682 +#: sphinx/ext/autodoc/__init__.py:1686 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1776 sphinx/ext/autodoc/__init__.py:1849 -#: sphinx/ext/autodoc/__init__.py:1868 +#: sphinx/ext/autodoc/__init__.py:1784 sphinx/ext/autodoc/__init__.py:1862 +#: sphinx/ext/autodoc/__init__.py:1885 #, python-format msgid "alias of %s" msgstr "%s 的別名" -#: sphinx/ext/autodoc/__init__.py:1910 +#: sphinx/ext/autodoc/__init__.py:1931 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s) 的別名" -#: sphinx/ext/autodoc/__init__.py:2146 sphinx/ext/autodoc/__init__.py:2243 +#: sphinx/ext/autodoc/__init__.py:2167 sphinx/ext/autodoc/__init__.py:2264 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "無法取得一個 method 簽名給 %s: %s" -#: sphinx/ext/autodoc/__init__.py:2374 +#: sphinx/ext/autodoc/__init__.py:2395 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/__init__.py:2813 +#: sphinx/ext/autodoc/__init__.py:2834 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2992,12 +2992,12 @@ msgstr "剖析名稱 %s 失敗" msgid "failed to import object %s" msgstr "import 物件 %s 失敗" -#: sphinx/ext/autosummary/__init__.py:817 +#: sphinx/ext/autosummary/__init__.py:815 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 檔案未找到: %s" -#: sphinx/ext/autosummary/__init__.py:825 +#: sphinx/ext/autosummary/__init__.py:823 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." @@ -3102,30 +3102,30 @@ msgstr "接收" msgid "References" msgstr "參照" -#: sphinx/ext/napoleon/docstring.py:801 +#: sphinx/ext/napoleon/docstring.py:799 msgid "Warns" msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:805 +#: sphinx/ext/napoleon/docstring.py:803 msgid "Yields" msgstr "產出" -#: sphinx/ext/napoleon/docstring.py:973 +#: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing closing brace): %s" msgstr "無效的值集合(缺少右括號): %s" -#: sphinx/ext/napoleon/docstring.py:980 +#: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "invalid value set (missing opening brace): %s" msgstr "無效的值集合(缺少左括號): %s" -#: sphinx/ext/napoleon/docstring.py:987 +#: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing closing quote): %s" msgstr "異常的字串文本(缺少右括號): %s" -#: sphinx/ext/napoleon/docstring.py:994 +#: sphinx/ext/napoleon/docstring.py:992 #, python-format msgid "malformed string literal (missing opening quote): %s" msgstr "異常的字串文本(缺少左括號): %s" @@ -3444,40 +3444,40 @@ msgstr "收合側邊欄" msgid "Contents" msgstr "內容" -#: sphinx/transforms/__init__.py:224 +#: sphinx/transforms/__init__.py:225 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "找到基於 4 欄位的索引。它可能是您使用的擴充套件的一個錯誤: %r" -#: sphinx/transforms/__init__.py:263 +#: sphinx/transforms/__init__.py:264 #, python-format msgid "Footnote [%s] is not referenced." msgstr "註腳 [%s] 未被參照。" -#: sphinx/transforms/__init__.py:269 +#: sphinx/transforms/__init__.py:270 msgid "Footnote [#] is not referenced." msgstr "註腳 [#] 未被參照。" -#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +#: sphinx/transforms/i18n.py:309 sphinx/transforms/i18n.py:380 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "被翻譯訊息中有不一致的註腳參照。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:347 +#: sphinx/transforms/i18n.py:352 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "被翻譯訊息中有不一致的參照。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:394 +#: sphinx/transforms/i18n.py:399 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "被翻譯訊息中有不一致的引用。原文: {0},譯文: {1}" -#: sphinx/transforms/i18n.py:414 +#: sphinx/transforms/i18n.py:419 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" @@ -3519,16 +3519,16 @@ msgstr "無法提取遠端圖片: %s [%s]" msgid "Unknown image format: %s..." msgstr "未知的圖片格式: %s..." -#: sphinx/util/__init__.py:284 +#: sphinx/util/__init__.py:285 #, python-format msgid "undecodable source characters, replacing with \"?\": %r" msgstr "無法解碼的原始字元,以 \"?\" 取代: %r" -#: sphinx/util/__init__.py:532 +#: sphinx/util/__init__.py:533 msgid "skipped" msgstr "已省略" -#: sphinx/util/__init__.py:537 +#: sphinx/util/__init__.py:538 msgid "failed" msgstr "失敗" @@ -3571,12 +3571,12 @@ msgid "" "it directly: %s" msgstr "無效的日期格式。如果您要直接將它輸出,則以單引號引用該字串: %s" -#: sphinx/util/nodes.py:429 +#: sphinx/util/nodes.py:437 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "toctree 包含了不存在的檔案 %r 的參照 " -#: sphinx/util/nodes.py:615 +#: sphinx/util/nodes.py:623 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "在評估只有指令的運算式時發生例外: %s" From b4227dbe1b73f9c5745f240657ecb13c5e41d233 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 5 Apr 2021 00:33:34 +0900 Subject: [PATCH 174/192] refactor: Add CustomReSTDispatcher as a base class of custom dispatchers To create custom reST dispatcher easily, this adds CustomReSTDispatcher class as a base class of custom dispatchers. --- sphinx/util/docutils.py | 51 ++++++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 14 deletions(-) diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index c3a6ff9e2e9..5ab7666496d 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -166,16 +166,14 @@ def patch_docutils(confdir: Optional[str] = None) -> Generator[None, None, None] yield -class ElementLookupError(Exception): - pass - +class CustomReSTDispatcher: + """Custom reST's mark-up dispatcher. -class sphinx_domains: - """Monkey-patch directive and role dispatch, so that domain-specific - markup takes precedence. + This replaces docutils's directives and roles dispatch mechanism for reST parser + by original one temporarily. """ - def __init__(self, env: "BuildEnvironment") -> None: - self.env = env + + def __init__(self) -> None: self.directive_func: Callable = lambda *args: (None, []) self.roles_func: Callable = lambda *args: (None, []) @@ -189,13 +187,35 @@ def enable(self) -> None: self.directive_func = directives.directive self.role_func = roles.role - directives.directive = self.lookup_directive - roles.role = self.lookup_role + directives.directive = self.directive + roles.role = self.role def disable(self) -> None: directives.directive = self.directive_func roles.role = self.role_func + def directive(self, + directive_name: str, language_module: ModuleType, document: nodes.document + ) -> Tuple[Optional[Type[Directive]], List[system_message]]: + return self.directive_func(directive_name, language_module, document) + + def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter + ) -> Tuple[RoleFunction, List[system_message]]: + return self.role_func(role_name, language_module, lineno, reporter) + + +class ElementLookupError(Exception): + pass + + +class sphinx_domains(CustomReSTDispatcher): + """Monkey-patch directive and role dispatch, so that domain-specific + markup takes precedence. + """ + def __init__(self, env: "BuildEnvironment") -> None: + self.env = env + super().__init__() + def lookup_domain_element(self, type: str, name: str) -> Any: """Lookup a markup element (directive or role), given its name which can be a full name (with domain). @@ -226,17 +246,20 @@ def lookup_domain_element(self, type: str, name: str) -> Any: raise ElementLookupError - def lookup_directive(self, directive_name: str, language_module: ModuleType, document: nodes.document) -> Tuple[Optional[Type[Directive]], List[system_message]]: # NOQA + def directive(self, + directive_name: str, language_module: ModuleType, document: nodes.document + ) -> Tuple[Optional[Type[Directive]], List[system_message]]: try: return self.lookup_domain_element('directive', directive_name) except ElementLookupError: - return self.directive_func(directive_name, language_module, document) + return super().directive(directive_name, language_module, document) - def lookup_role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter) -> Tuple[RoleFunction, List[system_message]]: # NOQA + def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter + ) -> Tuple[RoleFunction, List[system_message]]: try: return self.lookup_domain_element('role', role_name) except ElementLookupError: - return self.role_func(role_name, language_module, lineno, reporter) + return super().role(role_name, language_module, lineno, reporter) class WarningStream: From 35dcc60a7c0ac9084512e56d1c9b6bcc15428952 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 5 Apr 2021 01:34:45 +0900 Subject: [PATCH 175/192] intersphinx: Add :intersphinx:***: role --- sphinx/ext/intersphinx.py | 123 +++++++++++++++++- tests/roots/test-ext-intersphinx-role/conf.py | 1 + .../roots/test-ext-intersphinx-role/index.rst | 11 ++ tests/test_ext_intersphinx.py | 46 +++++++ 4 files changed, 177 insertions(+), 4 deletions(-) create mode 100644 tests/roots/test-ext-intersphinx-role/conf.py create mode 100644 tests/roots/test-ext-intersphinx-role/index.rst diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 7f3588ade79..146e0c246e6 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -29,12 +29,13 @@ import sys import time from os import path -from typing import IO, Any, Dict, List, Optional, Tuple +from types import ModuleType +from typing import IO, Any, Dict, List, Optional, Tuple, cast from urllib.parse import urlsplit, urlunsplit from docutils import nodes -from docutils.nodes import Element, TextElement -from docutils.utils import relative_path +from docutils.nodes import Element, Node, TextElement, system_message +from docutils.utils import Reporter, relative_path import sphinx from sphinx.addnodes import pending_xref @@ -43,10 +44,13 @@ from sphinx.config import Config from sphinx.domains import Domain from sphinx.environment import BuildEnvironment +from sphinx.errors import ExtensionError from sphinx.locale import _, __ +from sphinx.transforms.post_transforms import ReferencesResolver from sphinx.util import logging, requests +from sphinx.util.docutils import CustomReSTDispatcher, SphinxRole from sphinx.util.inventory import InventoryFile -from sphinx.util.typing import Inventory, InventoryItem +from sphinx.util.typing import Inventory, InventoryItem, RoleFunction logger = logging.getLogger(__name__) @@ -466,6 +470,115 @@ def missing_reference(app: Sphinx, env: BuildEnvironment, node: pending_xref, return resolve_reference_detect_inventory(env, node, contnode) +class IntersphinxDispatcher(CustomReSTDispatcher): + """Custom dispatcher for intersphinx role. + + This enables :intersphinx:***: roles on parsing reST document. + """ + + def __init__(self) -> None: + super().__init__() + + def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter + ) -> Tuple[RoleFunction, List[system_message]]: + if role_name.split(':')[0] == 'intersphinx': + return IntersphinxRole(), [] + else: + return super().role(role_name, language_module, lineno, reporter) + + +class IntersphinxRole(SphinxRole): + def run(self) -> Tuple[List[Node], List[system_message]]: + role_name = self.get_role_name(self.name) + if role_name is None: + logger.warning(__('role not found: %s'), self.name, + location=(self.env.docname, self.lineno)) + return [], [] + + result, messages = self.invoke_role(role_name) + for node in result: + if isinstance(node, pending_xref): + node['intersphinx'] = True + + return result, messages + + def get_role_name(self, name: str) -> Optional[Tuple[str, str]]: + names = name.split(':') + if len(names) == 2: + # :intersphinx:role: + domain = self.env.temp_data.get('default_domain') + role = names[1] + elif len(names) == 3: + # :intersphinx:domain:role: + domain = names[1] + role = names[2] + else: + return None + + if domain and self.is_existent_role(domain, role): + return (domain, role) + elif self.is_existent_role('std', role): + return ('std', role) + else: + return None + + def is_existent_role(self, domain_name: str, role_name: str) -> bool: + try: + domain = self.env.get_domain(domain_name) + if role_name in domain.roles: + return True + else: + return False + except ExtensionError: + return False + + def invoke_role(self, role: Tuple[str, str]) -> Tuple[List[Node], List[system_message]]: + domain = self.env.get_domain(role[0]) + if domain: + role_func = domain.role(role[1]) + + return role_func(':'.join(role), self.rawtext, self.text, self.lineno, + self.inliner, self.options, self.content) + else: + return [], [] + + +class IntersphinxRoleResolver(ReferencesResolver): + """pending_xref node resolver for intersphinx role. + + This resolves pending_xref nodes generated by :intersphinx:***: role. + """ + + default_priority = ReferencesResolver.default_priority - 1 + + def run(self, **kwargs: Any) -> None: + for node in self.document.traverse(pending_xref): + if 'intersphinx' in node: + contnode = cast(nodes.TextElement, node[0].deepcopy()) + refdoc = node.get('refdoc', self.env.docname) + try: + domain = self.env.get_domain(node['refdomain']) + except Exception: + domain = None + + newnode = missing_reference(self.app, self.env, node, contnode) + if newnode is None: + self.warn_missing_reference(refdoc, node['reftype'], node['reftarget'], + node, domain) + else: + node.replace_self(newnode) + + +def install_dispatcher(app: Sphinx, docname: str, source: List[str]) -> None: + """Enable IntersphinxDispatcher. + + .. note:: The installed dispatcher will uninstalled on disabling sphinx_domain + automatically. + """ + dispatcher = IntersphinxDispatcher() + dispatcher.enable() + + def normalize_intersphinx_mapping(app: Sphinx, config: Config) -> None: for key, value in config.intersphinx_mapping.copy().items(): try: @@ -497,7 +610,9 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('intersphinx_disabled_reftypes', [], True) app.connect('config-inited', normalize_intersphinx_mapping, priority=800) app.connect('builder-inited', load_mappings) + app.connect('source-read', install_dispatcher) app.connect('missing-reference', missing_reference) + app.add_post_transform(IntersphinxRoleResolver) return { 'version': sphinx.__display_version__, 'env_version': 1, diff --git a/tests/roots/test-ext-intersphinx-role/conf.py b/tests/roots/test-ext-intersphinx-role/conf.py new file mode 100644 index 00000000000..9485eb2075b --- /dev/null +++ b/tests/roots/test-ext-intersphinx-role/conf.py @@ -0,0 +1 @@ +extensions = ['sphinx.ext.intersphinx'] diff --git a/tests/roots/test-ext-intersphinx-role/index.rst b/tests/roots/test-ext-intersphinx-role/index.rst new file mode 100644 index 00000000000..b8a7d871606 --- /dev/null +++ b/tests/roots/test-ext-intersphinx-role/index.rst @@ -0,0 +1,11 @@ +:intersphinx:py:mod:`module1` +:intersphinx:py:mod:`inv:module2` + +.. py:module:: module1 + +:intersphinx:py:func:`func` +:intersphinx:py:meth:`Foo.bar` + +:intersphinx:c:func:`CFunc` +:intersphinx:doc:`docname` +:intersphinx:option:`ls -l` diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index 7f369e9a3cd..9801bb81f10 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -524,3 +524,49 @@ def log_message(*args, **kwargs): stdout, stderr = capsys.readouterr() assert stdout.startswith("c:function\n") assert stderr == "" + + +@pytest.mark.sphinx('html', testroot='ext-intersphinx-role') +def test_intersphinx_role(app): + inv_file = app.srcdir / 'inventory' + inv_file.write_bytes(inventory_v2) + app.config.intersphinx_mapping = { + 'inv': ('http://example.org/', inv_file), + } + app.config.intersphinx_cache_limit = 0 + app.config.nitpicky = True + + # load the inventory and check if it's done correctly + normalize_intersphinx_mapping(app, app.config) + load_mappings(app) + + app.build() + content = (app.outdir / 'index.html').read_text() + + # :intersphinx:py:module:`module1` + assert ('' in content) + + # :intersphinx:py:module:`inv:module2` + assert ('' in content) + + # py:module + :intersphinx:py:function:`func` + assert ('' in content) + + # py:module + :intersphinx:py:method:`Foo.bar` + assert ('' in content) + + # :intersphinx:c:function:`CFunc` + assert ('' in content) + + # :intersphinx:doc:`docname` + assert ('' in content) + + # :intersphinx:option:`ls -l` + assert ('' in content) From 8605644e833be2c397517475d15a26588bcc6cb7 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Tue, 13 Jul 2021 12:39:26 +0200 Subject: [PATCH 176/192] intersphinx: more role testing --- .../roots/test-ext-intersphinx-role/index.rst | 14 +++++++ tests/test_ext_intersphinx.py | 42 +++++++------------ 2 files changed, 29 insertions(+), 27 deletions(-) diff --git a/tests/roots/test-ext-intersphinx-role/index.rst b/tests/roots/test-ext-intersphinx-role/index.rst index b8a7d871606..25352838d75 100644 --- a/tests/roots/test-ext-intersphinx-role/index.rst +++ b/tests/roots/test-ext-intersphinx-role/index.rst @@ -4,8 +4,22 @@ .. py:module:: module1 :intersphinx:py:func:`func` +:intersphinx:py:func:`inv:func` :intersphinx:py:meth:`Foo.bar` +:intersphinx:py:meth:`inv:Foo.bar` :intersphinx:c:func:`CFunc` +:intersphinx:c:func:`inv:CFunc` :intersphinx:doc:`docname` +:intersphinx:doc:`inv:docname` :intersphinx:option:`ls -l` +:intersphinx:option:`inv:ls -l` + +.. cpp:type:: std::uint8_t +.. cpp:class:: foo::Bar + +:intersphinx:cpp:type:`std::uint8_t` +:intersphinx:cpp:class:`inv:foo::Bar` + +:intersphinx:cpp:type:`FoonsTitle ` +:intersphinx:cpp:type:`inv:BarType ` \ No newline at end of file diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index 9801bb81f10..a2ff8d7acdf 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -543,30 +543,18 @@ def test_intersphinx_role(app): app.build() content = (app.outdir / 'index.html').read_text() - # :intersphinx:py:module:`module1` - assert ('' in content) - - # :intersphinx:py:module:`inv:module2` - assert ('' in content) - - # py:module + :intersphinx:py:function:`func` - assert ('' in content) - - # py:module + :intersphinx:py:method:`Foo.bar` - assert ('' in content) - - # :intersphinx:c:function:`CFunc` - assert ('' in content) - - # :intersphinx:doc:`docname` - assert ('' in content) - - # :intersphinx:option:`ls -l` - assert ('' in content) + targets = ( + 'foo.html#module-module1', + 'foo.html#module-module2', + 'sub/foo.html#module1.func', + 'index.html#foo.Bar.baz', + 'cfunc.html#CFunc', + 'docname.html', + 'index.html#cmdoption-ls-l', + 'index.html#std_uint8_t', + 'index.html#foons', + 'index.html#foons_bartype', + ) + html = '' + for t in targets: + assert html.format(t) in content From 69fa5260fcb243510b513a1cbf0fd9a32cf46d5a Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Tue, 13 Jul 2021 12:48:17 +0200 Subject: [PATCH 177/192] intersphinx role: rename to 'external' --- sphinx/ext/intersphinx.py | 10 +++--- .../roots/test-ext-intersphinx-role/index.rst | 32 +++++++++---------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 146e0c246e6..0ad640800c0 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -471,9 +471,9 @@ def missing_reference(app: Sphinx, env: BuildEnvironment, node: pending_xref, class IntersphinxDispatcher(CustomReSTDispatcher): - """Custom dispatcher for intersphinx role. + """Custom dispatcher for external role. - This enables :intersphinx:***: roles on parsing reST document. + This enables :external:***: roles on parsing reST document. """ def __init__(self) -> None: @@ -481,7 +481,7 @@ def __init__(self) -> None: def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter ) -> Tuple[RoleFunction, List[system_message]]: - if role_name.split(':')[0] == 'intersphinx': + if role_name.split(':')[0] == 'external': return IntersphinxRole(), [] else: return super().role(role_name, language_module, lineno, reporter) @@ -505,11 +505,11 @@ def run(self) -> Tuple[List[Node], List[system_message]]: def get_role_name(self, name: str) -> Optional[Tuple[str, str]]: names = name.split(':') if len(names) == 2: - # :intersphinx:role: + # :external:role: domain = self.env.temp_data.get('default_domain') role = names[1] elif len(names) == 3: - # :intersphinx:domain:role: + # :external:domain:role: domain = names[1] role = names[2] else: diff --git a/tests/roots/test-ext-intersphinx-role/index.rst b/tests/roots/test-ext-intersphinx-role/index.rst index 25352838d75..4eeaf807a32 100644 --- a/tests/roots/test-ext-intersphinx-role/index.rst +++ b/tests/roots/test-ext-intersphinx-role/index.rst @@ -1,25 +1,25 @@ -:intersphinx:py:mod:`module1` -:intersphinx:py:mod:`inv:module2` +:external:py:mod:`module1` +:external:py:mod:`inv:module2` .. py:module:: module1 -:intersphinx:py:func:`func` -:intersphinx:py:func:`inv:func` -:intersphinx:py:meth:`Foo.bar` -:intersphinx:py:meth:`inv:Foo.bar` +:external:py:func:`func` +:external:py:func:`inv:func` +:external:py:meth:`Foo.bar` +:external:py:meth:`inv:Foo.bar` -:intersphinx:c:func:`CFunc` -:intersphinx:c:func:`inv:CFunc` -:intersphinx:doc:`docname` -:intersphinx:doc:`inv:docname` -:intersphinx:option:`ls -l` -:intersphinx:option:`inv:ls -l` +:external:c:func:`CFunc` +:external:c:func:`inv:CFunc` +:external:doc:`docname` +:external:doc:`inv:docname` +:external:option:`ls -l` +:external:option:`inv:ls -l` .. cpp:type:: std::uint8_t .. cpp:class:: foo::Bar -:intersphinx:cpp:type:`std::uint8_t` -:intersphinx:cpp:class:`inv:foo::Bar` +:external:cpp:type:`std::uint8_t` +:external:cpp:class:`inv:foo::Bar` -:intersphinx:cpp:type:`FoonsTitle ` -:intersphinx:cpp:type:`inv:BarType ` \ No newline at end of file +:external:cpp:type:`FoonsTitle ` +:external:cpp:type:`inv:BarType ` \ No newline at end of file From 454a1c599e9faf58bcb25e28d6943b4645b48d29 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Tue, 13 Jul 2021 13:18:16 +0200 Subject: [PATCH 178/192] intersphinx: remove dual warning from role resolution --- sphinx/ext/intersphinx.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 0ad640800c0..3cfbdf1dd58 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -555,16 +555,10 @@ def run(self, **kwargs: Any) -> None: for node in self.document.traverse(pending_xref): if 'intersphinx' in node: contnode = cast(nodes.TextElement, node[0].deepcopy()) - refdoc = node.get('refdoc', self.env.docname) - try: - domain = self.env.get_domain(node['refdomain']) - except Exception: - domain = None - newnode = missing_reference(self.app, self.env, node, contnode) if newnode is None: - self.warn_missing_reference(refdoc, node['reftype'], node['reftarget'], - node, domain) + # no warning, the normal missing_reference handler will do that + pass else: node.replace_self(newnode) From 36c6eafdf17edeaec3c902d15cc757edb3937d5d Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Tue, 13 Jul 2021 13:41:41 +0200 Subject: [PATCH 179/192] intersphinx: explicitly parse out inventory specification --- sphinx/ext/intersphinx.py | 13 +++++++++++++ tests/roots/test-ext-intersphinx-role/index.rst | 1 + tests/test_ext_intersphinx.py | 2 ++ 3 files changed, 16 insertions(+) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 3cfbdf1dd58..d004f867fbf 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -495,10 +495,20 @@ def run(self) -> Tuple[List[Node], List[system_message]]: location=(self.env.docname, self.lineno)) return [], [] + # extract inventory specification + inventory = None + if self.text.startswith('\\:'): + # escaped :, so not a real inventory specification + self.text = self.text[1:] + elif self.text[0] == ':': # format: :inv:normalRoleArg + inventory = self.text.split(':')[1] + self.text = self.text[(len(inventory) + 2):] + result, messages = self.invoke_role(role_name) for node in result: if isinstance(node, pending_xref): node['intersphinx'] = True + node['inventory'] = inventory return result, messages @@ -555,6 +565,9 @@ def run(self, **kwargs: Any) -> None: for node in self.document.traverse(pending_xref): if 'intersphinx' in node: contnode = cast(nodes.TextElement, node[0].deepcopy()) + # temporary hax to glue on inventory info again + if node['inventory'] is not None: + node['reftarget'] = node['inventory'] + ":" + node['reftarget'] newnode = missing_reference(self.app, self.env, node, contnode) if newnode is None: # no warning, the normal missing_reference handler will do that diff --git a/tests/roots/test-ext-intersphinx-role/index.rst b/tests/roots/test-ext-intersphinx-role/index.rst index 4eeaf807a32..164f2cfd4c9 100644 --- a/tests/roots/test-ext-intersphinx-role/index.rst +++ b/tests/roots/test-ext-intersphinx-role/index.rst @@ -20,6 +20,7 @@ :external:cpp:type:`std::uint8_t` :external:cpp:class:`inv:foo::Bar` +:external:cpp:func:`:inv2:foo::Bar::baz` :external:cpp:type:`FoonsTitle ` :external:cpp:type:`inv:BarType ` \ No newline at end of file diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index a2ff8d7acdf..a1118e48da1 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -558,3 +558,5 @@ def test_intersphinx_role(app): html = '' for t in targets: assert html.format(t) in content + + assert html.format('index.html#cpp_foo_bar_baz') not in content From 184fd6a4aa7389d784e20f399c0eea69a3c7dc0b Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sun, 31 Oct 2021 15:30:13 +0100 Subject: [PATCH 180/192] intersphinx role, update based on merged refactoring --- sphinx/ext/intersphinx.py | 26 +++++++++++-------- tests/roots/test-ext-intersphinx-role/conf.py | 2 ++ 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index d004f867fbf..c3cf0eec7ff 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -563,17 +563,21 @@ class IntersphinxRoleResolver(ReferencesResolver): def run(self, **kwargs: Any) -> None: for node in self.document.traverse(pending_xref): - if 'intersphinx' in node: - contnode = cast(nodes.TextElement, node[0].deepcopy()) - # temporary hax to glue on inventory info again - if node['inventory'] is not None: - node['reftarget'] = node['inventory'] + ":" + node['reftarget'] - newnode = missing_reference(self.app, self.env, node, contnode) - if newnode is None: - # no warning, the normal missing_reference handler will do that - pass - else: - node.replace_self(newnode) + if 'intersphinx' not in node: + continue + contnode = cast(nodes.TextElement, node[0].deepcopy()) + inv_name = node['inventory'] + if inv_name is not None: + if not inventory_exists(self.env, inv_name): + continue + newnode = resolve_reference_in_inventory(self.env, inv_name, node, contnode) + else: + newnode = resolve_reference_any_inventory(self.env, False, node, contnode) + if newnode is None: + # no warning, the normal missing_reference handler will do that + pass + else: + node.replace_self(newnode) def install_dispatcher(app: Sphinx, docname: str, source: List[str]) -> None: diff --git a/tests/roots/test-ext-intersphinx-role/conf.py b/tests/roots/test-ext-intersphinx-role/conf.py index 9485eb2075b..a54f5c2ad6b 100644 --- a/tests/roots/test-ext-intersphinx-role/conf.py +++ b/tests/roots/test-ext-intersphinx-role/conf.py @@ -1 +1,3 @@ extensions = ['sphinx.ext.intersphinx'] +# the role should not honor this conf var +intersphinx_disabled_reftypes = ['*'] From ce5512e3afc5d4a4af084aef8f622b01ffee5c2b Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 6 Nov 2021 13:25:49 +0100 Subject: [PATCH 181/192] intersphinx role, implement warning scheme and temporarily remove explicit inventories --- sphinx/ext/intersphinx.py | 18 ++++------ .../roots/test-ext-intersphinx-role/index.rst | 35 ++++++++----------- tests/test_ext_intersphinx.py | 24 +++++-------- 3 files changed, 29 insertions(+), 48 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index c3cf0eec7ff..ce10f122883 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -495,20 +495,11 @@ def run(self) -> Tuple[List[Node], List[system_message]]: location=(self.env.docname, self.lineno)) return [], [] - # extract inventory specification - inventory = None - if self.text.startswith('\\:'): - # escaped :, so not a real inventory specification - self.text = self.text[1:] - elif self.text[0] == ':': # format: :inv:normalRoleArg - inventory = self.text.split(':')[1] - self.text = self.text[(len(inventory) + 2):] - result, messages = self.invoke_role(role_name) for node in result: if isinstance(node, pending_xref): node['intersphinx'] = True - node['inventory'] = inventory + node['inventory'] = None return result, messages @@ -574,8 +565,11 @@ def run(self, **kwargs: Any) -> None: else: newnode = resolve_reference_any_inventory(self.env, False, node, contnode) if newnode is None: - # no warning, the normal missing_reference handler will do that - pass + typ = node['reftype'] + msg = (__('external %s:%s reference target not found: %s') % + (node['refdomain'], typ, node['reftarget'])) + logger.warning(msg, location=node, type='ref', subtype=typ) + node.replace_self(contnode) else: node.replace_self(newnode) diff --git a/tests/roots/test-ext-intersphinx-role/index.rst b/tests/roots/test-ext-intersphinx-role/index.rst index 164f2cfd4c9..bb7a6c4f19e 100644 --- a/tests/roots/test-ext-intersphinx-role/index.rst +++ b/tests/roots/test-ext-intersphinx-role/index.rst @@ -1,26 +1,21 @@ -:external:py:mod:`module1` -:external:py:mod:`inv:module2` +- ``module1`` is only defined in ``inv``: + :external:py:mod:`module1` -.. py:module:: module1 +.. py:module:: module2 -:external:py:func:`func` -:external:py:func:`inv:func` -:external:py:meth:`Foo.bar` -:external:py:meth:`inv:Foo.bar` +- ``module2`` is defined here and also in ``inv``, but should resolve to inv: + :external:py:mod:`module2` -:external:c:func:`CFunc` -:external:c:func:`inv:CFunc` -:external:doc:`docname` -:external:doc:`inv:docname` -:external:option:`ls -l` -:external:option:`inv:ls -l` +- ``module3`` is not defined anywhere, so should warn: + :external:py:mod:`module3` -.. cpp:type:: std::uint8_t -.. cpp:class:: foo::Bar +.. py:module:: module10 -:external:cpp:type:`std::uint8_t` -:external:cpp:class:`inv:foo::Bar` -:external:cpp:func:`:inv2:foo::Bar::baz` +- ``module10`` is only defined here, but should still not be resolved to: + :external:py:mod:`module10` -:external:cpp:type:`FoonsTitle ` -:external:cpp:type:`inv:BarType ` \ No newline at end of file + +- a function in inv: + :external:py:func:`module1.func` +- a method, but with old style inventory prefix, which shouldn't work: + :external:py:meth:`inv:Foo.bar` diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index a1118e48da1..ec2aad44090 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -527,7 +527,7 @@ def log_message(*args, **kwargs): @pytest.mark.sphinx('html', testroot='ext-intersphinx-role') -def test_intersphinx_role(app): +def test_intersphinx_role(app, warning): inv_file = app.srcdir / 'inventory' inv_file.write_bytes(inventory_v2) app.config.intersphinx_mapping = { @@ -542,21 +542,13 @@ def test_intersphinx_role(app): app.build() content = (app.outdir / 'index.html').read_text() + wStr = warning.getvalue() - targets = ( - 'foo.html#module-module1', - 'foo.html#module-module2', - 'sub/foo.html#module1.func', - 'index.html#foo.Bar.baz', - 'cfunc.html#CFunc', - 'docname.html', - 'index.html#cmdoption-ls-l', - 'index.html#std_uint8_t', - 'index.html#foons', - 'index.html#foons_bartype', - ) html = '' - for t in targets: - assert html.format(t) in content + assert html.format('foo.html#module-module1') in content + assert html.format('foo.html#module-module2') in content + assert "WARNING: external py:mod reference target not found: module3" in wStr + assert "WARNING: external py:mod reference target not found: module10" in wStr - assert html.format('index.html#cpp_foo_bar_baz') not in content + assert html.format('sub/foo.html#module1.func') in content + assert "WARNING: external py:meth reference target not found: inv:Foo.bar" in wStr From 029d0e5b1837de4e33ee92cbb88d650e9afb8a3d Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 6 Nov 2021 14:02:37 +0100 Subject: [PATCH 182/192] intersphinx role: new inventory parsing from role name --- sphinx/ext/intersphinx.py | 42 +++++++++++++------ .../roots/test-ext-intersphinx-role/index.rst | 25 ++++++++++- tests/test_ext_intersphinx.py | 17 ++++++++ 3 files changed, 71 insertions(+), 13 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index ce10f122883..2c640925b94 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -489,9 +489,15 @@ def role(self, role_name: str, language_module: ModuleType, lineno: int, reporte class IntersphinxRole(SphinxRole): def run(self) -> Tuple[List[Node], List[system_message]]: - role_name = self.get_role_name(self.name) + inventory, name_suffix = self.get_inventory_and_name_suffix(self.name) + if inventory and not inventory_exists(self.env, inventory): + logger.warning(__('inventory for external cross-reference not found: %s'), inventory, + location=(self.env.docname, self.lineno)) + return [], [] + + role_name = self.get_role_name(name_suffix) if role_name is None: - logger.warning(__('role not found: %s'), self.name, + logger.warning(__('role for external cross-reference not found: %s'), name_suffix, location=(self.env.docname, self.lineno)) return [], [] @@ -499,20 +505,33 @@ def run(self) -> Tuple[List[Node], List[system_message]]: for node in result: if isinstance(node, pending_xref): node['intersphinx'] = True - node['inventory'] = None + node['inventory'] = inventory return result, messages + def get_inventory_and_name_suffix(self, name: str) -> Tuple[Optional[str], Optional[str]]: + assert name.startswith('external:'), name + name = name[9:] + inv_names = name.split('+') + inventory = None + if len(inv_names) > 1: + # inv+role + # inv+domain:role + inventory = inv_names[0] + name = name[len(inventory)+1:] + return inventory, name + def get_role_name(self, name: str) -> Optional[Tuple[str, str]]: names = name.split(':') - if len(names) == 2: - # :external:role: - domain = self.env.temp_data.get('default_domain') + if len(names) == 1: + # role + default_domain = self.env.temp_data.get('default_domain') + domain = default_domain.name if default_domain else None + role = names[0] + elif len(names) == 2: + # domain:role: + domain = names[0] role = names[1] - elif len(names) == 3: - # :external:domain:role: - domain = names[1] - role = names[2] else: return None @@ -559,8 +578,7 @@ def run(self, **kwargs: Any) -> None: contnode = cast(nodes.TextElement, node[0].deepcopy()) inv_name = node['inventory'] if inv_name is not None: - if not inventory_exists(self.env, inv_name): - continue + assert inventory_exists(self.env, inv_name) newnode = resolve_reference_in_inventory(self.env, inv_name, node, contnode) else: newnode = resolve_reference_any_inventory(self.env, False, node, contnode) diff --git a/tests/roots/test-ext-intersphinx-role/index.rst b/tests/roots/test-ext-intersphinx-role/index.rst index bb7a6c4f19e..5c2cdbd0081 100644 --- a/tests/roots/test-ext-intersphinx-role/index.rst +++ b/tests/roots/test-ext-intersphinx-role/index.rst @@ -14,8 +14,31 @@ - ``module10`` is only defined here, but should still not be resolved to: :external:py:mod:`module10` - - a function in inv: :external:py:func:`module1.func` - a method, but with old style inventory prefix, which shouldn't work: :external:py:meth:`inv:Foo.bar` +- a non-existing role: + :external:py:nope:`something` + +.. default-domain:: cpp + +- a type where the default domain is used to find the role: + :external:type:`std::uint8_t` +- a non-existing role in default domain: + :external:nope:`somethingElse` + +- two roles in ``std`` which can be found without a default domain: + + - :external:doc:`docname` + - :external:option:`ls -l` + + +- a function with explicit inventory: + :external:inv+c:func:`CFunc` +- a class with explicit non-existing inventory, which also has upper-case in name: + :external:invNope+cpp:class:`foo::Bar` + + +- explicit title: + :external:cpp:type:`FoonsTitle ` diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index ec2aad44090..11450e2c343 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -552,3 +552,20 @@ def test_intersphinx_role(app, warning): assert html.format('sub/foo.html#module1.func') in content assert "WARNING: external py:meth reference target not found: inv:Foo.bar" in wStr + + assert "WARNING: role for external cross-reference not found: py:nope" in wStr + + # default domain + assert html.format('index.html#std_uint8_t') in content + assert "WARNING: role for external cross-reference not found: nope" in wStr + + # std roles without domain prefix + assert html.format('docname.html') in content + assert html.format('index.html#cmdoption-ls-l') in content + + # explicit inventory + assert html.format('cfunc.html#CFunc') in content + #assert "WARNING: inventory for external cross-reference not found: invNope" in wStr + + # explicit title + assert html.format('index.html#foons') in content From ccc4f95b42c4caba74cf01f9aa898a96a3372b9e Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 6 Nov 2021 14:33:47 +0100 Subject: [PATCH 183/192] intersphinx role, hax role name to preserve case --- sphinx/ext/intersphinx.py | 8 ++++++-- tests/test_ext_intersphinx.py | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 2c640925b94..90ad8e75833 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -482,14 +482,18 @@ def __init__(self) -> None: def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter ) -> Tuple[RoleFunction, List[system_message]]: if role_name.split(':')[0] == 'external': - return IntersphinxRole(), [] + return IntersphinxRole(role_name), [] else: return super().role(role_name, language_module, lineno, reporter) class IntersphinxRole(SphinxRole): + def __init__(self, orig_name: str) -> None: + self.orig_name = orig_name + def run(self) -> Tuple[List[Node], List[system_message]]: - inventory, name_suffix = self.get_inventory_and_name_suffix(self.name) + assert self.name == self.orig_name.lower() + inventory, name_suffix = self.get_inventory_and_name_suffix(self.orig_name) if inventory and not inventory_exists(self.env, inventory): logger.warning(__('inventory for external cross-reference not found: %s'), inventory, location=(self.env.docname, self.lineno)) diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index 11450e2c343..b2ad8afe52f 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -565,7 +565,7 @@ def test_intersphinx_role(app, warning): # explicit inventory assert html.format('cfunc.html#CFunc') in content - #assert "WARNING: inventory for external cross-reference not found: invNope" in wStr + assert "WARNING: inventory for external cross-reference not found: invNope" in wStr # explicit title assert html.format('index.html#foons') in content From 540d76035cc6bbf7ee18d0eb9bf63e4c3651d1f9 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 6 Nov 2021 15:27:31 +0100 Subject: [PATCH 184/192] intersphinx role, documentation --- doc/usage/extensions/intersphinx.rst | 80 ++++++++++++++++++++-------- 1 file changed, 57 insertions(+), 23 deletions(-) diff --git a/doc/usage/extensions/intersphinx.rst b/doc/usage/extensions/intersphinx.rst index a3e65bed642..4b754fe460d 100644 --- a/doc/usage/extensions/intersphinx.rst +++ b/doc/usage/extensions/intersphinx.rst @@ -8,20 +8,25 @@ .. versionadded:: 0.5 -This extension can generate automatic links to the documentation of objects in -other projects. - -Usage is simple: whenever Sphinx encounters a cross-reference that has no -matching target in the current documentation set, it looks for targets in the -documentation sets configured in :confval:`intersphinx_mapping`. A reference -like ``:py:class:`zipfile.ZipFile``` can then link to the Python documentation +This extension can generate links to the documentation of objects in external +projects, either explicitly through the :rst:role:`external` role, or as a +fallback resolution for any other cross-reference. + +Usage for fallback resolution is simple: whenever Sphinx encounters a +cross-reference that has no matching target in the current documentation set, +it looks for targets in the external documentation sets configured in +:confval:`intersphinx_mapping`. A reference like +``:py:class:`zipfile.ZipFile``` can then link to the Python documentation for the ZipFile class, without you having to specify where it is located exactly. -When using the "new" format (see below), you can even force lookup in a foreign -set by prefixing the link target appropriately. A link like ``:ref:`comparison -manual ``` will then link to the label "comparisons" in the -doc set "python", if it exists. +When using the :rst:role:`external` role, you can force lookup to any external +projects, and optionally to a specific external project. +A link like ``:external:ref:`comparison manual ``` will then link +to the label "comparisons" in whichever configured external project, if it +exists, +and a link like ``:external:python+ref:`comparison manual ``` will +link to the label "comparisons" only in the doc set "python", if it exists. Behind the scenes, this works as follows: @@ -30,8 +35,8 @@ Behind the scenes, this works as follows: * Projects using the Intersphinx extension can specify the location of such mapping files in the :confval:`intersphinx_mapping` config value. The mapping - will then be used to resolve otherwise missing references to objects into - links to the other documentation. + will then be used to resolve both :rst:role:`external` references, and also + otherwise missing references to objects into links to the other documentation. * By default, the mapping file is assumed to be at the same location as the rest of the documentation; however, the location of the mapping file can also be @@ -79,10 +84,10 @@ linking: at the same location as the base URI) or another local file path or a full HTTP URI to an inventory file. - The unique identifier can be used to prefix cross-reference targets, so that + The unique identifier can be used in the :rst:role:`external` role, so that it is clear which intersphinx set the target belongs to. A link like - ``:ref:`comparison manual ``` will link to the label - "comparisons" in the doc set "python", if it exists. + ``external:python+ref:`comparison manual ``` will link to the + label "comparisons" in the doc set "python", if it exists. **Example** @@ -162,21 +167,50 @@ linking: The default value is an empty list. - When a cross-reference without an explicit inventory specification is being - resolved by intersphinx, skip resolution if it matches one of the - specifications in this list. + When a non-:rst:role:`external` cross-reference is being resolved by + intersphinx, skip resolution if it matches one of the specifications in this + list. For example, with ``intersphinx_disabled_reftypes = ['std:doc']`` a cross-reference ``:doc:`installation``` will not be attempted to be - resolved by intersphinx, but ``:doc:`otherbook:installation``` will be - attempted to be resolved in the inventory named ``otherbook`` in + resolved by intersphinx, but ``:external:otherbook+doc:`installation``` will + be attempted to be resolved in the inventory named ``otherbook`` in :confval:`intersphinx_mapping`. At the same time, all cross-references generated in, e.g., Python, declarations will still be attempted to be resolved by intersphinx. - If ``*`` is in the list of domains, then no references without an explicit - inventory will be resolved by intersphinx. + If ``*`` is in the list of domains, then no non-:rst:role:`external` + references will be resolved by intersphinx. + +Explicitly Reference External Objects +------------------------------------- + +The Intersphinx extension provides the following role. + +.. rst:role:: external + + .. versionadded:: 4.4 + + Use Intersphinx to perform lookup only in external projects, and not the + current project. Intersphinx still needs to know the type of object you + would like to find, so the general form of this role is to write the + cross-refererence as if the object is in the current project, but then prefix + it with ``:external``. + The two forms are then + + - ``:external:domain:reftype:`target```, + e.g., ``:external:py:class:`zipfile.ZipFile```, or + - ``:external:reftype:`target```, + e.g., ``:external:doc:`installation```. + + If you would like to constrain the lookup to a specific external project, + then the key of the project, as specified in :confval:`intersphinx_mapping`, + is added as well to get the two forms + - ``:external:invname+domain:reftype:`target```, + e.g., ``:external:python+py:class:`zipfile.ZipFile```, or + - ``:external:invname+reftype:`target```, + e.g., ``:external:python+doc:`installation```. Showing all links of an Intersphinx mapping file ------------------------------------------------ From 9a3f2b85421948c98647b10106c1bbb5ff1b0628 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 6 Nov 2021 15:51:53 +0100 Subject: [PATCH 185/192] intersphinx role, CHANGES --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index d2ddae71c86..54b09e55635 100644 --- a/CHANGES +++ b/CHANGES @@ -47,6 +47,8 @@ Features added * #9391: texinfo: improve variable in ``samp`` role * #9578: texinfo: Add :confval:`texinfo_cross_references` to disable cross references for readability with standalone readers +* #9822 (and #9062), add new Intersphinx role :rst:role:`external` for explict + lookup in the external projects, without resolving to the local project. Bugs fixed ---------- From 941db550f02d76ee2b93300584ac85dc599d21e6 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 6 Nov 2021 16:25:59 +0100 Subject: [PATCH 186/192] intersphinx role, fix flake8 warnings --- sphinx/ext/intersphinx.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 90ad8e75833..50cc13251e4 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -495,8 +495,8 @@ def run(self) -> Tuple[List[Node], List[system_message]]: assert self.name == self.orig_name.lower() inventory, name_suffix = self.get_inventory_and_name_suffix(self.orig_name) if inventory and not inventory_exists(self.env, inventory): - logger.warning(__('inventory for external cross-reference not found: %s'), inventory, - location=(self.env.docname, self.lineno)) + logger.warning(__('inventory for external cross-reference not found: %s'), + inventory, location=(self.env.docname, self.lineno)) return [], [] role_name = self.get_role_name(name_suffix) @@ -522,7 +522,7 @@ def get_inventory_and_name_suffix(self, name: str) -> Tuple[Optional[str], Optio # inv+role # inv+domain:role inventory = inv_names[0] - name = name[len(inventory)+1:] + name = name[len(inventory) + 1:] return inventory, name def get_role_name(self, name: str) -> Optional[Tuple[str, str]]: From 9589a2bc0531598cdd69f260f2f2c2dbc5852d6e Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 15 Jan 2022 13:31:47 +0100 Subject: [PATCH 187/192] intersphinx role, remove redundant method --- sphinx/ext/intersphinx.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 50cc13251e4..5cbc59a9610 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -476,9 +476,6 @@ class IntersphinxDispatcher(CustomReSTDispatcher): This enables :external:***: roles on parsing reST document. """ - def __init__(self) -> None: - super().__init__() - def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter ) -> Tuple[RoleFunction, List[system_message]]: if role_name.split(':')[0] == 'external': From c11b109d591a74f87de071ec4782ac3ab782ea38 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 15 Jan 2022 14:02:21 +0100 Subject: [PATCH 188/192] intersphinx role: :external+inv:**: instead of :external:inv+**: --- sphinx/ext/intersphinx.py | 30 +++++++++++-------- .../roots/test-ext-intersphinx-role/index.rst | 4 +-- 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 5cbc59a9610..d35a9d9b946 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -473,12 +473,12 @@ def missing_reference(app: Sphinx, env: BuildEnvironment, node: pending_xref, class IntersphinxDispatcher(CustomReSTDispatcher): """Custom dispatcher for external role. - This enables :external:***: roles on parsing reST document. + This enables :external:***:/:external+***: roles on parsing reST document. """ def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter ) -> Tuple[RoleFunction, List[system_message]]: - if role_name.split(':')[0] == 'external': + if len(role_name) > 9 and role_name.startswith('external') and role_name[8] in ':+': return IntersphinxRole(role_name), [] else: return super().role(role_name, language_module, lineno, reporter) @@ -510,17 +510,23 @@ def run(self) -> Tuple[List[Node], List[system_message]]: return result, messages - def get_inventory_and_name_suffix(self, name: str) -> Tuple[Optional[str], Optional[str]]: - assert name.startswith('external:'), name + def get_inventory_and_name_suffix(self, name: str) -> Tuple[Optional[str], str]: + assert name.startswith('external'), name + assert name[8] in ':+', name + typ = name[8] name = name[9:] - inv_names = name.split('+') - inventory = None - if len(inv_names) > 1: - # inv+role - # inv+domain:role - inventory = inv_names[0] - name = name[len(inventory) + 1:] - return inventory, name + if typ == '+': + # we have an explicit inventory name, i.e, + # :external+inv:role: or + # :external+inv:domain:role: + inv, name = name.split(':', 1) + return inv, name + else: + assert typ == ':' + # we look in all inventories, i.e., + # :external:role: or + # :external:domain:role: + return None, name def get_role_name(self, name: str) -> Optional[Tuple[str, str]]: names = name.split(':') diff --git a/tests/roots/test-ext-intersphinx-role/index.rst b/tests/roots/test-ext-intersphinx-role/index.rst index 5c2cdbd0081..58edb7a1a01 100644 --- a/tests/roots/test-ext-intersphinx-role/index.rst +++ b/tests/roots/test-ext-intersphinx-role/index.rst @@ -35,9 +35,9 @@ - a function with explicit inventory: - :external:inv+c:func:`CFunc` + :external+inv:c:func:`CFunc` - a class with explicit non-existing inventory, which also has upper-case in name: - :external:invNope+cpp:class:`foo::Bar` + :external+invNope:cpp:class:`foo::Bar` - explicit title: From 3bf8bcd6e151a78b0dd003a3e76ff4c65566b6e6 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 15 Jan 2022 14:05:42 +0100 Subject: [PATCH 189/192] intersphinx role, update docs --- doc/usage/extensions/intersphinx.rst | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/usage/extensions/intersphinx.rst b/doc/usage/extensions/intersphinx.rst index 4b754fe460d..2bcce68d0ee 100644 --- a/doc/usage/extensions/intersphinx.rst +++ b/doc/usage/extensions/intersphinx.rst @@ -25,7 +25,7 @@ projects, and optionally to a specific external project. A link like ``:external:ref:`comparison manual ``` will then link to the label "comparisons" in whichever configured external project, if it exists, -and a link like ``:external:python+ref:`comparison manual ``` will +and a link like ``:external+python:ref:`comparison manual ``` will link to the label "comparisons" only in the doc set "python", if it exists. Behind the scenes, this works as follows: @@ -173,7 +173,7 @@ linking: For example, with ``intersphinx_disabled_reftypes = ['std:doc']`` a cross-reference ``:doc:`installation``` will not be attempted to be - resolved by intersphinx, but ``:external:otherbook+doc:`installation``` will + resolved by intersphinx, but ``:external+otherbook:doc:`installation``` will be attempted to be resolved in the inventory named ``otherbook`` in :confval:`intersphinx_mapping`. At the same time, all cross-references generated in, e.g., Python, @@ -207,10 +207,10 @@ The Intersphinx extension provides the following role. then the key of the project, as specified in :confval:`intersphinx_mapping`, is added as well to get the two forms - - ``:external:invname+domain:reftype:`target```, - e.g., ``:external:python+py:class:`zipfile.ZipFile```, or - - ``:external:invname+reftype:`target```, - e.g., ``:external:python+doc:`installation```. + - ``:external+invname:domain:reftype:`target```, + e.g., ``:external+python:py:class:`zipfile.ZipFile```, or + - ``:external+invname:reftype:`target```, + e.g., ``:external+python:doc:`installation```. Showing all links of an Intersphinx mapping file ------------------------------------------------ From 6ee0ecbe40ab8a3251538409cf35ffcc04765bfa Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sun, 16 Jan 2022 09:40:23 +0100 Subject: [PATCH 190/192] intersphinx role, simplify role name matching --- sphinx/ext/intersphinx.py | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index d35a9d9b946..f19f5fa156e 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -26,6 +26,7 @@ import concurrent.futures import functools import posixpath +import re import sys import time from os import path @@ -485,6 +486,11 @@ def role(self, role_name: str, language_module: ModuleType, lineno: int, reporte class IntersphinxRole(SphinxRole): + # group 1: just for the optionality of the inventory name + # group 2: the inventory name (optional) + # group 3: the domain:role or role part + _re_inv_ref = re.compile(r"(\+([^:]+))?:(.*)") + def __init__(self, orig_name: str) -> None: self.orig_name = orig_name @@ -513,20 +519,13 @@ def run(self) -> Tuple[List[Node], List[system_message]]: def get_inventory_and_name_suffix(self, name: str) -> Tuple[Optional[str], str]: assert name.startswith('external'), name assert name[8] in ':+', name - typ = name[8] - name = name[9:] - if typ == '+': - # we have an explicit inventory name, i.e, - # :external+inv:role: or - # :external+inv:domain:role: - inv, name = name.split(':', 1) - return inv, name - else: - assert typ == ':' - # we look in all inventories, i.e., - # :external:role: or - # :external:domain:role: - return None, name + # either we have an explicit inventory name, i.e, + # :external+inv:role: or + # :external+inv:domain:role: + # or we look in all inventories, i.e., + # :external:role: or + # :external:domain:role: + return IntersphinxRole._re_inv_ref.fullmatch(name, 8).group(2, 3) def get_role_name(self, name: str) -> Optional[Tuple[str, str]]: names = name.split(':') From 5d595ec0c4294f45f3138c4c581b84c39cae5e29 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 15 Jan 2022 21:52:25 +0100 Subject: [PATCH 191/192] intersphinx role, simplify role_name check Co-authored-by: Takeshi KOMIYA --- sphinx/ext/intersphinx.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index f19f5fa156e..2f8ab2588e7 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -479,7 +479,7 @@ class IntersphinxDispatcher(CustomReSTDispatcher): def role(self, role_name: str, language_module: ModuleType, lineno: int, reporter: Reporter ) -> Tuple[RoleFunction, List[system_message]]: - if len(role_name) > 9 and role_name.startswith('external') and role_name[8] in ':+': + if len(role_name) > 9 and role_name.startswith(('external:', 'external+')): return IntersphinxRole(role_name), [] else: return super().role(role_name, language_module, lineno, reporter) @@ -525,7 +525,8 @@ def get_inventory_and_name_suffix(self, name: str) -> Tuple[Optional[str], str]: # or we look in all inventories, i.e., # :external:role: or # :external:domain:role: - return IntersphinxRole._re_inv_ref.fullmatch(name, 8).group(2, 3) + inv, suffix = IntersphinxRole._re_inv_ref.fullmatch(name, 8).group(2, 3) + return inv, suffix def get_role_name(self, name: str) -> Optional[Tuple[str, str]]: names = name.split(':') From 88f9647a223c77a29153683b49bc29852ed80721 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 17 Jan 2022 00:17:38 +0900 Subject: [PATCH 192/192] Bump to 4.4.0 final --- CHANGES | 34 ++-------------------------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 34 deletions(-) diff --git a/CHANGES b/CHANGES index 54b09e55635..564640efe19 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 4.4.0 (in development) -============================== +Release 4.4.0 (released Jan 17, 2022) +===================================== Dependencies ------------ @@ -7,12 +7,6 @@ Dependencies * #10007: Use ``importlib_metadata`` for python-3.9 or older * #10007: Drop ``setuptools`` -Incompatible changes --------------------- - -Deprecated ----------- - Features added -------------- @@ -85,30 +79,6 @@ Bugs fixed directory * #9636: code-block: ``:dedent:`` without argument did strip newlines -Testing --------- - -Release 4.3.3 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -Testing --------- - Release 4.3.2 (released Dec 19, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 49479031934..269c141af76 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,7 +27,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.4.0+' +__version__ = '4.4.0' __released__ = '4.4.0' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -38,7 +38,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 4, 0, 'beta', 0) +version_info = (4, 4, 0, 'final', 0) package_dir = path.abspath(path.dirname(__file__))

{{ _('Table of Contents') }}