mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Merge branch '4.0.x' into 4.x
This commit is contained in:
commit
71e732014f
18
CHANGES
18
CHANGES
@ -45,7 +45,7 @@ Bugs fixed
|
||||
Testing
|
||||
--------
|
||||
|
||||
Release 4.0.1 (in development)
|
||||
Release 4.0.2 (in development)
|
||||
==============================
|
||||
|
||||
Dependencies
|
||||
@ -66,6 +66,22 @@ Bugs fixed
|
||||
Testing
|
||||
--------
|
||||
|
||||
Release 4.0.1 (released May 11, 2021)
|
||||
=====================================
|
||||
|
||||
Bugs fixed
|
||||
----------
|
||||
|
||||
* #9189: autodoc: crashed when ValueError is raised on generating signature
|
||||
from a property of the class
|
||||
* #9188: autosummary: warning is emitted if list value is set to
|
||||
autosummary_generate
|
||||
* #8380: html search: tags for search result are broken
|
||||
* #9198: i18n: Babel emits errors when running compile_catalog
|
||||
* #9205: py domain: The :canonical: option causes "more than one target for
|
||||
cross-reference" warning
|
||||
* #9201: websupport: UndefinedError is raised: 'css_tag' is undefined
|
||||
|
||||
Release 4.0.0 (released May 09, 2021)
|
||||
=====================================
|
||||
|
||||
|
@ -1000,16 +1000,6 @@ class StandaloneHTMLBuilder(Builder):
|
||||
return uri
|
||||
ctx['pathto'] = pathto
|
||||
|
||||
def css_tag(css: Stylesheet) -> str:
|
||||
attrs = []
|
||||
for key in sorted(css.attributes):
|
||||
value = css.attributes[key]
|
||||
if value is not None:
|
||||
attrs.append('%s="%s"' % (key, html.escape(value, True)))
|
||||
attrs.append('href="%s"' % pathto(css.filename, resource=True))
|
||||
return '<link %s />' % ' '.join(attrs)
|
||||
ctx['css_tag'] = css_tag
|
||||
|
||||
def hasdoc(name: str) -> bool:
|
||||
if name in self.env.all_docs:
|
||||
return True
|
||||
@ -1140,6 +1130,26 @@ def convert_html_js_files(app: Sphinx, config: Config) -> None:
|
||||
config.html_js_files = html_js_files # type: ignore
|
||||
|
||||
|
||||
def setup_css_tag_helper(app: Sphinx, pagename: str, templatename: str,
|
||||
context: Dict, doctree: Node) -> None:
|
||||
"""Set up css_tag() template helper.
|
||||
|
||||
.. note:: This set up function is added to keep compatibility with webhelper.
|
||||
"""
|
||||
pathto = context.get('pathto')
|
||||
|
||||
def css_tag(css: Stylesheet) -> str:
|
||||
attrs = []
|
||||
for key in sorted(css.attributes):
|
||||
value = css.attributes[key]
|
||||
if value is not None:
|
||||
attrs.append('%s="%s"' % (key, html.escape(value, True)))
|
||||
attrs.append('href="%s"' % pathto(css.filename, resource=True))
|
||||
return '<link %s />' % ' '.join(attrs)
|
||||
|
||||
context['css_tag'] = css_tag
|
||||
|
||||
|
||||
def setup_js_tag_helper(app: Sphinx, pagename: str, templatename: str,
|
||||
context: Dict, doctree: Node) -> None:
|
||||
"""Set up js_tag() template helper.
|
||||
@ -1347,6 +1357,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
|
||||
app.connect('config-inited', validate_html_logo, priority=800)
|
||||
app.connect('config-inited', validate_html_favicon, priority=800)
|
||||
app.connect('builder-inited', validate_math_renderer)
|
||||
app.connect('html-page-context', setup_css_tag_helper)
|
||||
app.connect('html-page-context', setup_js_tag_helper)
|
||||
app.connect('html-page-context', setup_resource_paths)
|
||||
|
||||
|
@ -1269,9 +1269,13 @@ class PythonDomain(Domain):
|
||||
if not matches:
|
||||
return None
|
||||
elif len(matches) > 1:
|
||||
logger.warning(__('more than one target found for cross-reference %r: %s'),
|
||||
target, ', '.join(match[0] for match in matches),
|
||||
type='ref', subtype='python', location=node)
|
||||
canonicals = [m for m in matches if not m[1].aliased]
|
||||
if len(canonicals) == 1:
|
||||
matches = canonicals
|
||||
else:
|
||||
logger.warning(__('more than one target found for cross-reference %r: %s'),
|
||||
target, ', '.join(match[0] for match in matches),
|
||||
type='ref', subtype='python', location=node)
|
||||
name, obj = matches[0]
|
||||
|
||||
if obj[2] == 'module':
|
||||
|
@ -2592,7 +2592,7 @@ class PropertyDocumenter(DocstringStripSignatureMixin, ClassLevelDocumenter): #
|
||||
self.fullname, exc)
|
||||
return None
|
||||
except ValueError:
|
||||
raise
|
||||
return None
|
||||
|
||||
|
||||
class NewTypeAttributeDocumenter(AttributeDocumenter):
|
||||
|
@ -775,7 +775,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
|
||||
app.connect('builder-inited', process_generate_options)
|
||||
app.add_config_value('autosummary_context', {}, True)
|
||||
app.add_config_value('autosummary_filename_map', {}, 'html')
|
||||
app.add_config_value('autosummary_generate', True, True, [bool])
|
||||
app.add_config_value('autosummary_generate', True, True, [bool, list])
|
||||
app.add_config_value('autosummary_generate_overwrite', True, False)
|
||||
app.add_config_value('autosummary_mock_imports',
|
||||
lambda config: config.autodoc_mock_imports, 'env')
|
||||
|
@ -11,12 +11,12 @@ Documentation.addTranslations({
|
||||
"Changes in Version %(version)s — %(docstitle)s": "",
|
||||
"Collapse sidebar": "",
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Contents": "\u0627\u0644\u0645\u062d\u062a\u0648\u0649",
|
||||
"Copyright": "\u0627\u0644\u062d\u0642\u0648\u0642",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
"General Index": "\u0627\u0644\u0641\u0647\u0631\u0633 \u0627\u0644\u0639\u0627\u0645",
|
||||
"Global Module Index": "",
|
||||
"Go": "",
|
||||
"Hide Search Matches": "",
|
||||
@ -25,7 +25,7 @@ Documentation.addTranslations({
|
||||
"Index pages by letter": "",
|
||||
"Indices and tables:": "",
|
||||
"Last updated on %(last_updated)s.": "",
|
||||
"Library changes": "",
|
||||
"Library changes": "\u062a\u062c\u0647\u064a\u0632 \u0627\u0644\u0628\u062d\u062b",
|
||||
"Navigation": "",
|
||||
"Next topic": "\u0627\u0644\u0645\u0648\u0636\u0648\u0639 \u0627\u0644\u062a\u0627\u0644\u064a",
|
||||
"Other changes": "",
|
||||
@ -35,29 +35,29 @@ Documentation.addTranslations({
|
||||
"Please activate JavaScript to enable the search\n functionality.": "",
|
||||
"Preparing search...": "",
|
||||
"Previous topic": "\u0627\u0644\u0645\u0648\u0636\u0648\u0639 \u0627\u0644\u0633\u0627\u0628\u0642",
|
||||
"Quick search": "",
|
||||
"Search": "",
|
||||
"Search Page": "",
|
||||
"Search Results": "",
|
||||
"Quick search": "\u0627\u0644\u0628\u062d\u062b \u0627\u0644\u0633\u0631\u064a\u0639",
|
||||
"Search": "\u0628\u062d\u062b",
|
||||
"Search Page": "\u0635\u0641\u062d\u0629 \u0627\u0644\u0628\u062d\u062b",
|
||||
"Search Results": "\u0646\u062a\u0627\u0626\u062c \u0627\u0644\u0628\u062d\u062b",
|
||||
"Search finished, found %s page(s) matching the search query.": "",
|
||||
"Search within %(docstitle)s": "\u0627\u0644\u0628\u062d\u062b \u0636\u0645\u0646 %(docstitle)s",
|
||||
"Searching": "",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Show Source": "",
|
||||
"Table of Contents": "",
|
||||
"This Page": "",
|
||||
"Welcome! This is": "",
|
||||
"Show Source": "\u0625\u0638\u0647\u0627\u0631 \u0627\u0644\u0645\u0635\u062f\u0631",
|
||||
"Table of Contents": "\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u062d\u062a\u0648\u064a\u0627\u062a",
|
||||
"This Page": "\u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629",
|
||||
"Welcome! This is": "\u0623\u0647\u0644\u0627 \u0648\u0633\u0647\u0644\u0627 \u0647\u0630\u0627",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "",
|
||||
"all functions, classes, terms": "",
|
||||
"can be huge": "",
|
||||
"last updated": "",
|
||||
"lists all sections and subsections": "",
|
||||
"next chapter": "\u0627\u0644\u0641\u0635\u0644 \u0627\u0644\u062a\u0627\u0644\u064a",
|
||||
"previous chapter": "",
|
||||
"previous chapter": "\u0627\u0644\u0642\u0633\u0645 \u0627\u0644\u0633\u0627\u0628\u0642",
|
||||
"quick access to all modules": "",
|
||||
"search": "",
|
||||
"search": "\u0628\u062d\u062b",
|
||||
"search this documentation": "",
|
||||
"the documentation for": ""
|
||||
"the documentation for": "\u0627\u0644\u062a\u0648\u062b\u064a\u0642 \u0644"
|
||||
},
|
||||
"plural_expr": "n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5"
|
||||
});
|
Binary file not shown.
@ -641,7 +641,7 @@ msgstr ""
|
||||
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
|
||||
#, python-format
|
||||
msgid "cannot copy image file %r: %s"
|
||||
msgstr "لا تستطيع نسخة ملف صورة %s:"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/_epub_base.py:435
|
||||
#, python-format
|
||||
@ -909,7 +909,7 @@ msgstr "صفحة الHTML موجودة في %(outdir)s"
|
||||
#: sphinx/builders/html/__init__.py:372
|
||||
#, python-format
|
||||
msgid "Failed to read build info file: %r"
|
||||
msgstr "فشل في قراءة معلومات ملف البناء"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
|
||||
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99
|
||||
|
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u09aa\u09c2\u09b0\u09cd\u09a3\u09be\u0999\u09cd\u0997 \u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0",
|
||||
"Contents": "",
|
||||
"Copyright": "\u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u09a6\u09bf\u09df\u09c7 \u09a4\u09c8\u09b0\u09c0\u0964",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "\u098f\u0995 \u09aa\u09be\u09a4\u09be\u09df \u09b8\u09ae\u09cd\u09aa\u09c2\u09b0\u09cd\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8",
|
||||
"General Index": "\u09b8\u09be\u09a7\u09be\u09b0\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Taula de Contingut Completa",
|
||||
"Contents": "",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "\u00cdndex complet en una p\u00e0gina",
|
||||
"General Index": "\u00cdndex General",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "Konojel cholwuj",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Celkov\u00fd obsah",
|
||||
"Contents": "Obsah",
|
||||
"Copyright": "Ve\u0161ker\u00e1 pr\u00e1va vyhrazena",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Rozbalit bo\u010dn\u00ed li\u0161tu",
|
||||
"Full index on one page": "Cel\u00fd rejst\u0159\u00edk na jedn\u00e9 str\u00e1nce",
|
||||
"General Index": "Obecn\u00fd rejst\u0159\u00edk",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Tabl Cynnwys Llawn",
|
||||
"Contents": "Cynnwys",
|
||||
"Copyright": "Hawlfraint",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u8c37wyd gan ddefnyddio <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Ehangu'r bar ochr",
|
||||
"Full index on one page": "Indecs llawn ar un tudalen",
|
||||
"General Index": "Indecs cyffredinol",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Fuldst\u00e6ndig indholdsfortegnelse",
|
||||
"Contents": "Indhold",
|
||||
"Copyright": "Ophavsret",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Udfold sidebj\u00e6lke",
|
||||
"Full index on one page": "Fuldt indeks p\u00e5 \u00e9n side",
|
||||
"General Index": "Generelt indeks",
|
||||
@ -42,7 +42,7 @@ Documentation.addTranslations({
|
||||
"Search finished, found %s page(s) matching the search query.": "S\u00f8gning f\u00e6rdig, fandt %s sider der matcher s\u00f8geforesp\u00f8rgslen.",
|
||||
"Search within %(docstitle)s": "S\u00f8g i %(docstitle)s",
|
||||
"Searching": "S\u00f8ger",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "Bem\u00e6rk: Hvis du s\u00f8ger efter flere ord, vises kun resultater der indeholder alle ordene.",
|
||||
"Show Source": "Vis kilde",
|
||||
"Table of Contents": "",
|
||||
"This Page": "Denne side",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Vollst\u00e4ndiges Inhaltsverzeichnis",
|
||||
"Contents": "Inhalt",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erstellt.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Seitenleiste ausklappen",
|
||||
"Full index on one page": "Gesamtes Stichwortverzeichnis auf einer Seite",
|
||||
"General Index": "Stichwortverzeichnis",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd",
|
||||
"Contents": "\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03c4\u03bf <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c0\u03bb\u03b1\u03ca\u03bd\u03ae\u03c2 \u03bc\u03c0\u03ac\u03c1\u03b1\u03c2",
|
||||
"Full index on one page": "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u03c3\u03b5 \u03bc\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1",
|
||||
"General Index": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf\u03bf",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "A\u016dtora rajto",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "Indico universala",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u00cdndice de contenidos completo",
|
||||
"Contents": "Contenidos",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Expandir barra lateral",
|
||||
"Full index on one page": "\u00cdndice completo en una p\u00e1gina",
|
||||
"General Index": "\u00cdndice General",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "T\u00e4ielik sisukorratabel",
|
||||
"Contents": "Sisukord",
|
||||
"Copyright": "Autori\u00f5igus",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: %(sphinx_version)s).",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "N\u00e4ita k\u00fclgriba",
|
||||
"Full index on one page": "T\u00e4isindeks \u00fchel lehel",
|
||||
"General Index": "\u00dcldindeks",
|
||||
@ -47,7 +47,7 @@ Documentation.addTranslations({
|
||||
"Table of Contents": "Sisukorratabel",
|
||||
"This Page": "K\u00e4esolev leht",
|
||||
"Welcome! This is": "Tervitused! See on",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid.",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valinud piisavalt kategooriaid.",
|
||||
"all functions, classes, terms": "k\u00f5ik funktsioonid, klassid ja terminid",
|
||||
"can be huge": "v\u00f5ib olla v\u00e4ga suur",
|
||||
"last updated": "viimati uuendatud",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Eduki taula osoa",
|
||||
"Contents": "Edukiak",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erabiliz sortutakoa.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Alboko barra luzatu",
|
||||
"Full index on one page": "Indize guztia orri batean",
|
||||
"General Index": "Indize orokorra",
|
||||
|
Binary file not shown.
@ -1,63 +1,63 @@
|
||||
Documentation.addTranslations({
|
||||
"locale": "fa",
|
||||
"messages": {
|
||||
"%(filename)s — %(docstitle)s": "",
|
||||
"© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "",
|
||||
"© Copyright %(copyright)s.": "",
|
||||
", in ": "",
|
||||
"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s",
|
||||
"© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">\u062d\u0642 \u0646\u0634\u0631</a> %(copyright)s.",
|
||||
"© Copyright %(copyright)s.": "© \u062d\u0642 \u0646\u0634\u0631%(copyright)s.",
|
||||
", in ": "\u060c \u062f\u0631 ",
|
||||
"About these documents": "\u062f\u0631\u0628\u0627\u0631\u0647 \u0627\u06cc\u0646 \u0645\u0633\u062a\u0646\u062f\u0627\u062a",
|
||||
"Automatically generated list of changes in version %(version)s": "\u0644\u06cc\u0633\u062a \u062a\u0648\u0644\u06cc\u062f \u0634\u062f\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s",
|
||||
"C API changes": "C API \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "",
|
||||
"Collapse sidebar": "",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s — %(docstitle)s",
|
||||
"Collapse sidebar": "\u062a\u0627 \u06a9\u0631\u062f\u0646 \u0646\u0648\u0627\u0631 \u06a9\u0646\u0627\u0631\u0647",
|
||||
"Complete Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u0645\u0637\u0627\u0644\u0628",
|
||||
"Contents": "",
|
||||
"Copyright": "\u06a9\u067e\u06cc \u0631\u0627\u06cc\u062a",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": ". <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0627",
|
||||
"Expand sidebar": "",
|
||||
"Contents": "\u0645\u062d\u062a\u0648\u0627 \u0647\u0627",
|
||||
"Copyright": "\u062d\u0642 \u0627\u0646\u062a\u0634\u0627\u0631",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0627<a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Expand sidebar": "\u06af\u0633\u062a\u0631\u0634 \u0646\u0648\u0627\u0631 \u06a9\u0646\u0627\u0631\u0647",
|
||||
"Full index on one page": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u062f\u0631 \u06cc\u06a9 \u0635\u0641\u062d\u0647",
|
||||
"General Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc",
|
||||
"Global Module Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc \u0645\u0627\u0698\u0648\u0644 \u0647\u0627",
|
||||
"Go": "\u0628\u0631\u0648",
|
||||
"Go": "\u0631\u0641\u062a\u0646 \u0628\u0647",
|
||||
"Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647",
|
||||
"Index": "\u0641\u0647\u0631\u0633\u062a",
|
||||
"Index – %(key)s": "\u0641\u0647\u0631\u0633\u062a – %(key)s",
|
||||
"Index pages by letter": "\u0641\u0647\u0631\u0633\u062a \u0635\u0641\u062d\u0627\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u062d\u0631\u0648\u0641",
|
||||
"Indices and tables:": "\u0627\u06cc\u0646\u062f\u06a9\u0633 \u0647\u0627 \u0648 \u062c\u062f\u0627\u0648\u0644:",
|
||||
"Last updated on %(last_updated)s.": ". %(last_updated)s \u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062f\u0631",
|
||||
"Indices and tables:": "\u0646\u0645\u0627\u06cc\u0647\u200c\u0647\u0627 \u0648 \u062c\u062f\u0648\u0644\u200c\u0647\u0627:",
|
||||
"Last updated on %(last_updated)s.": "\u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062f\u0631 %(last_updated)s .",
|
||||
"Library changes": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0627\u06cc\u06cc",
|
||||
"Navigation": "\u0646\u0627\u0648\u0628\u0631\u06cc",
|
||||
"Next topic": "\u0645\u0648\u0636\u0648\u0639 \u0628\u0639\u062f\u06cc",
|
||||
"Other changes": "\u062f\u06af\u0631 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a",
|
||||
"Overview": "\u0628\u0631\u0631\u0633\u06cc \u0627\u062c\u0645\u0627\u0644\u06cc",
|
||||
"Permalink to this definition": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u062a\u0639\u0631\u06cc\u0641",
|
||||
"Permalink to this headline": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u0633\u0631 \u0645\u0642\u0627\u0644\u0647",
|
||||
"Please activate JavaScript to enable the search\n functionality.": "",
|
||||
"Preparing search...": "",
|
||||
"Permalink to this definition": "\u067e\u06cc\u0648\u0646\u062f \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u062a\u0639\u0631\u06cc\u0641",
|
||||
"Permalink to this headline": "\u067e\u06cc\u0648\u0646\u062f \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u0633\u0631 \u0645\u0642\u0627\u0644\u0647",
|
||||
"Please activate JavaScript to enable the search\n functionality.": "\u0644\u0637\u0641\u0627\u064b \u0628\u0631\u0627\u06cc \u0641\u0639\u0651\u0627\u0644 \u06a9\u0631\u062f\u0646 \u06a9\u0627\u0631\u06a9\u0631\u062f \u062c\u0633\u062a\u062c\u0648\n\u062c\u0627\u0648\u0627 \u0627\u0633\u06a9\u0631\u06cc\u067e\u062a \u0631\u0627 \u0641\u0639\u0651\u0627\u0644 \u06a9\u0646\u06cc\u062f.",
|
||||
"Preparing search...": "\u0622\u0645\u0627\u062f\u0647 \u0633\u0627\u0632\u06cc \u062c\u0633\u062a \u0648 \u062c\u0648...",
|
||||
"Previous topic": "\u0645\u0648\u0636\u0648\u0639 \u0642\u0628\u0644\u06cc",
|
||||
"Quick search": "\u062c\u0633\u062a\u062c\u0648 \u0633\u0631\u06cc\u0639",
|
||||
"Search": "\u062c\u0633\u062a\u062c\u0648",
|
||||
"Search Page": "\u0635\u0641\u062d\u0647 \u062c\u0633\u062a\u062c\u0648",
|
||||
"Search Results": "\u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648",
|
||||
"Search finished, found %s page(s) matching the search query.": "",
|
||||
"Search finished, found %s page(s) matching the search query.": "\u062c\u0633\u062a\u062c\u0648 \u067e\u0627\u06cc\u0627\u0646 \u06cc\u0627\u0641\u062a \u0648 %s\u0635\u0641\u062d\u0647 \u0646\u062a\u0627\u06cc\u062c \u0645\u0637\u0627\u0628\u0642 \u062c\u0633\u062a\u0627\u0631 \u067e\u06cc\u062f\u0627 \u0634\u062f\u0646.",
|
||||
"Search within %(docstitle)s": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 %(docstitle)s",
|
||||
"Searching": "",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Searching": "\u062f\u0631 \u062d\u0627\u0644 \u062c\u0633\u062a \u0648 \u062c\u0648",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "\u062f\u0631 \u062d\u0627\u0644 \u062c\u0633\u062a\u062c\u0648 \u0628\u0631\u0627\u06cc \u0686\u0646\u062f\u06cc\u0646 \u0648\u0627\u0698\u0647. \u0641\u0642\u0637 \u0648\u0627\u0698\u06af\u0627\u0646\u06cc \u0631\u0627 \u0646\u0634\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f \u06a9\u0647 \u0634\u0627\u0645\u0644 \u0627\u06cc\u0646 \u0645\u0648\u0627\u0631\u062f \u0628\u0627\u0634\u062f:\n \u0647\u0645\u0647\u200c\u06cc \u06a9\u0644\u0645\u0647\u200c\u0647\u0627.",
|
||||
"Show Source": "\u0646\u0645\u0627\u06cc\u0634 \u0633\u0648\u0631\u0633",
|
||||
"Table of Contents": "",
|
||||
"Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u0639\u0646\u0627\u0648\u06cc\u0646",
|
||||
"This Page": "\u0635\u0641\u062d\u0647 \u0641\u0639\u0644\u06cc",
|
||||
"Welcome! This is": "",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "",
|
||||
"Welcome! This is": "\u062e\u0648\u0634 \u0622\u0645\u062f\u06cc\u062f! \u0627\u06cc\u0646",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u062c\u0633\u062a\u062c\u0648\u06cc \u0634\u0645\u0627 \u0628\u0627 \u0647\u06cc\u0686 \u0633\u0646\u062f\u06cc \u0647\u0645 \u062e\u0648\u0627\u0646\u06cc \u0646\u062f\u0627\u0634\u062a. \u0644\u0637\u0641\u0627\u064b \u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062d\u0627\u0635\u0644 \u06a9\u0646\u06cc\u062f \u06a9\u0647 \u0647\u0645\u0647 \u06cc \u0648\u0627\u0698\u0647 \u0647\u0627 \u0627\u0645\u0644\u0627\u06cc \u062f\u0631\u0633\u062a\u06cc \u062f\u0627\u0631\u0646\u062f \u0648 \u062f\u0633\u062a\u0647 \u0628\u0646\u062f\u06cc \u0647\u0627\u06cc \u06a9\u0627\u0641\u06cc \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647 \u0627\u06cc\u062f.",
|
||||
"all functions, classes, terms": "\u062a\u0645\u0627\u0645\u06cc \u062a\u0648\u0627\u0628\u0639 \u060c \u06a9\u0644\u0627\u0633 \u0647\u0627 \u060c \u0627\u0635\u0637\u0644\u0627\u062d\u0627\u062a",
|
||||
"can be huge": "",
|
||||
"last updated": "",
|
||||
"can be huge": "\u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u0633\u062a\u0631\u06af \u0628\u0627\u0634\u062f",
|
||||
"last updated": "\u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc",
|
||||
"lists all sections and subsections": "\u0641\u0647\u0631\u0633\u062a \u062a\u0645\u0627\u0645\u06cc \u0628\u062e\u0634 \u0647\u0627 \u0648 \u0632\u06cc\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0647\u0627",
|
||||
"next chapter": "\u0641\u0635\u0644 \u0628\u0639\u062f\u06cc",
|
||||
"previous chapter": "\u0641\u0635\u0644 \u0642\u0628\u0644\u06cc",
|
||||
"quick access to all modules": "\u062f\u0633\u062a\u0631\u0633\u06cc \u0633\u0631\u06cc\u0639 \u0628\u0647 \u062a\u0645\u0627\u0645\u06cc \u0645\u062a\u062f\u0647\u0627",
|
||||
"search": "\u062c\u0633\u062a\u062c\u0648",
|
||||
"search this documentation": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 \u0627\u06cc\u0646 \u0627\u0633\u0646\u0627\u062f",
|
||||
"the documentation for": ""
|
||||
"the documentation for": "\u0645\u0633\u062a\u0646\u062f\u0627\u062a \u0628\u0631\u0627\u06cc"
|
||||
},
|
||||
"plural_expr": "(n > 1)"
|
||||
});
|
Binary file not shown.
@ -385,7 +385,7 @@ msgstr "شاخص %r قبلاً برای دامنه %s ثبت شده"
|
||||
#: sphinx/registry.py:232
|
||||
#, python-format
|
||||
msgid "The %r object_type is already registered"
|
||||
msgstr "نوع شیئ(object_type) ٪r قبلاً برای دامنه %s ثبت شده"
|
||||
msgstr ""
|
||||
|
||||
#: sphinx/registry.py:252
|
||||
#, python-format
|
||||
@ -1587,7 +1587,7 @@ msgstr "ایجاد پروندهی %s."
|
||||
#: sphinx/cmd/quickstart.py:367 sphinx/ext/apidoc.py:87
|
||||
#, python-format
|
||||
msgid "File %s already exists, skipping."
|
||||
msgstr "پروندهی %r در حال حاضر وجود دارد، رد شدن."
|
||||
msgstr "پروندهی %s در حال حاضر وجود دارد، رد شدن."
|
||||
|
||||
#: sphinx/cmd/quickstart.py:409
|
||||
msgid "Finished: An initial directory structure has been created."
|
||||
@ -2321,7 +2321,7 @@ msgstr "پویش اسناد %s: %r شکست خورد"
|
||||
#: sphinx/environment/__init__.py:504
|
||||
#, python-format
|
||||
msgid "Domain %r is not registered"
|
||||
msgstr "دامنه ی %s ثبت نشده"
|
||||
msgstr "دامنه ی %r ثبت نشده"
|
||||
|
||||
#: sphinx/environment/__init__.py:585
|
||||
msgid "self referenced toctree found. Ignored."
|
||||
@ -2859,12 +2859,12 @@ msgstr "ویژگی نایاب در گزینهی :members: قید شده: پی
|
||||
#: sphinx/ext/autodoc/__init__.py:2570
|
||||
#, python-format
|
||||
msgid "Failed to get a function signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای تابع برای %r: مؤلّفه پیدا نشد: %s"
|
||||
msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1531
|
||||
#, python-format
|
||||
msgid "Failed to get a constructor signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای سازندهی شیئ برای %r: مؤلّفه پیدا نشد: %s"
|
||||
msgstr "شکست در دریافت امضای سازندهی شیئ برای %s: مؤلّفه پیدا نشد: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:1620 sphinx/ext/autodoc/__init__.py:1624
|
||||
#, python-format
|
||||
@ -2885,7 +2885,7 @@ msgstr "نام جانشین نوع متغیر(%s)"
|
||||
#: sphinx/ext/autodoc/__init__.py:2064 sphinx/ext/autodoc/__init__.py:2158
|
||||
#, python-format
|
||||
msgid "Failed to get a method signature for %s: %s"
|
||||
msgstr "شکست در دریافت امضای شگرد برای %r: مؤلّفه پیدا نشد: %s"
|
||||
msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه پیدا نشد: %s"
|
||||
|
||||
#: sphinx/ext/autodoc/__init__.py:2247
|
||||
#, python-format
|
||||
|
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "Hakemisto yhten\u00e4 luettelona",
|
||||
"General Index": "Yleinen sis\u00e4llysluettelo",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te",
|
||||
"Contents": "Contenu",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u00e9\u00e9 avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Agrandir la barre lat\u00e9rale",
|
||||
"Full index on one page": "Index complet sur une seule page",
|
||||
"General Index": "Index g\u00e9n\u00e9ral",
|
||||
@ -42,7 +42,7 @@ Documentation.addTranslations({
|
||||
"Search finished, found %s page(s) matching the search query.": "La recherche est finie, %s page(s) trouv\u00e9e(s) qui corresponde(nt) \u00e0 la recherche.",
|
||||
"Search within %(docstitle)s": "Recherchez dans %(docstitle)s",
|
||||
"Searching": "Recherche en cours",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "Une recherche sur plusieurs mots ne retourne que les r\u00e9sultats contenant tous les mots.",
|
||||
"Show Source": "Montrer le code source",
|
||||
"Table of Contents": "Table des mati\u00e8res",
|
||||
"This Page": "Cette page",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05dc\u05d0",
|
||||
"Contents": "\u05ea\u05d5\u05db\u05df",
|
||||
"Copyright": "\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "\u05d4\u05e8\u05d7\u05d1 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3",
|
||||
"Full index on one page": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05dc\u05d0 \u05d1\u05e2\u05de\u05d5\u05d3 \u05d0\u05d7\u05d3",
|
||||
"General Index": "",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u0935\u093f\u0938\u094d\u0924\u0943\u0924 \u0935\u093f\u0937\u092f-\u0938\u0942\u091a\u0940",
|
||||
"Contents": "\u0935\u093f\u0937\u092f \u0938\u093e\u092e\u093f\u0917\u094d\u0930\u0940",
|
||||
"Copyright": "\u0938\u0930\u094d\u0935\u093e\u0927\u093f\u0915\u093e\u0930",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u0938\u0947 \u0928\u093f\u0930\u094d\u092e\u093f\u0924.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "\u0915\u093f\u0928\u093e\u0930\u0947 \u0915\u093e \u0938\u094d\u0925\u093e\u0928 \u092c\u095d\u093e\u090f\u0902",
|
||||
"Full index on one page": "\u090f\u0915 \u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u092a\u0942\u0930\u0940 \u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e",
|
||||
"General Index": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0905\u0928\u0941\u0915\u094d\u0930\u092e\u093e\u0923\u093f\u0915\u093e",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Detaljni sadr\u017eaj",
|
||||
"Contents": "Sadr\u017eaj",
|
||||
"Copyright": "Sva prava zadr\u017eana",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Izra\u0111eno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Poka\u017ei pomo\u0107nu traku",
|
||||
"Full index on one page": "Potpun indeks na jednoj stranici",
|
||||
"General Index": "Opceniti abecedni indeks",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Teljes tartalomjegyz\u00e9k",
|
||||
"Contents": "Tartalom",
|
||||
"Copyright": "Minden jog fenntartva",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s haszn\u00e1lat\u00e1val k\u00e9sz\u00fclt.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa",
|
||||
"Full index on one page": "Teljes t\u00e1rgymutat\u00f3 egy oldalon",
|
||||
"General Index": "\u00c1ltal\u00e1nos t\u00e1rgymutat\u00f3",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Daftar Isi Lengkap",
|
||||
"Contents": "Konten",
|
||||
"Copyright": "Hak Cipta",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Dibuat menggunakan <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Buka sidebar",
|
||||
"Full index on one page": "Index penuh dalam satu halaman",
|
||||
"General Index": "Indeks Umum",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Tabella dei contenuti completa",
|
||||
"Contents": "Contenuti",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creato con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Espandi la barra laterale",
|
||||
"Full index on one page": "Indice completo in una pagina",
|
||||
"General Index": "Indice generale",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u7dcf\u5408\u76ee\u6b21",
|
||||
"Contents": "\u30b3\u30f3\u30c6\u30f3\u30c4",
|
||||
"Copyright": "\u8457\u4f5c\u6a29",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u3067\u751f\u6210\u3057\u307e\u3057\u305f\u3002",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u5c55\u958b",
|
||||
"Full index on one page": "\u7dcf\u7d22\u5f15",
|
||||
"General Index": "\u7dcf\u5408\u7d22\u5f15",
|
||||
|
Binary file not shown.
@ -1,37 +1,37 @@
|
||||
Documentation.addTranslations({
|
||||
"locale": "ko",
|
||||
"messages": {
|
||||
"%(filename)s — %(docstitle)s": "",
|
||||
"© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "",
|
||||
"© Copyright %(copyright)s.": "",
|
||||
"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s",
|
||||
"© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">\uc800\uc791\uad8c</a> %(copyright)s.",
|
||||
"© Copyright %(copyright)s.": "© \uc800\uc791\uad8c %(copyright)s.",
|
||||
", in ": ", \ubb38\uc11c - ",
|
||||
"About these documents": "\uc774 \ubb38\uc11c \uc815\ubcf4",
|
||||
"Automatically generated list of changes in version %(version)s": "\ubc84\uc804 %(version)s\uc758 \ubcc0\uacbd \uc0ac\ud56d (\uc774 \ubaa9\ub85d\uc740 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud569\ub2c8\ub2e4)",
|
||||
"C API changes": "C API\uc5d0 \ub300\ud55c \ubcc0\uacbd",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "",
|
||||
"Automatically generated list of changes in version %(version)s": "\ubc84\uc804 %(version)s\uc758 \ubcc0\uacbd \uc0ac\ud56d (\uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ub41c \ubaa9\ub85d)",
|
||||
"C API changes": "C API \ubcc0\uacbd \uc0ac\ud56d",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "\ubc84\uc804 %(version)s\uc758 \ubcc0\uacbd \uc0ac\ud56d — %(docstitle)s",
|
||||
"Collapse sidebar": "\uc0ac\uc774\ub4dc\ubc14 \ub2eb\uae30",
|
||||
"Complete Table of Contents": "\uc885\ud569 \ubaa9\ucc28",
|
||||
"Contents": "\ub0b4\uc6a9",
|
||||
"Copyright": "\uc800\uc791\uad8c",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \ubc84\uc804\uc73c\ub85c \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \ubc84\uc804\uc73c\ub85c \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.",
|
||||
"Expand sidebar": "\uc0ac\uc774\ub4dc\ubc14 \uc5f4\uae30",
|
||||
"Full index on one page": "\ud55c \ud398\uc774\uc9c0\uc5d0 \uc804\uccb4 \uc0c9\uc778 \ubcf4\uae30",
|
||||
"General Index": "\uc804\uccb4 \uc0c9\uc778",
|
||||
"Global Module Index": "\ubaa8\ub4c8 \ucd1d \uc0c9\uc778",
|
||||
"Go": "\uc774\ub3d9",
|
||||
"Hide Search Matches": "\uac80\uc0c9 \uacb0\uacfc \uc228\uae30\uae30",
|
||||
"Hide Search Matches": "\uac80\uc0c9 \uc77c\uce58 \uc228\uae30\uae30",
|
||||
"Index": "\uc0c9\uc778",
|
||||
"Index – %(key)s": "",
|
||||
"Index – %(key)s": "\uc0c9\uc778 – %(key)s",
|
||||
"Index pages by letter": "\uc54c\ud30c\ubcb3\ubcc4 \uc0c9\uc778",
|
||||
"Indices and tables:": "\uc0c9\uc778 \ubc0f \ud45c \ubaa9\ub85d:",
|
||||
"Last updated on %(last_updated)s.": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8: %(last_updated)s",
|
||||
"Library changes": "\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \ub300\ud55c \ubcc0\uacbd",
|
||||
"Library changes": "\ub77c\uc774\ube0c\ub7ec\ub9ac \ubcc0\uacbd \uc0ac\ud56d",
|
||||
"Navigation": "\ud0d0\uc0c9",
|
||||
"Next topic": "\ub2e4\uc74c \ud56d\ubaa9",
|
||||
"Other changes": "\ub2e4\ub978 \ubcc0\uacbd \uc0ac\ud56d",
|
||||
"Overview": "\uac1c\uc694",
|
||||
"Permalink to this definition": "\uc815\uc758 \uc8fc\uc18c",
|
||||
"Permalink to this headline": "\uc81c\ubaa9 \uc8fc\uc18c",
|
||||
"Permalink to this definition": "\uc774 \uc815\uc758\uc5d0 \ub300\ud55c \ud37c\uba38\ub9c1\ud06c",
|
||||
"Permalink to this headline": "\uc774 \ud45c\uc81c\uc5d0 \ub300\ud55c \ud37c\uba38\ub9c1\ud06c",
|
||||
"Please activate JavaScript to enable the search\n functionality.": "\uac80\uc0c9 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 JavaScript\ub97c \ud65c\uc131\ud654\ud558\uc2ed\uc2dc\uc624.",
|
||||
"Preparing search...": "\uac80\uc0c9 \uc900\ube44 \uc911\u2026",
|
||||
"Previous topic": "\uc774\uc804 \ud56d\ubaa9",
|
||||
@ -39,25 +39,25 @@ Documentation.addTranslations({
|
||||
"Search": "\uac80\uc0c9",
|
||||
"Search Page": "\uac80\uc0c9 \ud398\uc774\uc9c0",
|
||||
"Search Results": "\uac80\uc0c9 \uacb0\uacfc",
|
||||
"Search finished, found %s page(s) matching the search query.": "",
|
||||
"Search finished, found %s page(s) matching the search query.": "\uac80\uc0c9\uc774 \uc644\ub8cc\ub418\uc5c8\uc73c\uba70, \uac80\uc0c9\uc5b4\uc640 \uc77c\uce58\ud558\ub294 %s \uac1c \ud398\uc774\uc9c0\ub97c \ucc3e\uc558\uc2b5\ub2c8\ub2e4.",
|
||||
"Search within %(docstitle)s": "%(docstitle)s\uc5d0\uc11c \ucc3e\uae30",
|
||||
"Searching": "\uac80\uc0c9 \uc911",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "\uc5ec\ub7ec \ub2e8\uc5b4\ub97c \uac80\uc0c9\ud558\uba74 \ubaa8\ub4e0 \ub2e8\uc5b4\uac00 \ud3ec\ud568\ub41c \uc77c\uce58 \ud56d\ubaa9\ub9cc \ud45c\uc2dc\ub429\ub2c8\ub2e4.",
|
||||
"Show Source": "\uc18c\uc2a4 \ubcf4\uae30",
|
||||
"Table of Contents": "\ubaa9\ucc28",
|
||||
"This Page": "\ud604\uc7ac \ubb38\uc11c",
|
||||
"Welcome! This is": "",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "",
|
||||
"Welcome! This is": "\ud658\uc601\ud569\ub2c8\ub2e4!",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\uac80\uc0c9\uc5b4\uc640 \uc77c\uce58\ud558\ub294 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ubaa8\ub4e0 \ub2e8\uc5b4\uc758 \ucca0\uc790\uac00 \uc62c\ubc14\ub978\uc9c0, \ucda9\ubd84\ud55c \uce74\ud14c\uace0\ub9ac\ub97c \uc120\ud0dd\ud588\ub294\uc9c0 \ud655\uc778\ud558\uc2ed\uc2dc\uc624.",
|
||||
"all functions, classes, terms": "\ud568\uc218, \ud074\ub798\uc2a4 \ubc0f \uc6a9\uc5b4 \uac1c\uad00",
|
||||
"can be huge": "\ud070 \uacbd\uc6b0\uac00 \uc788\uc73c\ubbc0\ub85c \uc8fc\uc758",
|
||||
"last updated": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8",
|
||||
"lists all sections and subsections": "\uc601\uc5ed\ubcc4 \ubaa9\ucc28",
|
||||
"lists all sections and subsections": "\ubaa8\ub4e0 \uad6c\uc5ed\uacfc \ud558\uc704 \uad6c\uc5ed \ubaa9\ub85d",
|
||||
"next chapter": "\ub2e4\uc74c \uc7a5",
|
||||
"previous chapter": "\uc774\uc804 \uc7a5",
|
||||
"quick access to all modules": "\ubaa8\ub4e0 \ubaa8\ub4c8 \uc870\uacac\ud45c",
|
||||
"search": "\uac80\uc0c9",
|
||||
"search this documentation": "\ubb38\uc11c \uac80\uc0c9",
|
||||
"the documentation for": ""
|
||||
"the documentation for": "\ubb38\uc11c:"
|
||||
},
|
||||
"plural_expr": "0"
|
||||
});
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Pilnas Turinys",
|
||||
"Contents": "Turinys",
|
||||
"Copyright": "Autoriaus teis\u0117s",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Sukurta naudojant <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "I\u0161pl\u0117sti \u0161onin\u0119 juost\u0105",
|
||||
"Full index on one page": "Pilnas indeksas viename puslapyje",
|
||||
"General Index": "Bendras indeksas",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Pilns saturs",
|
||||
"Contents": "Saturs",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Sagatavots izmantojot <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Izplest s\u0101njoslu",
|
||||
"Full index on one page": "Pilns indekss vien\u0101 lappus\u0113",
|
||||
"General Index": "Visp\u0101r\u0113js indekss",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "\u0413\u043b\u0430\u0432\u043d\u0430 \u0441\u043e\u0434\u0440\u0436\u0438\u043d\u0430",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Komplett Innholdsfortegnelse",
|
||||
"Contents": "Innhold",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Lagd med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Utvid sidepanelet",
|
||||
"Full index on one page": "Hele innholdsfortegnelsen p\u00e5 en side",
|
||||
"General Index": "Hovedindex",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u092a\u0941\u0930\u093e \u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940",
|
||||
"Contents": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940",
|
||||
"Copyright": "\u0915\u092a\u093f\u0930\u093e\u0907\u091f ",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0920\u0941\u0932\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d",
|
||||
"Full index on one page": "\u092a\u0941\u0930\u093e \u0905\u0928\u0941\u0938\u0941\u091a\u0940 \u090f\u0915\u0948 \u092a\u093e\u0928\u093e\u092e\u093e",
|
||||
"General Index": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0905\u0928\u0941\u0938\u0941\u091a\u0940",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Volledige inhoudsopgave",
|
||||
"Contents": "Inhoudsopgave",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Aangemaakt met <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Zijpaneel uitklappen",
|
||||
"Full index on one page": "Volledige index op \u00e9\u00e9n pagina",
|
||||
"General Index": "Algemene index",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Kompletny spis tre\u015bci",
|
||||
"Contents": "Tre\u015b\u0107",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Utworzone przy pomocy <a href=\"http://sphinx-doc.org/\">Sphinx</a>'a %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Rozwi\u0144 pasek boczny",
|
||||
"Full index on one page": "Ca\u0142y indeks na jednej stronie",
|
||||
"General Index": "Indeks og\u00f3lny",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Tabela Completa dos Conte\u00fados",
|
||||
"Contents": "Conte\u00fados",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Criado usando <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Criada usando <a href=\"https://www.sphinx-doc.org/pt_BR/master\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Expand sidebar": "Expandir painel lateral",
|
||||
"Full index on one page": "\u00cdndice completo em p\u00e1gina \u00fanica",
|
||||
"General Index": "\u00cdndice Geral",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Tabela de Conte\u00fados Completa",
|
||||
"Contents": "Conte\u00fado",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Criado utilizando <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Expandir painel lateral",
|
||||
"Full index on one page": "\u00cdndice completo numa p\u00e1gina",
|
||||
"General Index": "\u00cdndice Geral",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Cuprinsul Complet",
|
||||
"Contents": "Cuprins",
|
||||
"Copyright": "Drepturi de autor",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Generat cu <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Expandare bar\u0103 lateral\u0103",
|
||||
"Full index on one page": "Index complet",
|
||||
"General Index": "Index General",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u041f\u043e\u043b\u043d\u043e\u0435 \u043e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
|
||||
"Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
|
||||
"Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c",
|
||||
"Full index on one page": "\u041f\u043e\u043b\u043d\u044b\u0439 \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043d\u0430 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435",
|
||||
"General Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "\u0dc3\u0db8\u0dca\u0db4\u0dd6\u0dbb\u0dca\u0dab \u0db4\u0da7\u0dd4\u0db1",
|
||||
"Contents": "\u0d85\u0db1\u0dca\u0dad\u0dbb\u0dca\u0d9c\u0dad\u0dba",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Celkov\u00fd obsah",
|
||||
"Contents": "Obsah",
|
||||
"Copyright": "Autorsk\u00e9 pr\u00e1vo",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvoren\u00e9 pomocou <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvoren\u00e9 pomocou <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Expand sidebar": "Rozbali\u0165 bo\u010dn\u00fd panel",
|
||||
"Full index on one page": "Cel\u00fd index na jednej strane",
|
||||
"General Index": "V\u0161eobecn\u00fd index",
|
||||
@ -42,7 +42,7 @@ Documentation.addTranslations({
|
||||
"Search finished, found %s page(s) matching the search query.": "H\u013eadanie dokon\u010den\u00e9, n\u00e1jden\u00e9 %s strana(y), ktor\u00e9 vyhovuj\u00fa h\u013eadan\u00e9mu v\u00fdrazu.",
|
||||
"Search within %(docstitle)s": "H\u013eada\u0165 v %(docstitle)s",
|
||||
"Searching": "H\u013eadanie",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "H\u013eadanie viacer\u00fdch slov vracia len zhody, ktor\u00e9 obsahuj\u00fa\n v\u0161etky slov\u00e1.",
|
||||
"Show Source": "Zobrazi\u0165 zdroj",
|
||||
"Table of Contents": "Obsah",
|
||||
"This Page": "T\u00e1to str\u00e1nka",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Popoln Seznam Vsebine",
|
||||
"Contents": "",
|
||||
"Copyright": "Vse pravice pridr\u017eane",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Narejeno s <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "Poln indeks na eni strani",
|
||||
"General Index": "Splo\u0161ni abecedni seznam",
|
||||
|
Binary file not shown.
@ -4,21 +4,21 @@ Documentation.addTranslations({
|
||||
"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s",
|
||||
"© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">T\u00eb drejta kopjimi</a> %(copyright)s.",
|
||||
"© Copyright %(copyright)s.": "© T\u00eb drejta kopjimi %(copyright)s.",
|
||||
", in ": "",
|
||||
", in ": ", n\u00eb ",
|
||||
"About these documents": "Mbi k\u00ebto dokumente",
|
||||
"Automatically generated list of changes in version %(version)s": "",
|
||||
"Automatically generated list of changes in version %(version)s": "List\u00eb ndryshime n\u00eb versionin %(version)s e prodhuar automatikisht",
|
||||
"C API changes": "Ndryshime API C",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "Ndryshe n\u00eb Versionin %(version)s — %(docstitle)s",
|
||||
"Collapse sidebar": "Tkurre an\u00ebshtyll\u00ebn",
|
||||
"Complete Table of Contents": "Tryez\u00eb e Plot\u00eb e L\u00ebnd\u00ebs",
|
||||
"Contents": "L\u00ebnd\u00eb",
|
||||
"Copyright": "T\u00eb drejta kopjimi",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Krijuar duke p\u00ebrdorur <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Expand sidebar": "Zgjeroje an\u00ebshtyll\u00ebn",
|
||||
"Full index on one page": "Tregues i plot\u00eb n\u00eb nj\u00eb faqe",
|
||||
"General Index": "Tregues i P\u00ebrgjithsh\u00ebm",
|
||||
"Global Module Index": "Tregues Global Modulesh",
|
||||
"Go": "",
|
||||
"Go": "Shko",
|
||||
"Hide Search Matches": "Fshih P\u00ebrputhje K\u00ebrkimi",
|
||||
"Index": "Tregues",
|
||||
"Index – %(key)s": "Tregues – %(key)s",
|
||||
@ -32,22 +32,22 @@ Documentation.addTranslations({
|
||||
"Overview": "P\u00ebrmbledhje",
|
||||
"Permalink to this definition": "Permalidhje p\u00ebr te ky p\u00ebrkufizim",
|
||||
"Permalink to this headline": "Permalidhje te ky titull",
|
||||
"Please activate JavaScript to enable the search\n functionality.": "",
|
||||
"Please activate JavaScript to enable the search\n functionality.": "Q\u00eb t\u00eb aktivizohet funksioni i k\u00ebrkimit, ju lutemi, aktivizoni\n JavaScript-in.",
|
||||
"Preparing search...": "Po p\u00ebrgatitet k\u00ebrkim...",
|
||||
"Previous topic": "Subjekti i m\u00ebparsh\u00ebm",
|
||||
"Quick search": "K\u00ebrkim i shpejt\u00eb",
|
||||
"Search": "",
|
||||
"Search": "K\u0113rko",
|
||||
"Search Page": "Faqe K\u00ebrkimesh",
|
||||
"Search Results": "P\u00ebrfundime K\u00ebrkimi",
|
||||
"Search finished, found %s page(s) matching the search query.": "",
|
||||
"Search finished, found %s page(s) matching the search query.": "K\u00ebrkimi p\u00ebrfundoi, u gjet\u00ebn %s page(s) me p\u00ebrputhje me shprehjen e k\u00ebrkuar.",
|
||||
"Search within %(docstitle)s": "K\u00ebrkoni brenda %(docstitle)s",
|
||||
"Searching": "",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Searching": "K\u00ebrkim",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "K\u00ebrkimi p\u00ebr disa fjal\u00eb nj\u00ebher\u00ebsh shfaq vet\u00ebm p\u00ebrputhje q\u00eb\n p\u00ebrmbajn\u00eb krejt fjal\u00ebt.",
|
||||
"Show Source": "Shfaq Burimin",
|
||||
"Table of Contents": "Tryeza e L\u00ebnd\u00ebs",
|
||||
"This Page": "Kjo Faqe",
|
||||
"Welcome! This is": "Mir\u00eb se vini! Ky \u00ebsht\u00eb",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "K\u00ebrkimi juaj s\u2019gjeti p\u00ebrputhje me ndonj\u00eb dokument. Ju lutemi, sigurohuni se jan\u00eb shkruar sakt\u00eb krejt fjal\u00ebt dhe se keni p\u00ebrzgjedhur aq kategori sa duhen.",
|
||||
"all functions, classes, terms": "krejt funksionet, klasat, termat",
|
||||
"can be huge": "mund t\u00eb jet\u00eb i st\u00ebrmadh",
|
||||
"last updated": "p\u00ebrdit\u00ebsuar s\u00eb fundi m\u00eb",
|
||||
|
Binary file not shown.
@ -1,63 +1,63 @@
|
||||
Documentation.addTranslations({
|
||||
"locale": "sr",
|
||||
"messages": {
|
||||
"%(filename)s — %(docstitle)s": "",
|
||||
"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s",
|
||||
"© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "",
|
||||
"© Copyright %(copyright)s.": "",
|
||||
", in ": "",
|
||||
", in ": ", \u0443 ",
|
||||
"About these documents": "",
|
||||
"Automatically generated list of changes in version %(version)s": "",
|
||||
"C API changes": "",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "",
|
||||
"Changes in Version %(version)s — %(docstitle)s": "\u0418\u0437\u043c\u0435\u043d\u0435 \u0443 \u0432\u0435\u0440\u0437\u0438\u0458\u0438 %(version)s — %(docstitle)s",
|
||||
"Collapse sidebar": "",
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Contents": "\u0421\u0430\u0434\u0440\u0436\u0430\u0458",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
"Global Module Index": "",
|
||||
"Go": "",
|
||||
"Go": "\u0422\u0440\u0430\u0436\u0438",
|
||||
"Hide Search Matches": "",
|
||||
"Index": "",
|
||||
"Index": "\u0418\u043d\u0434\u0435\u043a\u0441",
|
||||
"Index – %(key)s": "",
|
||||
"Index pages by letter": "",
|
||||
"Indices and tables:": "",
|
||||
"Last updated on %(last_updated)s.": "",
|
||||
"Library changes": "",
|
||||
"Library changes": "\u0418\u0437\u043c\u0435\u043d\u0435 \u0443 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u0446\u0438",
|
||||
"Navigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430",
|
||||
"Next topic": "",
|
||||
"Other changes": "",
|
||||
"Overview": "",
|
||||
"Next topic": "\u0421\u043b\u0435\u0434\u0435\u045b\u0438 \u043e\u0434\u0435\u0459\u0430\u043a",
|
||||
"Other changes": "\u0414\u0440\u0443\u0433\u0435 \u0438\u0437\u043c\u0435\u043d\u0435",
|
||||
"Overview": "\u041f\u0440\u0435\u0433\u043b\u0435\u0434",
|
||||
"Permalink to this definition": "",
|
||||
"Permalink to this headline": "",
|
||||
"Please activate JavaScript to enable the search\n functionality.": "",
|
||||
"Preparing search...": "",
|
||||
"Previous topic": "",
|
||||
"Quick search": "",
|
||||
"Search": "",
|
||||
"Preparing search...": "\u041f\u0440\u0438\u043f\u0440\u0435\u043c\u0430 \u043f\u0440\u0435\u0442\u0440\u0430\u0433\u0435...",
|
||||
"Previous topic": "\u041f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0438 \u043e\u0434\u0435\u0459\u0430\u043a",
|
||||
"Quick search": "\u0411\u0440\u0437\u0430 \u043f\u0440\u0435\u0442\u0440\u0430\u0433\u0430",
|
||||
"Search": "\u041f\u0440\u0435\u0442\u0440\u0430\u0433\u0430",
|
||||
"Search Page": "",
|
||||
"Search Results": "",
|
||||
"Search Results": "\u0420\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438 \u043f\u0440\u0435\u0442\u0440\u0430\u0433\u0435",
|
||||
"Search finished, found %s page(s) matching the search query.": "",
|
||||
"Search within %(docstitle)s": "",
|
||||
"Searching": "",
|
||||
"Searching": "\u041f\u0440\u0435\u0442\u0440\u0430\u0436\u0443\u0458\u0435 \u0441\u0435",
|
||||
"Searching for multiple words only shows matches that contain\n all words.": "",
|
||||
"Show Source": "",
|
||||
"Table of Contents": "",
|
||||
"This Page": "",
|
||||
"Welcome! This is": "",
|
||||
"Show Source": "\u0418\u0437\u0432\u043e\u0440\u043d\u0438 \u043a\u043e\u0434",
|
||||
"Table of Contents": "\u0421\u0430\u0434\u0440\u0436\u0430\u0458",
|
||||
"This Page": "\u041e\u0432\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430",
|
||||
"Welcome! This is": "\u0414\u043e\u0431\u0440\u043e \u0434\u043e\u0448\u043b\u0438! \u041e\u0432\u043e \u0458\u0435",
|
||||
"Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "",
|
||||
"all functions, classes, terms": "",
|
||||
"can be huge": "",
|
||||
"last updated": "",
|
||||
"last updated": "\u043f\u043e\u0441\u043b\u0435\u0434\u045a\u0430 \u0438\u0437\u043c\u0435\u043d\u0430",
|
||||
"lists all sections and subsections": "",
|
||||
"next chapter": "\u043d\u0430\u0440\u0435\u0434\u043d\u0430 \u0433\u043b\u0430\u0432\u0430",
|
||||
"previous chapter": "\u043f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430 \u0433\u043b\u0430\u0432\u0430",
|
||||
"quick access to all modules": "",
|
||||
"search": "",
|
||||
"search": "\u0442\u0440\u0430\u0436\u0438",
|
||||
"search this documentation": "",
|
||||
"the documentation for": ""
|
||||
"the documentation for": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0458\u0430"
|
||||
},
|
||||
"plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"
|
||||
});
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "Komplett Inneh\u00e5llsf\u00f6rteckning",
|
||||
"Contents": "Inneh\u00e5ll",
|
||||
"Copyright": "Copyright",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Skapad med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "Expandera sidolist",
|
||||
"Full index on one page": "Hela inneh\u00e5llsf\u00f6rteckningen p\u00e5 en sida",
|
||||
"General Index": "Huvudindex",
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ Documentation.addTranslations({
|
||||
"Complete Table of Contents": "",
|
||||
"Contents": "",
|
||||
"Copyright": "",
|
||||
"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "",
|
||||
"Expand sidebar": "",
|
||||
"Full index on one page": "",
|
||||
"General Index": "",
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user