Merge branch '5.0.x' into 5.x

This commit is contained in:
Takeshi KOMIYA 2022-05-22 18:40:34 +09:00
commit b4eca324b0
146 changed files with 485 additions and 360 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

32
CHANGES
View File

@ -1,24 +1,3 @@
Release 5.1.0 (in development)
==============================
Dependencies
------------
Incompatible changes
--------------------
Deprecated
----------
Features added
--------------
Bugs fixed
----------
Testing
--------
Release 5.0.0 beta2 (in development)
====================================
@ -37,6 +16,17 @@ 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
Testing
--------

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.1.0+'
__released__ = '5.1.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.1.0' # used when Sphinx builds its own docs
#:
#: .. versionadded:: 1.2
#: Before version 1.2, check the string ``sphinx.__version__``.
version_info = (5, 1, 0, 'beta', 0)
version_info = (5, 0, 0, 'beta', 1)
package_dir = path.abspath(path.dirname(__file__))

View File

@ -328,6 +328,15 @@ class Sphinx:
self.builder.compile_update_catalogs()
self.builder.build_update()
self.events.emit('build-finished', None)
except Exception as err:
# delete the saved env to force a fresh build next time
envfile = path.join(self.doctreedir, ENV_PICKLE_FILENAME)
if path.isfile(envfile):
os.unlink(envfile)
self.events.emit('build-finished', err)
raise
if self._warncount and self.keep_going:
self.statuscode = 1
@ -355,15 +364,7 @@ class Sphinx:
'outdir': relpath(self.outdir),
'project': self.config.project
})
except Exception as err:
# delete the saved env to force a fresh build next time
envfile = path.join(self.doctreedir, ENV_PICKLE_FILENAME)
if path.isfile(envfile):
os.unlink(envfile)
self.events.emit('build-finished', err)
raise
else:
self.events.emit('build-finished', None)
self.builder.cleanup()
# ---- general extensibility interface -------------------------------------

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,6 +59,9 @@ 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":
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(
@ -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
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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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

@ -34,7 +34,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>, 2017-2019,2022\n"
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n"
@ -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"
@ -2985,7 +2985,7 @@ msgstr "Échec pour obtenir la signature de la méthode pour %s : %s"
msgid "Invalid __slots__ found on %s. Ignored."
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 "Impossible d'analyser une valeur d'argument par défaut pour %r : %s"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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: Antonari Palmio, 2022\n"
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\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

@ -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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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-15 00:24+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"

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