Merge branch '5.0.x' into 10110_exitcode_for_exc_during_builder-finished

This commit is contained in:
Takeshi KOMIYA 2022-05-22 17:06:49 +09:00 committed by GitHub
commit 57dea60fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
146 changed files with 724 additions and 581 deletions

32
.github/workflows/coverage.yml vendored Normal file
View File

@ -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

View File

@ -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

View File

@ -16,6 +16,14 @@ 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"``
* #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

View File

@ -21,8 +21,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated",
warnings.filterwarnings('ignore', 'The frontend.Option class .*',
DeprecationWarning, module='docutils.frontend')
__version__ = '5.0.0+'
__released__ = '5.0.0' # used when Sphinx builds its own docs
__version__ = '5.0.0b1'
__released__ = '5.0.0b1' # used when Sphinx builds its own docs
#: Version info for better programmatic use.
#:
@ -32,7 +32,7 @@ __released__ = '5.0.0' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (5, 0, 0, 'beta', 2)
version_info = (5, 0, 0, 'beta', 1)
package_dir = path.abspath(path.dirname(__file__))

View File

@ -25,6 +25,7 @@ from sphinx.util.i18n import CatalogInfo, CatalogRepository, docname_to_domain
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 @@ class Builder:
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 @@ class Builder:
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 @@ class Builder:
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"""

View File

@ -56,6 +56,7 @@ MEDIA_TYPES = {
'.xhtml': 'application/xhtml+xml',
'.css': 'text/css',
'.png': 'image/png',
'.webp': 'image/webp',
'.gif': 'image/gif',
'.svg': 'image/svg+xml',
'.jpg': 'image/jpeg',

View File

@ -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):

View File

@ -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.

View File

@ -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 <Alhadab@hotmail.co.uk>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 <EMAIL@ADDRESS>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>, 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 ""

View File

@ -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 <julien.malard@mail.mcgill.ca>, 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 ""

View File

@ -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. <vilibald.wanca@gmail.com>, 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 ""

View File

@ -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 <palmer.geraint@googlemail.com>, 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 ""

View File

@ -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 <i.tkomiya@gmail.com>, 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 ""

View File

@ -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. <jfbu@free.fr>, 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 ""

View File

@ -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 <i.tkomiya@gmail.com>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 <hidaruma@outlook.jp>, 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 ""

View File

@ -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 <i.tkomiya@gmail.com>, 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 ""

View File

@ -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 <okul@linux.ee>, 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 ""

View File

@ -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 <asier.iturralde@gmail.com>, 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 ""

View File

@ -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 <h_adi_f@yahoo.com>, 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"

View File

@ -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 <EMAIL@ADDRESS>, 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 ""

View File

@ -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.",

View File

@ -10,14 +10,14 @@
# cyrille gachot <cyrille.gachot@smile.fr>, 2019
# David Georges, 2021
# Larlet David <david@larlet.fr>, 2008
# Denis Bitouzé <dbitouze@wanadoo.fr>, 2020-2021
# Denis Bitouzé <dbitouze@wanadoo.fr>, 2020-2022
# fgallaire <fgallaire@gmail.com>, 2010
# fgallaire <fgallaire@gmail.com>, 2010
# François Poirotte <clicky@erebot.net>, 2016-2017,2020
# Georg Brandl <g.brandl@gmx.net>, 2014
# Hugo Herbelin <Hugo.Herbelin@inria.fr>, 2021
# Jean-Daniel Browne <jeandaniel.browne@gmail.com>, 2010
# Jean-François B. <jfbu@free.fr>, 2017-2019
# Jean-François B. <jfbu@free.fr>, 2017-2019,2022
# Julien Palard <github@mandark.fr>, 2017
# Julien Malard <julien.malard@mail.mcgill.ca>, 2019
# Kim S. <kim.sylvestre@gmail.com>, 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. <jfbu@free.fr>, 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 "<h1>Modules pour lesquels le code est disponible</h1>"
#: 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"

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 <EMAIL@ADDRESS>, 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 ""

View File

@ -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 <damarlasumanjali@gmail.com>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 ""

View File

@ -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 ""

View File

@ -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 <oon.arfiandwi@gmail.com>, 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 ""

View File

@ -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 <tkj3@hi.is>, 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 ""

View File

@ -3,6 +3,7 @@
# This file is distributed under the same license as the Sphinx project.
#
# Translators:
# Antonari Palmio, 2022
# Denis Cappellin <denis@cappell.in>, 2018
# Paolo Cavallini <cavallini@faunalia.it>, 2013-2017
# Roland Puntaier <roland.puntaier@chello.at>, 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 <denis@cappell.in>, 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 ""

View File

@ -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。"

View File

@ -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 <dev@theYT.net>, 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"

View File

@ -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 <DALIUS@SANDBOX.LT>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 <vvangelovski@gmail.com>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 <i.tkomiya@gmail.com>, 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 ""

View File

@ -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 <i.tkomiya@gmail.com>, 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 ""

View File

@ -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 <maciej.olko@gmail.com>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 <rffontenelle@gmail.com>, 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"

View File

@ -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 <i.tkomiya@gmail.com>, 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 ""

View File

@ -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 <razvan.stefanescu@gmail.com>, 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 ""

View File

@ -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 <ilya@marshal.dev>, 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 ""

View File

@ -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 <EMAIL@ADDRESS>\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 ""

View File

@ -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 <callkalpa@gmail.com>, 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 ""

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