mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch '5.0.x' into 9096_fix_progress_bar_on_parallel_build
This commit is contained in:
commit
7586f9c845
32
.github/workflows/coverage.yml
vendored
Normal file
32
.github/workflows/coverage.yml
vendored
Normal 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
|
29
.github/workflows/main.yml
vendored
29
.github/workflows/main.yml
vendored
@ -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
|
||||
|
26
CHANGES
26
CHANGES
@ -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)
|
||||
====================================
|
||||
|
||||
@ -39,6 +18,11 @@ 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
|
||||
|
||||
Testing
|
||||
|
@ -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__))
|
||||
|
||||
|
@ -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',
|
||||
|
@ -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):
|
||||
|
@ -115,7 +115,15 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str],
|
||||
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)
|
||||
@ -167,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.
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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。"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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"
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -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 ""
|
||||
|
Binary file not shown.
@ -10,7 +10,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-05-08 00:17+0000\n"
|
||||
"POT-Creation-Date: 2022-05-22 00:18+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Slavko <linux@slavino.sk>, 2013-2019,2021\n"
|
||||
"Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n"
|
||||
@ -525,8 +525,8 @@ msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s"
|
||||
msgid "building [mo]: "
|
||||
msgstr "zostavenie [mo]: "
|
||||
|
||||
#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542
|
||||
#: sphinx/builders/__init__.py:568
|
||||
#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541
|
||||
#: sphinx/builders/__init__.py:567
|
||||
msgid "writing output... "
|
||||
msgstr "zápis výstupu…"
|
||||
|
||||
@ -613,16 +613,16 @@ msgstr "%s pridané, %s zmenené, %s odstránené"
|
||||
msgid "reading sources... "
|
||||
msgstr "čítanie zdrojov…"
|
||||
|
||||
#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578
|
||||
#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577
|
||||
msgid "waiting for workers..."
|
||||
msgstr "čakanie na procesy…"
|
||||
|
||||
#: sphinx/builders/__init__.py:520
|
||||
#: sphinx/builders/__init__.py:519
|
||||
#, python-format
|
||||
msgid "docnames to write: %s"
|
||||
msgstr "mená dokumentov na zapísanie: %s"
|
||||
|
||||
#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145
|
||||
#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145
|
||||
msgid "preparing documents"
|
||||
msgstr "príprava dokumentov"
|
||||
|
||||
@ -2961,7 +2961,7 @@ msgstr ""
|
||||
msgid "Invalid __slots__ found on %s. Ignored."
|
||||
msgstr "Neplatné __slots__ nájdené v %s. Ignorované."
|
||||
|
||||
#: sphinx/ext/autodoc/preserve_defaults.py:105
|
||||
#: sphinx/ext/autodoc/preserve_defaults.py:116
|
||||
#, python-format
|
||||
msgid "Failed to parse a default argument value for %r: %s"
|
||||
msgstr "Zlyhalo spracovanie predvolenej hodnoty argumentu %r: %s"
|
||||
|
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user