mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch '5.x' into encoding-warnings
This commit is contained in:
commit
a0f5f240ea
6
.github/workflows/transifex.yml
vendored
6
.github/workflows/transifex.yml
vendored
@ -21,7 +21,7 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: pip install -U babel jinja2 transifex-client
|
||||
- name: Extract translations from source code
|
||||
run: python setup.py extract_messages
|
||||
run: python utils/babel_runner.py extract
|
||||
- name: Push translations to transifex.com
|
||||
run: cd sphinx/locale && tx push -s --no-interactive --parallel
|
||||
env:
|
||||
@ -42,13 +42,13 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: pip install -U babel jinja2 transifex-client
|
||||
- name: Extract translations from source code
|
||||
run: python setup.py extract_messages
|
||||
run: python utils/babel_runner.py extract
|
||||
- name: Pull translations to transifex.com
|
||||
run: cd sphinx/locale && tx pull -a -f --no-interactive --parallel
|
||||
env:
|
||||
TX_TOKEN: ${{ secrets.TX_TOKEN }}
|
||||
- name: Compile message catalogs
|
||||
run: python setup.py compile_catalog
|
||||
run: python utils/babel_runner.py compile
|
||||
- name: Create Pull Request
|
||||
uses: peter-evans/create-pull-request@v3
|
||||
with:
|
||||
|
2
CHANGES
2
CHANGES
@ -86,6 +86,8 @@ Bugs fixed
|
||||
bulding texinfo document
|
||||
* #10000: LaTeX: glossary terms with common definition are rendered with
|
||||
too much vertical whitespace
|
||||
* #10188: LaTeX: alternating multiply referred footnotes produce a ``?`` in
|
||||
pdf output
|
||||
* #10318: ``:prepend:`` option of :rst:dir:`literalinclude` directive does not
|
||||
work with ``:dedent:`` option
|
||||
|
||||
|
@ -148,9 +148,9 @@ def linkify_issues_in_changelog(app, docname, source):
|
||||
# this path trickery is needed because this script can
|
||||
# be invoked with different working directories:
|
||||
# * running make in docs/
|
||||
# * running python setup.py build_sphinx in the repo root dir
|
||||
# * running tox -e docs in the repo root dir
|
||||
|
||||
with open(changelog_path) as f:
|
||||
with open(changelog_path, encoding="utf-8") as f:
|
||||
changelog = f.read()
|
||||
|
||||
def linkify(match):
|
||||
|
@ -252,17 +252,19 @@ locales. The translations are kept as gettext ``.po`` files translated from the
|
||||
master template :file:`sphinx/locale/sphinx.pot`.
|
||||
|
||||
Sphinx uses `Babel <https://babel.pocoo.org/en/latest/>`_ to extract messages
|
||||
and maintain the catalog files. It is integrated in ``setup.py``:
|
||||
and maintain the catalog files. The ``utils`` directory contains a helper
|
||||
script, ``babel_runner.py``.
|
||||
|
||||
* Use ``python setup.py extract_messages`` to update the ``.pot`` template.
|
||||
* Use ``python setup.py update_catalog`` to update all existing language
|
||||
* Use ``python babel_runner.py extract`` to update the ``.pot`` template.
|
||||
* Use ``python babel_runner.py update`` to update all existing language
|
||||
catalogs in ``sphinx/locale/*/LC_MESSAGES`` with the current messages in the
|
||||
template file.
|
||||
* Use ``python setup.py compile_catalog`` to compile the ``.po`` files to binary
|
||||
* Use ``python babel_runner.py compile`` to compile the ``.po`` files to binary
|
||||
``.mo`` files and ``.js`` files.
|
||||
|
||||
When an updated ``.po`` file is submitted, run compile_catalog to commit both
|
||||
the source and the compiled catalogs.
|
||||
When an updated ``.po`` file is submitted, run
|
||||
``python babel_runner.py compile`` to commit both the source and the compiled
|
||||
catalogs.
|
||||
|
||||
When a new locale is submitted, add a new directory with the ISO 639-1 language
|
||||
identifier and put ``sphinx.po`` in there. Don't forget to update the possible
|
||||
@ -273,9 +275,9 @@ The Sphinx core messages can also be translated on `Transifex
|
||||
which is provided by the ``transifex_client`` Python package, can be used to
|
||||
pull translations in ``.po`` format from Transifex. To do this, go to
|
||||
``sphinx/locale`` and then run ``tx pull -f -l LANG`` where ``LANG`` is an
|
||||
existing language identifier. It is good practice to run ``python setup.py
|
||||
update_catalog`` afterwards to make sure the ``.po`` file has the canonical
|
||||
Babel formatting.
|
||||
existing language identifier. It is good practice to run
|
||||
``python babel_runner.py update`` afterwards to make sure the ``.po`` file has the
|
||||
canonical Babel formatting.
|
||||
|
||||
|
||||
Debugging tips
|
||||
|
17
setup.cfg
17
setup.cfg
@ -9,23 +9,6 @@ tag_date = true
|
||||
release = egg_info -Db ''
|
||||
upload = upload --sign --identity=36580288
|
||||
|
||||
[build_sphinx]
|
||||
warning-is-error = 1
|
||||
|
||||
[extract_messages]
|
||||
mapping_file = babel.cfg
|
||||
output_file = sphinx/locale/sphinx.pot
|
||||
keywords = _ __ l_ lazy_gettext
|
||||
|
||||
[update_catalog]
|
||||
input_file = sphinx/locale/sphinx.pot
|
||||
domain = sphinx
|
||||
output_dir = sphinx/locale/
|
||||
|
||||
[compile_catalog]
|
||||
domain = sphinx
|
||||
directory = sphinx/locale/
|
||||
|
||||
[flake8]
|
||||
max-line-length = 95
|
||||
ignore = E116,E241,E251,E741,W504,I101
|
||||
|
117
setup.py
117
setup.py
@ -1,6 +1,4 @@
|
||||
import os
|
||||
import sys
|
||||
from io import StringIO
|
||||
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
@ -57,120 +55,6 @@ extras_require = {
|
||||
],
|
||||
}
|
||||
|
||||
# Provide a "compile_catalog" command that also creates the translated
|
||||
# JavaScript files if Babel is available.
|
||||
|
||||
cmdclass = {}
|
||||
|
||||
|
||||
class Tee:
|
||||
def __init__(self, stream):
|
||||
self.stream = stream
|
||||
self.buffer = StringIO()
|
||||
|
||||
def write(self, s):
|
||||
self.stream.write(s)
|
||||
self.buffer.write(s)
|
||||
|
||||
def flush(self):
|
||||
self.stream.flush()
|
||||
|
||||
|
||||
try:
|
||||
from json import dump
|
||||
|
||||
from babel.messages.frontend import compile_catalog
|
||||
from babel.messages.pofile import read_po
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
class compile_catalog_plusjs(compile_catalog):
|
||||
"""
|
||||
An extended command that writes all message strings that occur in
|
||||
JavaScript files to a JavaScript file along with the .mo file.
|
||||
|
||||
Unfortunately, babel's setup command isn't built very extensible, so
|
||||
most of the run() code is duplicated here.
|
||||
"""
|
||||
|
||||
def run(self):
|
||||
try:
|
||||
sys.stderr = Tee(sys.stderr)
|
||||
compile_catalog.run(self)
|
||||
finally:
|
||||
if sys.stderr.buffer.getvalue():
|
||||
print("Compiling failed.")
|
||||
sys.exit(1)
|
||||
|
||||
if isinstance(self.domain, list):
|
||||
for domain in self.domain:
|
||||
self._run_domain_js(domain)
|
||||
else:
|
||||
self._run_domain_js(self.domain)
|
||||
|
||||
def _run_domain_js(self, domain):
|
||||
po_files = []
|
||||
js_files = []
|
||||
|
||||
if not self.input_file:
|
||||
if self.locale:
|
||||
po_files.append((self.locale,
|
||||
os.path.join(self.directory, self.locale,
|
||||
'LC_MESSAGES',
|
||||
domain + '.po')))
|
||||
js_files.append(os.path.join(self.directory, self.locale,
|
||||
'LC_MESSAGES',
|
||||
domain + '.js'))
|
||||
else:
|
||||
for locale in os.listdir(self.directory):
|
||||
po_file = os.path.join(self.directory, locale,
|
||||
'LC_MESSAGES',
|
||||
domain + '.po')
|
||||
if os.path.exists(po_file):
|
||||
po_files.append((locale, po_file))
|
||||
js_files.append(os.path.join(self.directory, locale,
|
||||
'LC_MESSAGES',
|
||||
domain + '.js'))
|
||||
else:
|
||||
po_files.append((self.locale, self.input_file))
|
||||
if self.output_file:
|
||||
js_files.append(self.output_file)
|
||||
else:
|
||||
js_files.append(os.path.join(self.directory, self.locale,
|
||||
'LC_MESSAGES',
|
||||
domain + '.js'))
|
||||
|
||||
for js_file, (locale, po_file) in zip(js_files, po_files):
|
||||
with open(po_file, encoding='utf8') as infile:
|
||||
catalog = read_po(infile, locale)
|
||||
|
||||
if catalog.fuzzy and not self.use_fuzzy:
|
||||
continue
|
||||
|
||||
self.log.info('writing JavaScript strings in catalog %r to %r',
|
||||
po_file, js_file)
|
||||
|
||||
jscatalog = {}
|
||||
for message in catalog:
|
||||
if any(x[0].endswith(('.js', '.js_t', '.html'))
|
||||
for x in message.locations):
|
||||
msgid = message.id
|
||||
if isinstance(msgid, (list, tuple)):
|
||||
msgid = msgid[0]
|
||||
jscatalog[msgid] = message.string
|
||||
|
||||
with open(js_file, 'wt', encoding='utf8') as outfile:
|
||||
outfile.write('Documentation.addTranslations(')
|
||||
dump({
|
||||
'messages': jscatalog,
|
||||
'plural_expr': catalog.plural_expr,
|
||||
'locale': str(catalog.locale)
|
||||
}, outfile, sort_keys=True, indent=4)
|
||||
outfile.write(');')
|
||||
|
||||
cmdclass['compile_catalog'] = compile_catalog_plusjs
|
||||
|
||||
|
||||
setup(
|
||||
name='Sphinx',
|
||||
version=sphinx.__version__,
|
||||
@ -246,5 +130,4 @@ setup(
|
||||
python_requires=">=3.6",
|
||||
install_requires=install_requires,
|
||||
extras_require=extras_require,
|
||||
cmdclass=cmdclass,
|
||||
)
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr "C API পরিবর্তন"
|
||||
msgid "Other changes"
|
||||
msgstr "অন্যান্য পরিবর্তন"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "অনুসন্ধানের ম্যাচগুলো লুকান"
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "পাদটীকা"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr "Canvis a la API de C"
|
||||
msgid "Other changes"
|
||||
msgstr "Altres canvis"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Oculta Resultats de Cerca"
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr "Změny API"
|
||||
msgid "Other changes"
|
||||
msgstr "Ostatní změny"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Skrýt výsledky vyhledávání"
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Poznámky pod čarou"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr "Newidiadau i'r C-API"
|
||||
msgid "Other changes"
|
||||
msgstr "Newidiadau arall"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Cuddio Canlyniadau Chwilio"
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Troednodiadau"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2062,7 +2062,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3423,7 +3423,7 @@ msgstr "Ændringer i C-API"
|
||||
msgid "Other changes"
|
||||
msgstr "Andre ændringer"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Skjul søgeresultater"
|
||||
|
||||
@ -3666,17 +3666,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Fodnoter"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2062,7 +2062,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3423,7 +3423,7 @@ msgstr "C API-Änderungen"
|
||||
msgid "Other changes"
|
||||
msgstr "Andere Änderungen"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Suchergebnisse ausblenden"
|
||||
|
||||
@ -3666,17 +3666,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Fußnoten"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2061,7 +2061,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη εμφάνιση στο %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "Ανέγκυρο math_eqref_format: %r"
|
||||
@ -3422,7 +3422,7 @@ msgstr "Αλλαγές στο API της C"
|
||||
msgid "Other changes"
|
||||
msgstr "Άλλες αλλαγές"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων"
|
||||
|
||||
@ -3665,17 +3665,17 @@ msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκε
|
||||
msgid "Footnotes"
|
||||
msgstr "Σημειώσεις υποσέλιδου"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "τόσο η επιλογή για tabularcolumns όσο και για :widths: δίνονται. Η επιλογή :widths: θα αγνοηθεί."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θα αγνοηθεί."
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2065,7 +2065,7 @@ msgstr "duplicada %s descripción de %s, otra %s en %s"
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "No válido math_eqref_format: %r"
|
||||
@ -3426,7 +3426,7 @@ msgstr "Cambios en la API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Otros cambios"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Ocultar coincidencias de la búsqueda"
|
||||
|
||||
@ -3669,17 +3669,17 @@ msgstr "no se encontró el nodo de título en la sección, tema, tabla, adverten
|
||||
msgid "Footnotes"
|
||||
msgstr "Notas a pie de página"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "ambas columnas tabulares y la opción :widths: se dan. La opción :widths: se ignora."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "la unidad de dimensión %s no es válida. Ignorado."
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "tipo de entrada de índice desconocido %s encontrado"
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2062,7 +2062,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "võrrandil %s on topeltsilt, teine instants on %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "Vigane math_eqref_format: %r"
|
||||
@ -3423,7 +3423,7 @@ msgstr "C API muutused"
|
||||
msgid "Other changes"
|
||||
msgstr "Ülejäänud muutused"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Varja otsingu tulemused"
|
||||
|
||||
@ -3666,17 +3666,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Joonealused märkused"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr "C API aldaketak"
|
||||
msgid "Other changes"
|
||||
msgstr "Beste aldaketak"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Bilaketa bat-etortzeak ezkutatu"
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Oin-oharrak"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2062,7 +2062,7 @@ msgstr "توضیح %s تکراری از %s، مورد دیگر%s در %s قرا
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "بر چسب معادله ی %s تکرار است، مورد دیگر در %s قرار دارد"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "قالب مرجع معادلهی ریاضی (math_eqref_format) نامعتبر: %r"
|
||||
@ -3423,7 +3423,7 @@ msgstr "C API تغییرات"
|
||||
msgid "Other changes"
|
||||
msgstr "دگر تغییرات"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "عدم نمایش نتایج یافت شده"
|
||||
|
||||
@ -3666,17 +3666,17 @@ msgstr "به بست عنوانی برخورد که در قسمت، موضوع،
|
||||
msgid "Footnotes"
|
||||
msgstr "پانویس ها"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "هر دو مقدار tabularcolumns و :widths: داده شده، بنابراین :widths: حذف می شود."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "ابعاد واحد %sنامعتبر است و نادیده گرفته شد."
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد"
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Piilota löydetyt"
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 00:18+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: David Georges, 2021\n"
|
||||
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n"
|
||||
@ -2085,7 +2085,7 @@ msgstr "description de %s dupliquée pour%s; l'autre %s se trouve dans %s"
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "math_eqref_format invalide : %r"
|
||||
@ -3446,7 +3446,7 @@ msgstr "Modifications de l'API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Autres modifications"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Cacher les résultats de la recherche"
|
||||
|
||||
@ -3689,17 +3689,17 @@ msgstr "le titre de node rencontré n'est apparenté à aucun parmi section, top
|
||||
msgid "Footnotes"
|
||||
msgstr "Notes de bas de page"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "options tabularcolumns et :widths: simultanément présentes. :widths: sera ignoré."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "%s est invalide comme unité de dimension. Ignoré."
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "le type inconnu d’entrée d’index %s a été trouvé"
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr "שינויים אחרים"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "הסתר תוצאות חיפוש"
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "הערות שוליים"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2062,7 +2062,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "समीकरण का प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है "
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "अमान्य math_eqref_format: %r"
|
||||
@ -3423,7 +3423,7 @@ msgstr "सी ऐ.पी.आई. परिवर्तन"
|
||||
msgid "Other changes"
|
||||
msgstr "अन्य परिवर्तन"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "खोजे गए जोड़े छिपाएं"
|
||||
|
||||
@ -3666,17 +3666,17 @@ msgstr "पाया गया शीर्ष बिंदु किसी भ
|
||||
msgid "Footnotes"
|
||||
msgstr "पाद टिप्पणियां"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "दोनों तालिका-स्तंभ और :चौड़ाई: विकल्प दिए गए हैं. :चौड़ाई: मान की उपेक्षा की जाएगी."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "परिमाण मात्रक %s अमान्य है. उपेक्षा की जाएगी."
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr "C API promjene"
|
||||
msgid "Other changes"
|
||||
msgstr "Ostale promjene"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Sakrij rezultate pretrage"
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Fusnote"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr ""
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2064,7 +2064,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3425,7 +3425,7 @@ msgstr "C API változások"
|
||||
msgid "Other changes"
|
||||
msgstr "Egyéb változások"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Keresési Találatok Elrejtése"
|
||||
|
||||
@ -3668,17 +3668,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Lábjegyzetek"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr ""
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2063,7 +2063,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "duplikasi label persamaan %s, misalnya di %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "Math_eqref_format tidak valid: %r"
|
||||
@ -3424,7 +3424,7 @@ msgstr "Perubahan API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Perubahan lain"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Sembunyikan Hasil Pencarian"
|
||||
|
||||
@ -3667,17 +3667,17 @@ msgstr "simpul judul tidak ditemui dalam bagian, topik, tabel, peringatan atau s
|
||||
msgid "Footnotes"
|
||||
msgstr "Catatan kaki"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "opsi tabularcolumns dan :widths: opsi diberikan bersamaan. :widths: diabaikan."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "unit dimensi %s tidak valid. Diabaikan"
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "entri indeks tidak diketahui ditemukan tipe %s"
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Fela leitarniðurstöður"
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr ""
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 00:18+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: Denis Cappellin <denis@cappell.in>, 2018\n"
|
||||
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n"
|
||||
@ -2063,7 +2063,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3424,7 +3424,7 @@ msgstr "Modifiche nelle API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Altre modifiche"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Nascondi i risultati della ricerca"
|
||||
|
||||
@ -3667,17 +3667,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Note a piè di pagina"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2075,7 +2075,7 @@ msgstr "%s の記述 %s はすでに %s で %s が使われています"
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "数式 %s のラベルはすでに %s で使われています"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "無効な math_eqref_format: %r"
|
||||
@ -3436,7 +3436,7 @@ msgstr "C API に関する変更"
|
||||
msgid "Other changes"
|
||||
msgstr "その他の変更"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "検索結果を隠す"
|
||||
|
||||
@ -3679,17 +3679,17 @@ msgstr "セクション、トピック、表、訓戒またはサイドバーに
|
||||
msgid "Footnotes"
|
||||
msgstr "注記"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "tabularcolumns と :widths: オプションの両方が設定されています。:widths: は無視されます。"
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "ディメンション単位 %s が無効です。無視されます。"
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "不明なインデックスエントリタイプ %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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr "중복된 %s 설명 (%s에 대한), 다른 항목은 %s (%s)에 있음"
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "중복 레이블의 수식 %s, 다른 인스턴스는 %s에 있음"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "잘못된 math_eqref_format: %r"
|
||||
@ -3421,7 +3421,7 @@ msgstr "C API 변경 사항"
|
||||
msgid "Other changes"
|
||||
msgstr "다른 변경 사항"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "검색 일치 숨기기"
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목
|
||||
msgid "Footnotes"
|
||||
msgstr "각주"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "tabularcolumns와 :widths: 옵션이 모두 설정되었습니다. :widths:는 무시됩니다."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다."
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨"
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr "C API pakeitimai"
|
||||
msgid "Other changes"
|
||||
msgstr "Kiti pakeitimai"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Paslėpti paieškos rezultatus"
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Išnašos"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr "Izmaiņas iekš C API"
|
||||
msgid "Other changes"
|
||||
msgstr "Citas izmaiņas"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Paslēpt atlases vārdus"
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Vēres"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr "Endringer i C API"
|
||||
msgid "Other changes"
|
||||
msgstr "Andre endringer"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Skjul søkeresultat"
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Fotnoter"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr "C API का परिवर्तनहरु "
|
||||
msgid "Other changes"
|
||||
msgstr "अरु परिवर्तनहरु "
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "खोजेको नतिजाहरु लुकाउनुहोस्"
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "फूट्नोट्स"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2065,7 +2065,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "duplicaatlabel van formule %s, andere in %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3426,7 +3426,7 @@ msgstr "Veranderingen in de C-API"
|
||||
msgid "Other changes"
|
||||
msgstr "Andere veranderingen"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Zoekresultaten verbergen"
|
||||
|
||||
@ -3669,17 +3669,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Voetnoten"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2062,7 +2062,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "Nieprawidłowy math_eqref_format: %r"
|
||||
@ -3423,7 +3423,7 @@ msgstr "Zmiany w C API"
|
||||
msgid "Other changes"
|
||||
msgstr "Inne zmiany"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Ukryj wyniki wyszukiwania"
|
||||
|
||||
@ -3666,17 +3666,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Przypisy"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "%s"
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr ""
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2064,7 +2064,7 @@ msgstr "descrição duplicada de %s de %s, outro %s em %s"
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "rótulo duplicado da equação %s, outra instância em %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "math_eqref_format inválido: %r"
|
||||
@ -3425,7 +3425,7 @@ msgstr "Alterações na API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Outras alterações"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Esconder Resultados da Busca"
|
||||
|
||||
@ -3668,17 +3668,17 @@ msgstr "nó de título encontrado não na section, topic, table, admonition ou s
|
||||
msgid "Footnotes"
|
||||
msgstr "Notas de rodapé"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "tabularcolumns e opção :widths: foram fornecidas. :widths: foi ignorada."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr "a unidade de dimensão %s é inválida. Ignorada."
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr "tipo desconhecido de entrada de índice %s encontrado"
|
||||
|
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr "Alterações na API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Outras alterações"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Esconder Resultados da Pesquisa"
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Notas de rodapé"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2060,7 +2060,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3421,7 +3421,7 @@ msgstr "Schimbări în API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Alte schimbări"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Ascunde Rezultatele Căutării"
|
||||
|
||||
@ -3664,17 +3664,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Note de subsol"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2065,7 +2065,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "повторяющаяся метка уравнения %s, также используется в %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3426,7 +3426,7 @@ msgstr "Изменения в API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Другие изменения"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Снять выделение"
|
||||
|
||||
@ -3669,17 +3669,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Сноски"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2059,7 +2059,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3420,7 +3420,7 @@ msgstr "C API වෙනස්කම්"
|
||||
msgid "Other changes"
|
||||
msgstr "වෙනත් වෙනස්කම්"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3663,17 +3663,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 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"
|
||||
@ -2061,7 +2061,7 @@ msgstr "duplicitný %s popis %s, ďalší výskyt%s v %s"
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s"
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr "neplatný math_eqref_format: %r"
|
||||
@ -3422,7 +3422,7 @@ msgstr "Zmeny API C"
|
||||
msgid "Other changes"
|
||||
msgstr "Ostatné zmeny"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Skryť výsledky hľadania"
|
||||
|
||||
@ -3665,17 +3665,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Poznámky pod čiarou"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr "sú zadané obe, tabularcolumns aj voľba :widths:. :widths: je ignorované."
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
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-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 00:18+0000\n"
|
||||
"PO-Revision-Date: 2013-04-02 08:44+0000\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n"
|
||||
@ -2058,7 +2058,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3419,7 +3419,7 @@ msgstr "C API spremembe"
|
||||
msgid "Other changes"
|
||||
msgstr "Ostale spremembe"
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr "Skrij resultate iskanja"
|
||||
|
||||
@ -3662,17 +3662,17 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr "Opombe"
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid ""
|
||||
"both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr ""
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Sphinx 5.0.0\n"
|
||||
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
|
||||
"POT-Creation-Date: 2022-04-10 00:16+0000\n"
|
||||
"POT-Creation-Date: 2022-04-17 00:18+0000\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -2076,7 +2076,7 @@ msgstr ""
|
||||
msgid "duplicate label of equation %s, other instance in %s"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2027
|
||||
#: sphinx/domains/math.py:111 sphinx/writers/latex.py:2023
|
||||
#, python-format
|
||||
msgid "Invalid math_eqref_format: %r"
|
||||
msgstr ""
|
||||
@ -3439,7 +3439,7 @@ msgstr ""
|
||||
msgid "Other changes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/themes/basic/static/doctools.js:155
|
||||
#: sphinx/themes/basic/static/doctools.js:153
|
||||
msgid "Hide Search Matches"
|
||||
msgstr ""
|
||||
|
||||
@ -3679,16 +3679,16 @@ msgstr ""
|
||||
msgid "Footnotes"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:863
|
||||
#: sphinx/writers/latex.py:861
|
||||
msgid "both tabularcolumns and :widths: option are given. :widths: is ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1194
|
||||
#: sphinx/writers/latex.py:1192
|
||||
#, python-format
|
||||
msgid "dimension unit %s is invalid. Ignored."
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/writers/latex.py:1507
|
||||
#: sphinx/writers/latex.py:1505
|
||||
#, python-format
|
||||
msgid "unknown index entry type %s found"
|
||||
msgstr ""
|
||||
|
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