diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 00000000000..12945f66585 --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,32 @@ +name: Coverage + +on: [push] + +jobs: + coverage: + runs-on: ubuntu-latest + if: github.repository_owner == 'sphinx-doc' + + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3 + uses: actions/setup-python@v3 + with: + python-version: 3 + + - name: Check Python version + run: python --version + + - name: Install graphviz + run: sudo apt-get install graphviz + + - name: Install dependencies + run: python -m pip install -U pip tox pytest-cov + + - name: Run Tox + run: tox --sitepackages -e py -- -vv + env: + PYTEST_ADDOPTS: "--cov ./ --cov-append --cov-config setup.cfg" + + - name: codecov + uses: codecov/codecov-action@v3 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1debcaaf930..daa766c39fb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,32 +56,3 @@ jobs: run: python -m pip install -U pip tox - name: Run Tox run: tox -e py -- -vv - - coverage: - # only run on pushes to branches in the sphinx-doc/sphinx repo - if: github.repository_owner == 'sphinx-doc' && github.event_name == 'push' - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3 - uses: actions/setup-python@v3 - with: - python-version: 3 - - - name: Check Python version - run: python --version - - - name: Install graphviz - run: sudo apt-get install graphviz - - - name: Install dependencies - run: python -m pip install -U pip tox pytest-cov - - - name: Run Tox - run: tox --sitepackages -e py -- -vv - env: - PYTEST_ADDOPTS: "--cov ./ --cov-append --cov-config setup.cfg" - - - name: codecov - uses: codecov/codecov-action@v3 diff --git a/CHANGES b/CHANGES index 43e6dc4786e..30377f1aa53 100644 --- a/CHANGES +++ b/CHANGES @@ -58,6 +58,18 @@ Features added Bugs fixed ---------- +* #9575: autodoc: The annotation of return value should not be shown when + ``autodoc_typehints="description"`` +* #9648: autodoc: ``*args`` and ``**kwargs`` entries are duplicated when + ``autodoc_typehints="description"`` +* #8180: autodoc: Docstring metadata ignored for attributes +* #10443: epub: EPUB builder can't detect the mimetype of .webp file +* #10456: py domain: ``:meta:`` fields are displayed if docstring contains two + or more meta-field +* #9096: sphinx-build: the value of progress bar for paralle build is wrong +* #10110: sphinx-build: exit code is not changed when error is raised on + builder-finished event + Testing -------- diff --git a/doc/development/theming.rst b/doc/development/theming.rst index f203429ac4d..fcbeb030a61 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -248,11 +248,11 @@ Now, you will have access to this function in jinja like so: Add your own static files to the build assets ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If you are packaging your own build assets with an extension -(e.g., a CSS or JavaScript file), you need to ensure that they are placed -in the ``_static/`` folder of HTML outputs. To do so, you may copy them directly -into a build's ``_static/`` folder at build time, generally via an event hook. -Here is some sample code to accomplish this: +By default, Sphinx copies static files on the ``static/`` directory of the template +directory. However, if your package needs to place static files outside of the +``static/`` directory for some reasons, you need to copy them to the ``_static/`` +directory of HTML outputs manually at the build via an event hook. Here is an +example of code to accomplish this: .. code-block:: python diff --git a/doc/usage/extensions/imgconverter.rst b/doc/usage/extensions/imgconverter.rst index 9c742d059fc..b9af22d6f33 100644 --- a/doc/usage/extensions/imgconverter.rst +++ b/doc/usage/extensions/imgconverter.rst @@ -12,13 +12,14 @@ This extension converts images in your document to appropriate format for builders. For example, it allows you to use SVG images with LaTeX builder. As a result, you don't mind what image format the builder supports. -Internally, this extension uses Imagemagick_ to convert images. +By default the extension uses ImageMagick_ to perform conversions, +and will not work if ImageMagick is not installed. -.. _Imagemagick: https://www.imagemagick.org/script/index.php +.. _ImageMagick: https://www.imagemagick.org .. note:: - Imagemagick rasterizes a SVG image on conversion. As a result, the image + ImageMagick rasterizes a SVG image on conversion. As a result, the image becomes not scalable. To avoid that, please use other image converters like `sphinxcontrib-svg2pdfconverter`__ (which uses Inkscape or ``rsvg-convert``). @@ -31,10 +32,12 @@ Configuration .. confval:: image_converter - A path to :command:`convert` command. By default, the imgconverter uses + A path to a conversion command. By default, the imgconverter finds the command from search paths. - On windows platform, :command:`magick` command is used by default. + On Unix platforms, the command :command:`convert` is used by default. + + On Windows, the command :command:`magick` is used by default. .. versionchanged:: 3.1 @@ -45,8 +48,8 @@ Configuration Additional command-line arguments to give to :command:`convert`, as a list. The default is an empty list ``[]``. - On windows platform, it defaults to ``["convert"]``. + On Windows, it defaults to ``["convert"]``. .. versionchanged:: 3.1 - Use ``["convert"]`` by default on windows + Use ``["convert"]`` by default on Windows diff --git a/sphinx/application.py b/sphinx/application.py index 57e22914597..ccd4bf3ac7e 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -328,33 +328,7 @@ def build(self, force_all: bool = False, filenames: List[str] = None) -> None: self.builder.compile_update_catalogs() self.builder.build_update() - if self._warncount and self.keep_going: - self.statuscode = 1 - - status = (__('succeeded') if self.statuscode == 0 - else __('finished with problems')) - if self._warncount: - if self.warningiserror: - if self._warncount == 1: - msg = __('build %s, %s warning (with warnings treated as errors).') - else: - msg = __('build %s, %s warnings (with warnings treated as errors).') - else: - if self._warncount == 1: - msg = __('build %s, %s warning.') - else: - msg = __('build %s, %s warnings.') - - logger.info(bold(msg % (status, self._warncount))) - else: - logger.info(bold(__('build %s.') % status)) - - if self.statuscode == 0 and self.builder.epilog: - logger.info('') - logger.info(self.builder.epilog % { - 'outdir': relpath(self.outdir), - 'project': self.config.project - }) + self.events.emit('build-finished', None) except Exception as err: # delete the saved env to force a fresh build next time envfile = path.join(self.doctreedir, ENV_PICKLE_FILENAME) @@ -362,8 +336,35 @@ def build(self, force_all: bool = False, filenames: List[str] = None) -> None: os.unlink(envfile) self.events.emit('build-finished', err) raise + + if self._warncount and self.keep_going: + self.statuscode = 1 + + status = (__('succeeded') if self.statuscode == 0 + else __('finished with problems')) + if self._warncount: + if self.warningiserror: + if self._warncount == 1: + msg = __('build %s, %s warning (with warnings treated as errors).') + else: + msg = __('build %s, %s warnings (with warnings treated as errors).') + else: + if self._warncount == 1: + msg = __('build %s, %s warning.') + else: + msg = __('build %s, %s warnings.') + + logger.info(bold(msg % (status, self._warncount))) else: - self.events.emit('build-finished', None) + logger.info(bold(__('build %s.') % status)) + + if self.statuscode == 0 and self.builder.epilog: + logger.info('') + logger.info(self.builder.epilog % { + 'outdir': relpath(self.outdir), + 'project': self.config.project + }) + self.builder.cleanup() # ---- general extensibility interface ------------------------------------- diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 45188cd565c..d8500e11b42 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -25,6 +25,7 @@ from sphinx.util.osutil import SEP, ensuredir, relative_uri, relpath from sphinx.util.parallel import ParallelTasks, SerialTasks, make_chunks, parallel_available from sphinx.util.tags import Tags +from sphinx.util.typing import NoneType # side effect: registers roles and directives from sphinx import directives # NOQA isort:skip @@ -429,6 +430,13 @@ def _read_serial(self, docnames: List[str]) -> None: self.read_doc(docname) def _read_parallel(self, docnames: List[str], nproc: int) -> None: + chunks = make_chunks(docnames, nproc) + + # create a status_iterator to step progressbar after reading a document + # (see: ``merge()`` function) + progress = status_iterator(chunks, __('reading sources... '), "purple", + len(chunks), self.app.verbosity) + # clear all outdated docs at once for docname in docnames: self.events.emit('env-purge-doc', self.env, docname) @@ -445,16 +453,15 @@ def merge(docs: List[str], otherenv: bytes) -> None: env = pickle.loads(otherenv) self.env.merge_info_from(docs, env, self.app) - tasks = ParallelTasks(nproc) - chunks = make_chunks(docnames, nproc) + next(progress) - for chunk in status_iterator(chunks, __('reading sources... '), "purple", - len(chunks), self.app.verbosity): + tasks = ParallelTasks(nproc) + for chunk in chunks: tasks.add_task(read_process, chunk, merge) # make sure all threads have finished - logger.info(bold(__('waiting for workers...'))) tasks.join() + logger.info('') def read_doc(self, docname: str) -> None: """Parse a file and add/update inventory entries for the doctree.""" @@ -563,19 +570,26 @@ def write_process(docs: List[Tuple[str, nodes.document]]) -> None: tasks = ParallelTasks(nproc) chunks = make_chunks(docnames, nproc) + # create a status_iterator to step progressbar after writing a document + # (see: ``on_chunk_done()`` function) + progress = status_iterator(chunks, __('writing output... '), "darkgreen", + len(chunks), self.app.verbosity) + + def on_chunk_done(args: List[Tuple[str, NoneType]], result: NoneType) -> None: + next(progress) + self.app.phase = BuildPhase.RESOLVING - for chunk in status_iterator(chunks, __('writing output... '), "darkgreen", - len(chunks), self.app.verbosity): + for chunk in chunks: arg = [] for docname in chunk: doctree = self.env.get_and_resolve_doctree(docname, self) self.write_doc_serialized(docname, doctree) arg.append((docname, doctree)) - tasks.add_task(write_process, arg) + tasks.add_task(write_process, arg, on_chunk_done) # make sure all threads have finished - logger.info(bold(__('waiting for workers...'))) tasks.join() + logger.info('') def prepare_writing(self, docnames: Set[str]) -> None: """A place where you can add logic before :meth:`write_doc` is run""" diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 4bb602fe0c4..78d3d89a0ee 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -56,6 +56,7 @@ '.xhtml': 'application/xhtml+xml', '.css': 'text/css', '.png': 'image/png', + '.webp': 'image/webp', '.gif': 'image/gif', '.svg': 'image/svg+xml', '.jpg': 'image/jpeg', diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 8fc18532554..a634a51d2b2 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -1068,11 +1068,11 @@ def filter_meta_fields(app: Sphinx, domain: str, objtype: str, content: Element) for node in content: if isinstance(node, nodes.field_list): fields = cast(List[nodes.field], node) - for field in fields: + # removing list items while iterating the list needs reversed() + for field in reversed(fields): field_name = cast(nodes.field_body, field[0]).astext().strip() if field_name == 'meta' or field_name.startswith('meta '): node.remove(field) - break class PythonModuleIndex(Index): diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index 5ab40d135c5..85c1e81be64 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -280,12 +280,19 @@ def get_class_members(subject: Any, objpath: List[str], attrgetter: Callable members[name] = ObjectMember(name, INSTANCEATTR, class_=cls, docstring=docstring) - # append instance attributes (cf. self.attr1) if analyzer knows + # append or complete instance attributes (cf. self.attr1) if analyzer knows if analyzer: for (ns, name), docstring in analyzer.attr_docs.items(): if ns == qualname and name not in members: + # otherwise unknown instance attribute members[name] = ObjectMember(name, INSTANCEATTR, class_=cls, docstring='\n'.join(docstring)) + elif (ns == qualname and docstring and + isinstance(members[name], ObjectMember) and + not members[name].docstring): + # attribute is already known, because dir(subject) enumerates it. + # But it has no docstring yet + members[name].docstring = '\n'.join(docstring) except AttributeError: pass diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index 06768168eb7..98c51e9e967 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -59,7 +59,10 @@ def merge_typehints(app: Sphinx, domain: str, objtype: str, contentnode: Element for field_list in field_lists: if app.config.autodoc_typehints_description_target == "all": - modify_field_list(field_list, annotations[fullname]) + if objtype == 'class': + modify_field_list(field_list, annotations[fullname], suppress_rtype=True) + else: + modify_field_list(field_list, annotations[fullname]) elif app.config.autodoc_typehints_description_target == "documented_params": augment_descriptions_with_types( field_list, annotations[fullname], force_rtype=True @@ -83,7 +86,8 @@ def insert_field_list(node: Element) -> nodes.field_list: return field_list -def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> None: +def modify_field_list(node: nodes.field_list, annotations: Dict[str, str], + suppress_rtype: bool = False) -> None: arguments: Dict[str, Dict[str, bool]] = {} fields = cast(Iterable[nodes.field], node) for field in fields: @@ -111,7 +115,15 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No if name == 'return': continue - arg = arguments.get(name, {}) + if '*' + name in arguments: + name = '*' + name + arguments.get(name) + elif '**' + name in arguments: + name = '**' + name + arguments.get(name) + else: + arg = arguments.get(name, {}) + if not arg.get('type'): field = nodes.field() field += nodes.field_name('', 'type ' + name) @@ -124,6 +136,10 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No node += field if 'return' in annotations and 'return' not in arguments: + annotation = annotations['return'] + if annotation == 'None' and suppress_rtype: + return + field = nodes.field() field += nodes.field_name('', 'rtype') field += nodes.field_body('', nodes.paragraph('', annotation)) @@ -159,13 +175,19 @@ def augment_descriptions_with_types( has_type.add('return') # Add 'type' for parameters with a description but no declared type. - for name in annotations: + for name, annotation in annotations.items(): if name in ('return', 'returns'): continue + + if '*' + name in has_description: + name = '*' + name + elif '**' + name in has_description: + name = '**' + name + if name in has_description and name not in has_type: field = nodes.field() field += nodes.field_name('', 'type ' + name) - field += nodes.field_body('', nodes.paragraph('', annotations[name])) + field += nodes.field_body('', nodes.paragraph('', annotation)) node += field # Add 'rtype' if 'return' is present and 'rtype' isn't. diff --git a/sphinx/ext/imgconverter.py b/sphinx/ext/imgconverter.py index a40b6c46a32..9d6708d2fa3 100644 --- a/sphinx/ext/imgconverter.py +++ b/sphinx/ext/imgconverter.py @@ -30,9 +30,13 @@ def is_available(self) -> bool: subprocess.run(args, stdout=PIPE, stderr=PIPE, check=True) return True except OSError as exc: - logger.warning(__('convert command %r cannot be run, ' - 'check the image_converter setting: %s'), - self.config.image_converter, exc) + logger.warning(__( + f"Unable to run the image conversion command {self.config.image_converter!r}. " + "'sphinx.ext.imgconverter' requires ImageMagick by default. " + "Ensure it is installed, or set the 'image_converter' option " + "to a custom conversion command.\n\n" + f'Traceback: {exc}' + )) return False except CalledProcessError as exc: logger.warning(__('convert exited with error:\n' diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 298c6c94302..a3f3ce429c4 100644 Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 435382d8c64..112e4b22d43 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Abdullah ahmed , 2020\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "بناء [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "تجهيز المستندات" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 8fcc8de8813..b7c1db47b30 100644 Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 92ea33328c7..de0420f1693 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index b2c16091e80..30dc9b19772 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 4671ee048db..5bde227b371 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 1a047a52e98..96f2d6e8e69 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index b166f7972c7..c169b9368e4 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 60e76a8e37b..ddf592bc7ac 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 2b03e41ce00..60c31922149 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 570ca234252..b1be6ebf383 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 14bf47f4c7a..f6fe4e11dd2 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vilibald W. , 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index d18699b174b..1f858b6a31b 100644 Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 1b1763d5cbf..2d37f0d955f 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Geraint Palmer , 2016\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 4dd947f77e2..b7dd563db28 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 7b91501c076..268aaeeff0b 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -614,16 +614,16 @@ msgstr "" msgid "reading sources... " msgstr "læser kilder ..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "forbereder dokumenter" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 86c0caa3284..0ce2b7f36c5 100644 Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 3fb0d362dad..aff4cad5259 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2018\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -614,16 +614,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 492a17e1acb..6dc5868d140 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 0c5ea3e9c98..c5891bc9a9f 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -525,8 +525,8 @@ msgstr "δεν βρέθηκε μία κατάλληλη εικόνα για το msgid "building [mo]: " msgstr "μεταγλώττιση [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "εγγραφή εξόδου..." @@ -613,16 +613,16 @@ msgstr "%s προστέθηκε, %s άλλαξε, %s απομακρύνθηκε" msgid "reading sources... " msgstr "ανάγνωση πηγών..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "σε αναμονή για εργάτες..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docname προς εγγραφή: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "προετοιμασία κειμένων" @@ -2961,7 +2961,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index d3c6801a6c9..5f3754b9a4a 100644 Binary files a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index d8bf76a4b57..e184fc7db6d 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 8e91ce7c76e..f068b23fa1c 100644 Binary files a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index e4f1a80e81c..ec658491ed3 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2022\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -523,8 +523,8 @@ msgstr "a suitable image for %s builder not found: %s" msgid "building [mo]: " msgstr "building [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "writing output... " @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index c58b6c61eef..c6a6b140593 100644 Binary files a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 34d24f08ae3..914b2be1f4e 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index d78217caf11..df5a6469cd8 100644 Binary files a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index f4bf1dcc8c3..d7d8e1d9d52 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tatsuro YOKOTA , 2021\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 1554dff9168..6e9c9dab3c8 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 99d45697f30..589a604c6d6 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016,2021\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -529,8 +529,8 @@ msgstr "una imagen adecuada para %s constructor no encontrado: %s" msgid "building [mo]: " msgstr "compilando [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "escribiendo salida... " @@ -617,16 +617,16 @@ msgstr "%sañadido, %s cambiado, %s removido" msgid "reading sources... " msgstr "leyendo fuentes..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "Esperando a los workers..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "preparando documentos" @@ -2965,7 +2965,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 788bd2c25a9..411d90bfa5d 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 73691589bf6..cae860817b8 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Ivar Smolin , 2013-2022\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "ehitamine [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "väljundi kirjutamine... " @@ -614,16 +614,16 @@ msgstr "lisatud %s, muudetud %s, eemaldatud %s" msgid "reading sources... " msgstr "lähtefailide lugemine..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 8b71712a753..97c633ca695 100644 Binary files a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index e19a8b17362..4fd1ea48930 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Asier Iturralde Sarasola , 2018\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 307f1144315..c3498948530 100644 Binary files a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 932049257ff..c170ee9ee22 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hadi F , 2020-2021\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -526,8 +526,8 @@ msgstr "تصویر مناسبی برای سازنده‌ی %s پیدا نشد: % msgid "building [mo]: " msgstr "ساخت پرونده‌ی [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "نوشتن برون‌داد... " @@ -614,16 +614,16 @@ msgstr "%s اضافه شد، %s تغییر کرد، %s حذف شد" msgid "reading sources... " msgstr "خواندن منبع‌ها... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "در انتظار برای ابزارهای کارگر..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "نام مستندات برای نوشتن: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "آماده سازی اسناد" @@ -2962,7 +2962,7 @@ msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "شکست در تحلیل مقدار پیش‌گزیده‌‌ی نشانوند برای %r: %s" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index e706d40978a..bc9f9bbbdf8 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 89c2a4d3572..77516a36162 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 950d4c232d4..6ba819e6110 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -37,7 +37,7 @@ Documentation.addTranslations({ "Search": "Recherche", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche", - "Search finished, found ${resultCount} page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "Recherche termin\u00e9e, ${resultCount} page(s) correspondant \u00e0 la requ\u00eate de recherche ont \u00e9t\u00e9 trouv\u00e9es.", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "Searching": "Recherche en cours", "Searching for multiple words only shows matches that contain\n all words.": "Une recherche sur plusieurs mots ne retourne que les r\u00e9sultats contenant tous les mots.", diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 198bc526dc4..a4cba10fc2c 100644 Binary files a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 1e37714072d..c86d68a8829 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -10,14 +10,14 @@ # cyrille gachot , 2019 # David Georges, 2021 # Larlet David , 2008 -# Denis Bitouzé , 2020-2021 +# Denis Bitouzé , 2020-2022 # fgallaire , 2010 # fgallaire , 2010 # François Poirotte , 2016-2017,2020 # Georg Brandl , 2014 # Hugo Herbelin , 2021 # Jean-Daniel Browne , 2010 -# Jean-François B. , 2017-2019 +# Jean-François B. , 2017-2019,2022 # Julien Palard , 2017 # Julien Malard , 2019 # Kim S. , 2019 @@ -34,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: David Georges, 2021\n" +"Last-Translator: Jean-François B. , 2017-2019,2022\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -316,7 +316,7 @@ msgstr "Nom d'évènement inconnu : %s" #: sphinx/events.py:102 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "Le gestionnaire %r de l'évènement %r a créé une exception." #: sphinx/extension.py:44 #, python-format @@ -347,7 +347,7 @@ msgstr "Analyse lexicale de literal_bloc impossible en \"%s\". Mise en évidence msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "" +msgstr "plusieurs fichiers trouvés pour le document \"%s\" : %r\nUtiliser %r pour la compilation." #: sphinx/project.py:51 msgid "document not readable. Ignored." @@ -441,7 +441,7 @@ msgstr "enumerable_node %r est déjà enregistré" #: sphinx/registry.py:408 #, python-format msgid "math renderer %s is already registered" -msgstr "" +msgstr "le moteur de rendu mathématique %s est déjà enregistré" #: sphinx/registry.py:421 #, python-format @@ -488,12 +488,12 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/roles.py:188 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "numéro PEP %s non valide" #: sphinx/roles.py:222 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "numéro RFC %snon valide" #: sphinx/theming.py:72 #, python-format @@ -528,7 +528,7 @@ msgstr "le fichier %r dans le dossier des thèmes n'est pas une archive zip vali #: sphinx/theming.py:236 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" -msgstr "" +msgstr "sphinx_rtd_theme (< 0.3.0) trouvé. Il ne sera plus disponible à partir de Sphinx-6.0." #: sphinx/theming.py:241 #, python-format @@ -549,8 +549,8 @@ 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:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "Écriture... " @@ -637,16 +637,16 @@ msgstr "%s ajouté(s), %s modifié(s), %s supprimé(s)" msgid "reading sources... " msgstr "Lecture des sources... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "En attente des processus parallélisés..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "Document en préparation" @@ -686,7 +686,7 @@ msgstr "écriture du type MIME du fichier ..." #: sphinx/builders/_epub_base.py:468 msgid "writing META-INF/container.xml file..." -msgstr "" +msgstr "écriture du fichier META-INF/container.xml..." #: sphinx/builders/_epub_base.py:496 msgid "writing content.opf file..." @@ -831,7 +831,7 @@ msgstr "Ancre '%s' non trouvée" #: sphinx/builders/linkcheck.py:553 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "" +msgstr "Échec de la compilation de la regex dans linkcheck_allowed_redirects : %r%s" #: sphinx/builders/manpage.py:30 #, python-format @@ -1094,7 +1094,7 @@ msgstr "le fichier de favicon %r n'existe pas " 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 a été déprécié depuis la v3.5.0. Veuillez utiliser à la place html_permalinks et html_permalinks_icon." #: sphinx/builders/html/__init__.py:1340 #, python-format @@ -1163,7 +1163,7 @@ msgstr "Clé de configuration inconnue : latex_elements[%r]; ignorée." #: sphinx/builders/latex/__init__.py:453 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." -msgstr "" +msgstr "Option de thème inconnue : latex_theme_options[%r], ignoré." #: sphinx/builders/latex/theming.py:83 #, python-format @@ -1251,7 +1251,7 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nGénération de la documentation à partir des fichiers sources.\n\nsphinx-build génère de la documentation à partir des fichiers de SOURCEDIR et la place\ndans OUTPUTDIR. Il recherche 'conf.py' dans SOURCEDIR pour les paramètres de configuration.\nL'outil 'sphinx-quickstart' peut être utilisé pour générer des fichiers modèles,\ny compris 'conf.py'.\n\nsphinx-build peut créer de la documentation dans différents formats. Un format est\nsélectionné en spécifiant le nom du constructeur sur la ligne de commande ; le format par défaut est\nHTML. Les constructeurs peuvent également effectuer d'autres tâches liées au traitement de la documentation.\n\nPar défaut, tout ce qui est obsolète est construit. La sortie pour les fichiers sélectionnés seulement\npeut être construite en spécifiant des noms de fichiers individuels.\n" #: sphinx/cmd/build.py:120 msgid "path to documentation source files" @@ -1524,7 +1524,7 @@ msgid "" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "" +msgstr "Sphinx a la notion de « version » et de « release » pour le\nlogiciel. Chaque version peut avoir plusieurs « releases ». Par exemple, pour\nPython, la version est quelque chose comme 2.5 ou 3.0, tandis que la « release » est\nquelque chose comme 2.5.1 ou 3.0a1. Si vous n'avez pas besoin de cette double structure,\nmettez simplement la même valeur aux deux." #: sphinx/cmd/quickstart.py:256 msgid "Project version" @@ -1795,7 +1795,7 @@ msgstr "Variable de template invalide : %s" #: sphinx/directives/code.py:56 msgid "non-whitespace stripped by dedent" -msgstr "" +msgstr "les espaces non blancs sont supprimés par dedent" #: sphinx/directives/code.py:75 #, python-format @@ -1842,7 +1842,7 @@ msgstr "Spécification de lignes %r : aucune ligne extraite du fichier inclus %r #: sphinx/directives/other.py:102 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "le motif global toctree %r ne correspond à aucun document" #: sphinx/directives/other.py:123 sphinx/environment/adapters/toctree.py:168 #, python-format @@ -1877,17 +1877,17 @@ msgstr "Auteur : " #: sphinx/directives/other.py:246 msgid ".. acks content is not a list" -msgstr "" +msgstr "... le contenu de acks n'est pas une liste" #: sphinx/directives/other.py:271 msgid ".. hlist content is not a list" -msgstr "" +msgstr "... le contenu de hlist n'est pas une liste" #: sphinx/directives/patches.py:109 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." -msgstr "" +msgstr "L'option \":file :\" de la directive csv-table reconnaît désormais un chemin absolu comme un chemin relatif du répertoire source. Veuillez mettre à jour votre document." #: sphinx/domains/__init__.py:389 #, python-format @@ -1899,12 +1899,12 @@ msgstr "%s %s" msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." -msgstr "" +msgstr "Déclaration C dupliquée, également définie à %s:%s.\nLa déclaration est '.. c:%s:: %s'." #: sphinx/domains/c.py:3226 #, python-format msgid "%s (C %s)" -msgstr "" +msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 #: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 @@ -1913,7 +1913,7 @@ msgstr "Paramètres" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7326 msgid "Return values" -msgstr "" +msgstr "Valeurs retournées" #: sphinx/domains/c.py:3353 sphinx/domains/cpp.py:7329 #: sphinx/domains/javascript.py:216 sphinx/domains/python.py:445 @@ -1944,7 +1944,7 @@ msgstr "macro" #: sphinx/domains/c.py:3754 msgid "struct" -msgstr "" +msgstr "structure" #: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 msgid "union" @@ -1964,7 +1964,7 @@ msgstr "type" #: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 msgid "function parameter" -msgstr "" +msgstr "paramètre de fonction" #: sphinx/domains/changeset.py:20 #, python-format @@ -1996,7 +1996,7 @@ msgstr "La citation [%s] n'est pas référencée" msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." -msgstr "" +msgstr "Déclaration C++ dupliquée, également définie à %s:%s.\nLa déclaration est '.. cpp:%s:: %s'." #: sphinx/domains/cpp.py:7081 msgid "Template Parameters" @@ -2156,7 +2156,7 @@ msgstr "%s() (méthode de la classe %s)" #: sphinx/domains/python.py:820 sphinx/domains/python.py:960 #, python-format msgid "%s (%s property)" -msgstr "" +msgstr "%s (propriété %s)" #: sphinx/domains/python.py:822 #, python-format @@ -2338,7 +2338,7 @@ msgstr "format de numfig_format invalide : %s" #: sphinx/domains/std.py:1075 #, python-format msgid "undefined label: %s" -msgstr "lablel non défini: 1%s" +msgstr "label non défini: %s" #: sphinx/domains/std.py:1077 #, python-format @@ -2645,21 +2645,21 @@ msgstr "====================== durées de lecture les plus lentes ============== #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "" +msgstr "le lien %r codé en dur pourrait être remplacé par un extlink (essayez d'utiliser %r à la place)" #: sphinx/ext/extlinks.py:96 #, python-format msgid "" "extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " "all other '%' need to be escaped as '%%'." -msgstr "" +msgstr "extlinks : Sphinx-6.0 exigera que l'URL de base contienne exactement un '%s' et que tous les autres '%' soient échappés en '%%'." #: sphinx/ext/extlinks.py:104 #, python-format msgid "" "extlinks: Sphinx-6.0 will require a caption string to contain exactly one " "'%s' and all other '%' need to be escaped as '%%'." -msgstr "" +msgstr "extlinks : Sphinx-6.0 exigera qu'une chaîne de légende contienne exactement un '%s' et que tous les autres '%' soient échappés comme '%%'." #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" @@ -2803,17 +2803,17 @@ msgstr "(dans %s)" #: sphinx/ext/intersphinx.py:494 #, python-format msgid "inventory for external cross-reference not found: %s" -msgstr "" +msgstr "inventaire pour la référence croisée externe non trouvé : %s" #: sphinx/ext/intersphinx.py:500 #, python-format msgid "role for external cross-reference not found: %s" -msgstr "" +msgstr "rôle pour la référence croisée externe non trouvé : %s" #: sphinx/ext/intersphinx.py:587 #, python-format msgid "external %s:%s reference target not found: %s" -msgstr "" +msgstr "%sexterne :%s cible de référence non trouvée : %s" #: sphinx/ext/intersphinx.py:612 #, python-format @@ -2879,12 +2879,12 @@ msgstr "

Modules pour lesquels le code est disponible

" #: sphinx/ext/autodoc/__init__.py:120 #, python-format msgid "invalid value for member-order option: %s" -msgstr "" +msgstr "valeur invalide pour l'option de l'ordre des membres : %s" #: sphinx/ext/autodoc/__init__.py:128 #, python-format msgid "invalid value for class-doc-from option: %s" -msgstr "" +msgstr "valeur invalide pour l'option class-doc-from : %s" #: sphinx/ext/autodoc/__init__.py:376 #, python-format @@ -2906,7 +2906,7 @@ msgstr "attribut manquant %s dans l'objet %s" msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc : n'a pas réussi à déterminer %s.%s (%r) devait être documenté, l'exception suivante a été levée :\n%s" #: sphinx/ext/autodoc/__init__.py:877 #, python-format @@ -2919,12 +2919,12 @@ msgstr "module à importer pour auto-documenter %r est inconnu (essayer de place #: sphinx/ext/autodoc/__init__.py:921 #, python-format msgid "A mocked object is detected: %r" -msgstr "" +msgstr "Un faux objet a été détecté : %r" #: sphinx/ext/autodoc/__init__.py:940 #, python-format msgid "error while formatting signature for %s: %s" -msgstr "" +msgstr "erreur lors du formatage de la signature pour %s : %s" #: sphinx/ext/autodoc/__init__.py:991 msgid "\"::\" in automodule name doesn't make sense" @@ -2946,7 +2946,7 @@ msgstr "__all__ devrait être une liste de chaînes, pas %r (dans module %s) -- #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" -msgstr "" +msgstr "attribut manquant mentionné dans l'option :members: : module %s, attribut %s" #: sphinx/ext/autodoc/__init__.py:1278 sphinx/ext/autodoc/__init__.py:1355 #: sphinx/ext/autodoc/__init__.py:2763 @@ -2983,17 +2983,17 @@ msgstr "Échec pour obtenir la signature de la méthode pour %s : %s" #: sphinx/ext/autodoc/__init__.py:2382 #, python-format msgid "Invalid __slots__ found on %s. Ignored." -msgstr "" +msgstr "Invalide __slots__ trouvé sur %s. Ignoré." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" -msgstr "" +msgstr "Impossible d'analyser une valeur d'argument par défaut pour %r : %s" #: sphinx/ext/autodoc/type_comment.py:122 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" -msgstr "" +msgstr "Échec de la mise à jour de la signature pour %r : paramètre non trouvé : %s" #: sphinx/ext/autodoc/type_comment.py:125 #, python-format @@ -3014,7 +3014,7 @@ msgstr "autosummary : fichier stub non trouvé %r. Vérifiez votre paramètre au #: sphinx/ext/autosummary/__init__.py:268 msgid "A captioned autosummary requires :toctree: option. ignored." -msgstr "" +msgstr "Un résumé automatique sous-titré nécessite l'option :toctree:. Ignoré." #: sphinx/ext/autosummary/__init__.py:319 #, python-format @@ -3022,7 +3022,7 @@ msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "autosummary : échec de l'importation de %s.\nIndications possibles :\n%s" #: sphinx/ext/autosummary/__init__.py:333 #, python-format @@ -3069,7 +3069,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[autosummary] échec de l'importation de %s.\nIndications possibles :\n%s" #: sphinx/ext/autosummary/generate.py:574 msgid "" @@ -3114,7 +3114,7 @@ msgstr "membres importés du document (défaut : %(default)s)" msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "documenter exactement les membres dans l'attribut __all__ du module. (par défaut : %(default)s)" #: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 msgid "Keyword Arguments" @@ -3138,7 +3138,7 @@ msgstr "Autres paramètres" #: sphinx/ext/napoleon/docstring.py:754 msgid "Receives" -msgstr "" +msgstr "Reçoit" #: sphinx/ext/napoleon/docstring.py:758 msgid "References" @@ -3155,12 +3155,12 @@ msgstr "Yields" #: sphinx/ext/napoleon/docstring.py:964 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "" +msgstr "ensemble de valeurs invalides (accolade fermante manquante) : %s" #: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "" +msgstr "ensemble de valeurs invalides (accolade ouvrante manquante) :%s" #: sphinx/ext/napoleon/docstring.py:978 #, python-format @@ -3447,7 +3447,7 @@ msgstr "Cacher les résultats de la recherche" #: sphinx/themes/basic/static/searchtools.js:112 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "" +msgstr "Recherche terminée, ${resultCount} page(s) correspondant à la requête de recherche ont été trouvées." #: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" @@ -3517,7 +3517,7 @@ msgstr "ncohérences de références de terme dans le message traduit. Original msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "" +msgstr "Impossible de déterminer le texte de remplacement pour le renvoi. Il peut s'agir d'un bogue." #: sphinx/transforms/post_transforms/__init__.py:150 #, python-format @@ -3527,12 +3527,12 @@ msgstr "plus d'une cible trouvée pour la référence %r de type 'any' : pourrai #: sphinx/transforms/post_transforms/__init__.py:198 #, python-format msgid "%s:%s reference target not found: %s" -msgstr "" +msgstr "%s:%s cible de référence non trouvée : %s" #: sphinx/transforms/post_transforms/__init__.py:201 #, python-format msgid "%r reference target not found: %s" -msgstr "" +msgstr "%r cible de référence non trouvée : %s" #: sphinx/transforms/post_transforms/images.py:75 #, python-format @@ -3567,7 +3567,7 @@ msgstr "échoué" msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "Problème dans le domaine %s : le champ est censé utiliser le rôle '%s', mais ce rôle ne figure pas dans le domaine." #: sphinx/util/docutils.py:256 #, python-format @@ -3638,7 +3638,7 @@ msgstr "Lien permanent vers ce terme" #: sphinx/writers/html.py:428 sphinx/writers/html.py:433 #: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 msgid "Permalink to this heading" -msgstr "" +msgstr "Lien permanent vers cette rubrique" #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index e7741e08ee0..26b9e807930 100644 Binary files a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 8383d155082..78f182b1e16 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 2519917fa33..f87a3646bd9 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 7ce9fe4436c..9bc02e2d964 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2011\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index ce69c2aea31..900aeeafd0f 100644 Binary files a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index ccd0c6f751b..96afd9a8710 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Sumanjali Damarla , 2020\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -526,8 +526,8 @@ msgstr "%s निर्माता के लिए योग्य चित msgid "building [mo]: " msgstr "निर्माणाधीन [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "परिणाम लिखा जा रहा है..." @@ -614,16 +614,16 @@ msgstr "%s जोड़ा गया, %s बदला गया, %s हटाया msgid "reading sources... " msgstr "स्रोतों को पढ़ा जा रहा है..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "कर्मियों की प्रतीक्षा हो रही है" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 6c891fa05a5..acfc3a256a4 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 8d5ccd58d44..a1e4df09ac9 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index defd808661a..e34ae5be174 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 0b7c55697ca..27c14e7403e 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Mario Šarić, 2015-2020\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 4e8b5abc971..94bb063e672 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 2d7fc8cabeb..c3e77dbd36f 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -528,8 +528,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -616,16 +616,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2964,7 +2964,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 85077fab2a0..af85d57b624 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 032969cb9c0..33cdae6c5af 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: oon arfiandwi , 2019-2020\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -527,8 +527,8 @@ msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s" msgid "building [mo]: " msgstr "membangun [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "menulis keluaran... " @@ -615,16 +615,16 @@ msgstr "%s ditambahkan, %s diubah, %s dihapus" msgid "reading sources... " msgstr "membaca sumber... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "menunggu workers..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "menyiapkan dokumen" @@ -2963,7 +2963,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index cf3a5d96754..16c6038ccde 100644 Binary files a/sphinx/locale/is/LC_MESSAGES/sphinx.mo and b/sphinx/locale/is/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 1805375a342..47a30b0693e 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tryggvi Kalman , 2021\n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index ee6db12cd60..66c42456edd 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index d1426894bb5..e3d3e2b2173 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: +# Antonari Palmio, 2022 # Denis Cappellin , 2018 # Paolo Cavallini , 2013-2017 # Roland Puntaier , 2013 @@ -12,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Denis Cappellin , 2018\n" +"Last-Translator: Antonari Palmio, 2022\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,32 +27,32 @@ msgstr "" #: sphinx/application.py:149 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Impossibile trovare la cartella sorgente ( %s )" #: sphinx/application.py:153 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "" +msgstr "La cartella di output (%s) non è una cartella" #: sphinx/application.py:157 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "La cartella sorgente e la cartella di destinazione non possono essere identiche" #: sphinx/application.py:188 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sto eseguendo Sphinx v%s" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "Questo progetto necessita almeno di Sphinx v%s per cui non può essere creato con la versione attuale." #: sphinx/application.py:229 msgid "making output directory" -msgstr "" +msgstr "sto creando la cartella di output" #: sphinx/application.py:234 sphinx/registry.py:427 #, python-format @@ -68,7 +69,7 @@ msgstr "" #: sphinx/application.py:265 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "caricamento traduzioni [%s]... " #: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" @@ -527,8 +528,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -615,16 +616,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2963,7 +2964,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 675b7e9ab17..5f0e129beca 100644 Binary files a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 1a8e4115ee2..52f773cbb78 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: KaKkouo, 2021\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -539,8 +539,8 @@ msgstr "%sビルダー向けの画像形式が見つかりません: %s" msgid "building [mo]: " msgstr "ビルド中 [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "出力中..." @@ -627,16 +627,16 @@ msgstr "%s 件追加, %s 件更新, %s 件削除" msgid "reading sources... " msgstr "ソースを読み込み中..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "ワーカーの終了を待っています..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "ドキュメントの出力準備中" @@ -2975,7 +2975,7 @@ msgstr "%s のメソッド・シグネチャの取得に失敗しました: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "無効な __slots__ が %s で見つかりました。無視されました。" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "%r の既定の引数値の解析に失敗しました: %s。" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 1e581755211..c341ffb2e9d 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 5cf60925dce..0bd74824424 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H , 2019-2022\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -524,8 +524,8 @@ msgstr "%s 빌더에 적합한 이미지를 찾을 수 없음: %s" msgid "building [mo]: " msgstr "빌드 중 [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "출력을 쓰는 중… " @@ -612,16 +612,16 @@ msgstr "%s 개 추가됨, %s 개 변경됨, %s 개 제거됨" msgid "reading sources... " msgstr "원본을 읽는 중… " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "작업자를 기다리는 중…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "기록할 문서 이름: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "문서 준비 중" @@ -2960,7 +2960,7 @@ msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "%r에 대한 기본 인수 값을 해석하지 못했습니다: %s" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 18f5b573f81..e2531451f26 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index d837012e73a..4ba10077983 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: DALIUS DOBRAVOLSKAS , 2010\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index e5457c59faa..756b10e5d98 100644 Binary files a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index a32c8dbb9f5..bce711dc225 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index b02d96baba5..8b3a5e900e0 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 8b956d0cfc7..3fafe8434bd 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski , 2013\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index acbed2ffd4e..79f32968fe9 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 6f3d3b2e4b7..e9eea18e680 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 394c4546016..934448a92db 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 601ffe539d5..abe9bad56dc 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 52a0e8ab2c3..9608fd4e16d 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 8daad6922bb..e86e09cb1d9 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -529,8 +529,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -617,16 +617,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2965,7 +2965,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 61850c227a2..d3186b81b9e 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 7ec50767c2d..7e3a72064c7 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: m_aciek , 2017-2020\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "budowanie [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "pisanie wyjścia..." @@ -614,16 +614,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 fd05318031e..4d150524ea8 100644 Binary files a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 9aea4c642d5..93c27c17809 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 2f2745eb367..2d0bfa7d8ba 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 6cb2b8feab3..14f98a3789b 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Rafael Fontenelle , 2019-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -528,8 +528,8 @@ msgstr "uma imagem adequada para o compilador %s não encontrada: %s" msgid "building [mo]: " msgstr "compilando [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "escrevendo saída… " @@ -616,16 +616,16 @@ msgstr "%s adicionado(s), %s alterado(s), %s removido(s)" msgid "reading sources... " msgstr "lendo fontes… " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "aguardando por workers…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames para escrever: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "preparando documentos" @@ -2964,7 +2964,7 @@ msgstr "Falha ao obter uma assinatura de método para %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Falha ao analisar um valor de argumento padrão para %r: %s" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 98893a9c1c5..242219fd305 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 4dc6688de66..f253f7e317c 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 44c1daf99a9..42242a5197b 100644 Binary files a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index d41fbdc325d..d424d7d5631 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Razvan Stefanescu , 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index f40c5dfdb2f..85057af4b04 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 49ce075d1f4..962e5d35de7 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Il'ya , 2022\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -529,8 +529,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -617,16 +617,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2965,7 +2965,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo index 3cf9916ba08..5744f3dffda 100644 Binary files a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po index ca47fe888f8..f6b0b704acb 100644 --- a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (Russia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru_RU/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 42f70f9baf6..4712c684e3d 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 7d9186d8849..ff507106271 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa , 2013\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 974a2f7cbff..8940570cdf6 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 04dc9294f49..4c59543ac34 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Slavko , 2013-2019,2021\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -525,8 +525,8 @@ msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s" msgid "building [mo]: " msgstr "zostavenie [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "zápis výstupu…" @@ -613,16 +613,16 @@ msgstr "%s pridané, %s zmenené, %s odstránené" msgid "reading sources... " msgstr "čítanie zdrojov…" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "čakanie na procesy…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "príprava dokumentov" @@ -2961,7 +2961,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Zlyhalo spracovanie predvolenej hodnoty argumentu %r: %s" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 604dd2b2c64..a0d98544d29 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index f072eb93d2d..48c68e6f0b4 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 89ccb69c9cf..8b033995d60 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 5.0.0\n" +"Project-Id-Version: Sphinx 5.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:18+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2975,7 +2975,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 1a427aa8b21..23420282dea 100644 Binary files a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 8cbfa0246d9..eae829fc748 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Besnik Bleta , 2021-2022\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -523,8 +523,8 @@ msgstr "s’u gjet figurë e përshtatshme për montuesin %s: %s" msgid "building [mo]: " msgstr "po montohet [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "po shkruhet përfundim… " @@ -611,16 +611,16 @@ msgstr "%s të shtuar, %s të ndryshuar, %s të hequr" msgid "reading sources... " msgstr "po lexohen burime… " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "po pritet për workers…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "emra dokumentesh për shkrim: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "po përgatiten dokumente" @@ -2959,7 +2959,7 @@ msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "S’u arrit të përtypej një vlerë parazgjedhje argumenti për %r: %s" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index e96e90a2f9b..0db003b70fe 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index e7c1ad05ca5..92ec394d26d 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vladimir Milovanović , 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "припремање докумената" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 0b7616adb0f..c43873a824d 100644 Binary files a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 53c047af7fd..7b2a85bd216 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 1b2a6bcfd0f..6529f20192e 100644 Binary files a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index adcf298f125..7a96a8b0b0b 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index d954b5f41f8..6cc19459086 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 67613284532..51b3c12085f 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 5219b64a8b6..17ed6a36cb4 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index f17ca516515..b5fdf047f14 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index ff066267f64..e6ee0298eb7 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index e7b3ec98ca8..811609dca52 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index b99fd7a5905..b3cf3133345 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 76806067123..4ab3427bb04 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -526,8 +526,8 @@ msgstr "%s oluşturucu için uygun bir resim bulunamadı: %s" msgid "building [mo]: " msgstr "[mo] oluşturuluyor: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "çıktı yazılıyor..." @@ -614,16 +614,16 @@ msgstr "%s eklendi, %s değiştirildi, %s kaldırıldı" msgid "reading sources... " msgstr "kaynaklar okunuyor..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "çalışanlar için bekleniyor..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "yazmak için belge adları: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "belgeler hazırlanıyor" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index c86893014d1..6d8b4964f4d 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index b63581a2389..744b0fe18c6 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Petro Sasnyk , 2009\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index e9dc6a4d65a..c53bbc9fa53 100644 Binary files a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index c9a95bea1dd..3d9e61d5f47 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 bfcb4fd906c..b056c54d6ee 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 39d801cfbae..f0708a4a070 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hoat Le Van , 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 174709302d4..10415a9e481 100644 Binary files a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo and b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 05d7c293ba4..5c5aa5a2bcf 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index f06bfd92f1f..8a04bbb87c4 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 099b9a3fe3a..366666ded64 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: JY3, 2022\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -539,8 +539,8 @@ msgstr "没有找到适合 %s 构建器的图像:%s" msgid "building [mo]: " msgstr "构建 [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "写入输出... " @@ -627,16 +627,16 @@ msgstr "已添加 %s,%s 已更改,%s 已移除" msgid "reading sources... " msgstr "阅读源... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "等待工作线程……" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "写入文档:%s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "准备文件" @@ -2975,7 +2975,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index f3b45137fd2..73dea5702b9 100644 Binary files a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 57522976434..48df962cf41 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, 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 0474b848370..5ca4f4d8724 100644 Binary files a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index e0a60ce4c83..a6d4942988a 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 94a38e880f3..d3b26c90c99 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 2633047fc73..5e116a2246a 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Steven Hsu , 2021\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -530,8 +530,8 @@ msgstr "未找到對於 %s builder 適用的圖片:%s" msgid "building [mo]: " msgstr "建立 [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "編寫輸出..." @@ -618,16 +618,16 @@ msgstr "%s 已新增, %s 已變更, %s 已移除" msgid "reading sources... " msgstr "正在讀取來源..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "正在等待工作者..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "待寫入的 docname: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "正在準備文件" @@ -2966,7 +2966,7 @@ msgstr "無法取得一個 method 簽名給 %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "無法為 %r 剖析一個預設引數: %s" diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index cd65b94b966..b5a49a9d118 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -13,8 +13,8 @@ from importlib import import_module from os import path from time import mktime, strptime -from typing import (IO, TYPE_CHECKING, Any, Callable, Dict, Iterable, Iterator, List, Optional, - Pattern, Set, Tuple, Type) +from typing import (IO, TYPE_CHECKING, Any, Callable, Dict, Generator, Iterable, List, + Optional, Pattern, Set, Tuple, Type, TypeVar) from urllib.parse import parse_qsl, quote_plus, urlencode, urlsplit, urlunsplit from sphinx.errors import ExtensionError, FiletypeNotFoundError, SphinxParallelError @@ -445,8 +445,12 @@ def display_chunk(chunk: Any) -> str: return str(chunk) -def old_status_iterator(iterable: Iterable, summary: str, color: str = "darkgreen", - stringify_func: Callable[[Any], str] = display_chunk) -> Iterator: +T = TypeVar('T') + + +def old_status_iterator(iterable: Iterable[T], summary: str, color: str = "darkgreen", + stringify_func: Callable[[Any], str] = display_chunk + ) -> Generator[T, None, None]: l = 0 for item in iterable: if l == 0: @@ -460,9 +464,10 @@ def old_status_iterator(iterable: Iterable, summary: str, color: str = "darkgree # new version with progress info -def status_iterator(iterable: Iterable, summary: str, color: str = "darkgreen", +def status_iterator(iterable: Iterable[T], summary: str, color: str = "darkgreen", length: int = 0, verbosity: int = 0, - stringify_func: Callable[[Any], str] = display_chunk) -> Iterable: + stringify_func: Callable[[Any], str] = display_chunk + ) -> Generator[T, None, None]: if length == 0: yield from old_status_iterator(iterable, summary, color, stringify_func) return diff --git a/tests/roots/test-ext-autodoc/target/private.py b/tests/roots/test-ext-autodoc/target/private.py index 02d174863f9..e46344818a7 100644 --- a/tests/roots/test-ext-autodoc/target/private.py +++ b/tests/roots/test-ext-autodoc/target/private.py @@ -13,3 +13,15 @@ def _public_function(name): PRIVATE_CONSTANT = None #: :meta private: _PUBLIC_CONSTANT = None #: :meta public: + + +class Foo: + #: A public class attribute whose name starts with an underscore. + #: + #: :meta public: + _public_attribute = 47 + + #: A private class attribute whose name does not start with an underscore. + #: + #: :meta private: + private_attribute = 11 diff --git a/tests/roots/test-ext-autodoc/target/typehints.py b/tests/roots/test-ext-autodoc/target/typehints.py index 6b0d6142c1c..4acfc891125 100644 --- a/tests/roots/test-ext-autodoc/target/typehints.py +++ b/tests/roots/test-ext-autodoc/target/typehints.py @@ -94,8 +94,10 @@ def missing_attr(c, class _ClassWithDocumentedInit: """Class docstring.""" - def __init__(self, x: int) -> None: + def __init__(self, x: int, *args: int, **kwargs: int) -> None: """Init docstring. :param x: Some integer + :param args: Some integer + :param kwargs: Some integer """ diff --git a/tests/roots/test-ext-napoleon/conf.py b/tests/roots/test-ext-napoleon/conf.py new file mode 100644 index 00000000000..502fb5a9de9 --- /dev/null +++ b/tests/roots/test-ext-napoleon/conf.py @@ -0,0 +1,5 @@ +import os +import sys + +sys.path.insert(0, os.path.abspath('.')) +extensions = ['sphinx.ext.napoleon'] diff --git a/tests/roots/test-ext-napoleon/index.rst b/tests/roots/test-ext-napoleon/index.rst new file mode 100644 index 00000000000..4c013b75b2e --- /dev/null +++ b/tests/roots/test-ext-napoleon/index.rst @@ -0,0 +1,6 @@ +test-ext-napoleon +================= + +.. toctree:: + + typehints diff --git a/tests/roots/test-ext-napoleon/mypackage/__init__.py b/tests/roots/test-ext-napoleon/mypackage/__init__.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/roots/test-ext-napoleon/mypackage/typehints.py b/tests/roots/test-ext-napoleon/mypackage/typehints.py new file mode 100644 index 00000000000..526b78e40bb --- /dev/null +++ b/tests/roots/test-ext-napoleon/mypackage/typehints.py @@ -0,0 +1,11 @@ +def hello(x: int, *args: int, **kwargs: int) -> None: + """ + Parameters + ---------- + x + X + *args + Additional arguments. + **kwargs + Extra arguments. + """ diff --git a/tests/roots/test-ext-napoleon/typehints.rst b/tests/roots/test-ext-napoleon/typehints.rst new file mode 100644 index 00000000000..43c61f6d240 --- /dev/null +++ b/tests/roots/test-ext-napoleon/typehints.rst @@ -0,0 +1,5 @@ +typehints +========= + +.. automodule:: mypackage.typehints + :members: diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 61f595c23ce..014067e8459 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -999,7 +999,9 @@ def test_info_field_list(app): text = (".. py:module:: example\n" ".. py:class:: Class\n" "\n" + " :meta blah: this meta-field must not show up in the toc-tree\n" " :param str name: blah blah\n" + " :meta another meta field:\n" " :param age: blah blah\n" " :type age: int\n" " :param items: blah blah\n" diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index fdb82b1b928..0011f450b5a 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1034,22 +1034,27 @@ def test_autodoc_typehints_description_with_documented_init(app): ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) --\n' + ' * **x** (*int*) --\n' '\n' - ' Return type:\n' - ' None\n' + ' * **args** (*int*) --\n' + '\n' + ' * **kwargs** (*int*) --\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' '\n' ' Return type:\n' ' None\n' == context) @@ -1066,16 +1071,20 @@ def test_autodoc_typehints_description_with_documented_init_no_undoc(app): ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' == context) + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' == context) @pytest.mark.sphinx('text', testroot='ext-autodoc', @@ -1092,16 +1101,20 @@ def test_autodoc_typehints_description_with_documented_init_no_undoc_doc_rtype(a ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' == context) + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' == context) @pytest.mark.sphinx('text', testroot='ext-autodoc', diff --git a/tests/test_ext_autodoc_private_members.py b/tests/test_ext_autodoc_private_members.py index bdb9478215c..bf707bf51aa 100644 --- a/tests/test_ext_autodoc_private_members.py +++ b/tests/test_ext_autodoc_private_members.py @@ -102,3 +102,57 @@ def test_private_members(app): ' :meta public:', '', ] + + +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_private_attributes(app): + app.config.autoclass_content = 'class' + options = {"members": None} + actual = do_autodoc(app, 'class', 'target.private.Foo', options) + assert list(actual) == [ + '', + '.. py:class:: Foo()', + ' :module: target.private', + '', + '', + ' .. py:attribute:: Foo._public_attribute', + ' :module: target.private', + ' :value: 47', + '', + ' A public class attribute whose name starts with an underscore.', + '', + ' :meta public:', + '', + ] + + +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_private_attributes_and_private_members(app): + app.config.autoclass_content = 'class' + options = {"members": None, + "private-members": None} + actual = do_autodoc(app, 'class', 'target.private.Foo', options) + assert list(actual) == [ + '', + '.. py:class:: Foo()', + ' :module: target.private', + '', + '', + ' .. py:attribute:: Foo._public_attribute', + ' :module: target.private', + ' :value: 47', + '', + ' A public class attribute whose name starts with an underscore.', + '', + ' :meta public:', + '', + '', + ' .. py:attribute:: Foo.private_attribute', + ' :module: target.private', + ' :value: 11', + '', + ' A private class attribute whose name does not start with an underscore.', + '', + ' :meta private:', + '', + ] diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index bdf50f516db..6db8979320a 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -2593,3 +2593,48 @@ def test_pep526_annotations(self): """ print(actual) assert expected == actual + + +@pytest.mark.sphinx('text', testroot='ext-napoleon', + confoverrides={'autodoc_typehints': 'description', + 'autodoc_typehints_description_target': 'all'}) +def test_napoleon_and_autodoc_typehints_description_all(app, status, warning): + app.build() + content = (app.outdir / 'typehints.txt').read_text(encoding='utf-8') + assert content == ( + 'typehints\n' + '*********\n' + '\n' + 'mypackage.typehints.hello(x, *args, **kwargs)\n' + '\n' + ' Parameters:\n' + ' * **x** (*int*) -- X\n' + '\n' + ' * ***args** (*int*) -- Additional arguments.\n' + '\n' + ' * ****kwargs** (*int*) -- Extra arguments.\n' + '\n' + ' Return type:\n' + ' None\n' + ) + + +@pytest.mark.sphinx('text', testroot='ext-napoleon', + confoverrides={'autodoc_typehints': 'description', + 'autodoc_typehints_description_target': 'documented_params'}) +def test_napoleon_and_autodoc_typehints_description_documented_params(app, status, warning): + app.build() + content = (app.outdir / 'typehints.txt').read_text(encoding='utf-8') + assert content == ( + 'typehints\n' + '*********\n' + '\n' + 'mypackage.typehints.hello(x, *args, **kwargs)\n' + '\n' + ' Parameters:\n' + ' * **x** (*int*) -- X\n' + '\n' + ' * ***args** (*int*) -- Additional arguments.\n' + '\n' + ' * ****kwargs** (*int*) -- Extra arguments.\n' + )