diff --git a/Dockerfile b/Dockerfile index 8c31979ea..139779c17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,8 @@ RUN cd /project # It matters that the node environment is installed into the same # folder, i.e. /project where we will run the environment from +# TODO: We don't want to update package-lock.json here, we +# should use npm ci instead RUN npm install --package-lock-only &&\ npm audit fix &&\ npm install diff --git a/docker-entrypoint.sh b/docker-entrypoint.sh index b27f56ab4..971b8083c 100644 --- a/docker-entrypoint.sh +++ b/docker-entrypoint.sh @@ -11,6 +11,9 @@ pip install --upgrade -e ".[dev]" # npm install cd /project + +# TODO: This is a bad approach, it copies from the image which +# may be outdated to the current git tree cp -r /project-readonly/sphinx_rtd_theme . echo "Going to invoke: npm run $@" diff --git a/docs/changelog.rst b/docs/changelog.rst index 82886c895..abd307189 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -5,11 +5,11 @@ Changelog Development version (|development_version|) =========================================== -.. |development_version| replace:: 1.1.0b2 +.. |development_version| replace:: 1.1.0b3 -.. _release-1.1.0b2: +.. _release-1.1.0b3: -1.1.0b2 +1.1.0b3 ======= Dependency Changes @@ -28,6 +28,7 @@ Features -------- * Nicer styles for (#967) +* New styling for breadcrumbs (#1073) Fixes @@ -37,6 +38,7 @@ Fixes * Table cells with multiple paragraphs gets wrong formatting (#289) * Definition lists rendered wrongly in api docs (#1052) * Citation not styled properly (#1078) +* Long URLs did not wrap (#1193) Minor Changes diff --git a/package-lock.json b/package-lock.json index d28fba8fc..9af684709 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "sphinx_rtd_theme", - "version": "1.0.1alpha1", + "version": "1.1.0b3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index ca71f95a6..8e3b84b66 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "sphinx_rtd_theme", "main": "js/theme.js", - "version": "1.1.0b2", + "version": "1.1.0b3", "scripts": { "dev": "webpack-dev-server --open --config webpack.dev.js", "build": "webpack --config webpack.prod.js", diff --git a/setup.cfg b/setup.cfg index ee377ea1e..b6d281b2b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0b2 +current_version = 1.1.0b3 commit = false tag = false parse = (?P\d+)\.(?P\d+)\.(?P\d+)((?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index bf69f55c6..4ec8cecf8 100644 --- a/setup.py +++ b/setup.py @@ -86,7 +86,7 @@ def run(self): setup( - version='1.1.0b2', + version='1.1.0b3', cmdclass={ 'update_translations': UpdateTranslationsCommand, 'transifex': TransifexCommand, diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py index 9ea323f0c..0b2450257 100644 --- a/sphinx_rtd_theme/__init__.py +++ b/sphinx_rtd_theme/__init__.py @@ -12,7 +12,7 @@ from sphinx.util.logging import getLogger -__version__ = '1.0.1alpha1' +__version__ = '1.1.0b3' __version_full__ = __version__ logger = getLogger(__name__) diff --git a/sphinx_rtd_theme/layout.html b/sphinx_rtd_theme/layout.html index 99ec01b71..bb0c069a2 100644 --- a/sphinx_rtd_theme/layout.html +++ b/sphinx_rtd_theme/layout.html @@ -9,6 +9,10 @@ {%- set lang_attr = 'en' if language == None else (language | replace('_', '-')) %} {%- set sphinx_writer = 'writer-html5' if html5_doctype else 'writer-html4' -%} +{# Build sphinx_version_info tuple from sphinx_version string in pure Jinja #} +{%- set (_ver_major, _ver_minor) = (sphinx_version.split('.') | list)[:2] | map('int') -%} +{%- set sphinx_version_info = (_ver_major, _ver_minor, -1) -%} + diff --git a/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo index 70c4b3da5..c52bc86e1 100644 Binary files a/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po index 30244d3e3..3f21a2de9 100644 --- a/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Tom Kunze , 2019\n" "Language-Team: German (https://www.transifex.com/readthedocs/teams/101354/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -71,28 +71,28 @@ msgstr "Erstellt mit %(sphinx_web)s mit einem" msgid "provided by %(readthedocs_web)s" msgstr "bereitgestellt von %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s durchsuchen" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Über diese Dokumentation" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Index" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Suche" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Copyright" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" diff --git a/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo index 9126dcc34..c19938855 100644 Binary files a/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po index 696262e38..c624ca2f3 100644 --- a/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po @@ -8,16 +8,16 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 15:43-0600\n" "Last-Translator: FULL NAME \n" "Language: en\n" "Language-Team: en \n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" #. This is an ARIA section label for page links, including previous/next page #. link and links to GitHub/GitLab/etc. @@ -105,39 +105,39 @@ msgstr "" msgid "provided by %(readthedocs_web)s" msgstr "" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "" diff --git a/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo index ca17fdf13..d7cfb4dfb 100644 Binary files a/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po index 06f282ce2..ca45899d5 100644 --- a/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po @@ -7,21 +7,22 @@ # Translators: # Anthony , 2019 # Radina Matic , 2021 +# Leonardo J. Caballero G. , 2022 # msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" -"Last-Translator: Radina Matic , 2021\n" +"Last-Translator: Leonardo J. Caballero G. , 2022\n" "Language-Team: Spanish (https://www.transifex.com/readthedocs/teams/101354/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: sphinx_rtd_theme/breadcrumbs.html:37 sphinx_rtd_theme/breadcrumbs.html:39 msgid "Edit on GitHub" @@ -98,28 +99,28 @@ msgstr "tema" msgid "provided by %(readthedocs_web)s" msgstr "proporcionado por %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Buscar en %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Sobre esta documentación" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Índice" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Búsqueda" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Derechos de autor" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logotipo" diff --git a/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo index 523134e03..876c2eb8e 100644 Binary files a/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po index aa669592a..d56d01d1f 100644 --- a/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Ivar Smolin , 2021\n" "Language-Team: Estonian (https://www.transifex.com/readthedocs/teams/101354/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -86,7 +86,7 @@ msgid "Built with %(sphinx_web)s using a" msgstr "Ehitatud %(sphinx_web)s'iga," #. "theme" refers to a theme for Sphinx, which alters the appearance of the -#. generated documenation +#. generated documentation #: sphinx_rtd_theme/footer.html:55 msgid "theme" msgstr "kujundusteema" @@ -98,28 +98,28 @@ msgstr "kujundusteema" msgid "provided by %(readthedocs_web)s" msgstr "on loonud %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Otsi dokumendist %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Nende dokumentide kirjeldused" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Indeks" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Otsing" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Autoriõigus" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" diff --git a/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo index 973e70de2..4cd180dd6 100644 Binary files a/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po index 7a61ac0fd..15c3a58ea 100644 --- a/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po @@ -6,19 +6,20 @@ # # Translators: # Anthony , 2021 +# Peyman M., 2022 # msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" -"Last-Translator: Anthony , 2021\n" +"Last-Translator: Peyman M., 2022\n" "Language-Team: Persian (Iran) (https://www.transifex.com/readthedocs/teams/101354/fa_IR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: fa_IR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -92,28 +93,28 @@ msgstr "پوسته" msgid "provided by %(readthedocs_web)s" msgstr "تهیّه شده با %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "جستجو در %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "درباره این مستندات" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "فهرست" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "جستجوی" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "کپی رایت" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "آرم" diff --git a/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo index f69541a21..a8ac9baf8 100644 Binary files a/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po index c47450372..b253e2654 100644 --- a/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po @@ -12,16 +12,16 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Radina Matic , 2021\n" "Language-Team: French (https://www.transifex.com/readthedocs/teams/101354/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #: sphinx_rtd_theme/breadcrumbs.html:37 sphinx_rtd_theme/breadcrumbs.html:39 msgid "Edit on GitHub" @@ -86,7 +86,7 @@ msgid "Built with %(sphinx_web)s using a" msgstr "Compilé avec %(sphinx_web)s en utilisant un" #. "theme" refers to a theme for Sphinx, which alters the appearance of the -#. generated documenation +#. generated documentation #: sphinx_rtd_theme/footer.html:55 msgid "theme" msgstr "thème" @@ -98,28 +98,28 @@ msgstr "thème" msgid "provided by %(readthedocs_web)s" msgstr "fourni par %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Rechercher dans %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "À propos de cette documentation" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Index" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Rechercher" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Droits d'auteur" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" diff --git a/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo index 61cf97b97..be579cf23 100644 Binary files a/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po index cb58e43bd..be39590d7 100644 --- a/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po @@ -7,21 +7,23 @@ # Translators: # Anthony , 2021 # Maurizio Paglia , 2021 +# albanobattistella , 2022 +# Benjamin Bach , 2022 # msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" -"Last-Translator: Maurizio Paglia , 2021\n" +"Last-Translator: Benjamin Bach , 2022\n" "Language-Team: Italian (https://www.transifex.com/readthedocs/teams/101354/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. This is an ARIA section label for page links, including previous/next page #. link and links to GitHub/GitLab/etc. @@ -95,7 +97,7 @@ msgstr "Ultimo aggiornamento il %(last_updated)s." #: sphinx_rtd_theme/footer.html:53 #, python-format msgid "Built with %(sphinx_web)s using a" -msgstr "Realizzato con %(sphinx_web)s e il tema" +msgstr "Realizzato con %(sphinx_web)s usando un" #. "theme" refers to a theme for Sphinx, which alters the appearance of the #. generated documentation @@ -110,39 +112,39 @@ msgstr "tema" msgid "provided by %(readthedocs_web)s" msgstr "fornito da %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Cerca in %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Nota sulla documentazione" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Indice" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Ricerca" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Copyright" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "Menu di navigazione" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "Menu navigazione dispositivi mobili" diff --git a/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo index 6c37e185c..00430ef2b 100644 Binary files a/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po index de2afaa6b..5aabab3c1 100644 --- a/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Tomas Straupis, 2021\n" "Language-Team: Lithuanian (https://www.transifex.com/readthedocs/teams/101354/lt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" @@ -109,39 +109,39 @@ msgstr "temą" msgid "provided by %(readthedocs_web)s" msgstr "pateiktą %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Ieškoti %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Apie šiuos dokumentus" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Indeksas" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Paieška" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Autorių teisės" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "Navigacijos meniu" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "Mobilios navigacijos meniu" diff --git a/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo index 863bf7c03..bc024e26a 100644 Binary files a/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po index aab6e0344..efbfce4e8 100644 --- a/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Jesse Tan, 2021\n" "Language-Team: Dutch (https://www.transifex.com/readthedocs/teams/101354/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -109,39 +109,39 @@ msgstr "thema" msgid "provided by %(readthedocs_web)s" msgstr "geleverd door %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Zoek binnen %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Over deze documenten" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Index" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Zoek" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Copyright" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "Navigatiemenu" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "Navigatiemenu voor mobiel" diff --git a/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo index 883fc63e1..4cf53b498 100644 Binary files a/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po index 219977cbb..943546688 100644 --- a/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Michal Sniatala, 2021\n" "Language-Team: Polish (https://www.transifex.com/readthedocs/teams/101354/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -76,24 +76,24 @@ msgstr "Zbudowano w %(sphinx_web)s używając" msgid "provided by %(readthedocs_web)s" msgstr "dostarczone przez %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Szukaj w %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "O tych dokumentach" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Indeks" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Szukaj" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Prawa zastrzeżone" diff --git a/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo index 8d1308311..274bfcc7a 100644 Binary files a/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po index 88431ef24..1285eb708 100644 --- a/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po @@ -11,16 +11,16 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Ana Costa , 2021\n" "Language-Team: Portuguese (https://www.transifex.com/readthedocs/teams/101354/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. This is an ARIA section label for page links, including previous/next page #. link and links to GitHub/GitLab/etc. @@ -94,35 +94,35 @@ msgstr "tema" msgid "provided by %(readthedocs_web)s" msgstr "fornecido por %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Procurar em %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Sobre estes documentos" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Índice" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Pesquisar" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "Menu de navegação" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "Menu de navegação móvel" diff --git a/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo index 344542cf3..c8a6efcf9 100644 Binary files a/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po index 9b00a8674..6c51f774a 100644 --- a/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -6,22 +6,22 @@ # # Translators: # Rafael Fontenelle , 2021 -# Wellington Uemura , 2021 +# Wellington Uemura , 2022 # msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" -"Last-Translator: Wellington Uemura , 2021\n" +"Last-Translator: Wellington Uemura , 2022\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/readthedocs/teams/101354/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" +"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n" #. This is an ARIA section label for page links, including previous/next page #. link and links to GitHub/GitLab/etc. @@ -110,39 +110,39 @@ msgstr "tema" msgid "provided by %(readthedocs_web)s" msgstr "fornecido por %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Pesquisar em %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Sobre esses documentos" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Índice" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Pesquisar" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Copyright" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "Menu de navegação" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "Menu de navegação móvel" diff --git a/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo index 709ba4896..de5ea5876 100644 Binary files a/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po index b5acc2041..c013ef8d0 100644 --- a/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po @@ -12,14 +12,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Dmitry Shachnev , 2021\n" "Language-Team: Russian (https://www.transifex.com/readthedocs/teams/101354/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" @@ -110,39 +110,39 @@ msgstr "темы," msgid "provided by %(readthedocs_web)s" msgstr "предоставленной %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Поиск в %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Об этих документах" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Алфавитный указатель" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Поиск" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Авторские права" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Логотип" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "Меню навигации" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "Меню навигации для мобильных устройств" diff --git a/sphinx_rtd_theme/locale/sphinx.pot b/sphinx_rtd_theme/locale/sphinx.pot index 7a0906c30..63647ba1f 100644 --- a/sphinx_rtd_theme/locale/sphinx.pot +++ b/sphinx_rtd_theme/locale/sphinx.pot @@ -1,22 +1,22 @@ # Translations template for sphinx_rtd_theme. -# Copyright (C) 2021 ORGANIZATION +# Copyright (C) 2022 ORGANIZATION # This file is distributed under the same license as the sphinx_rtd_theme # project. -# FIRST AUTHOR , 2021. +# FIRST AUTHOR , 2022. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: sphinx_rtd_theme 1.0.0\n" +"Project-Id-Version: sphinx_rtd_theme 1.0.1a1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" #. This is an ARIA section label for page links, including previous/next page #. link and links to GitHub/GitLab/etc. @@ -104,39 +104,39 @@ msgstr "" msgid "provided by %(readthedocs_web)s" msgstr "" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "" #. This is an ARIA section label for the main navigation menu -#: sphinx_rtd_theme/layout.html:173 +#: sphinx_rtd_theme/layout.html:169 msgid "Navigation menu" msgstr "" #. This is an ARIA section label for the navigation menu that is visible when #. viewing the page on mobile devices -#: sphinx_rtd_theme/layout.html:195 +#: sphinx_rtd_theme/layout.html:191 msgid "Mobile navigation menu" msgstr "" diff --git a/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo index 5fd49bbd4..4050aac4d 100644 Binary files a/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po index 7f2fc1fa1..543b3a421 100644 --- a/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: Daniel Holmberg , 2020\n" "Language-Team: Swedish (https://www.transifex.com/readthedocs/teams/101354/sv/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -70,7 +70,7 @@ msgid "Built with %(sphinx_web)s using a" msgstr "Gjord med %(sphinx_web)s med hjälp av" #. "theme" refers to a theme for Sphinx, which alters the appearance of the -#. generated documenation +#. generated documentation #: sphinx_rtd_theme/footer.html:55 msgid "theme" msgstr "tema" @@ -82,28 +82,28 @@ msgstr "tema" msgid "provided by %(readthedocs_web)s" msgstr "erhållet av %(readthedocs_web)s" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "Sök i %(docstitle)s" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Om dessa dokument" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Index" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Sök" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Upphovsrätt" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" diff --git a/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo index a49a8b5d3..1d58648fc 100644 Binary files a/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po index d5da8bf90..0686fdf02 100644 --- a/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po @@ -11,14 +11,14 @@ msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (https://www.transifex.com/readthedocs/teams/101354/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -74,28 +74,28 @@ msgstr "tema" msgid "provided by %(readthedocs_web)s" msgstr "kullanılarak %(readthedocs_web)s tarafından sağlanmasıyla oluşturuldu" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" msgstr "%(docstitle)s içinde ara" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "Bu belgeler hakkında" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "Dizin" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "Arama" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "Telif hakkı" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" diff --git a/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo index 68378de34..60d75fa40 100644 Binary files a/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po index 67b7dffdb..7206bb4d6 100644 --- a/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -6,39 +6,52 @@ # # Translators: # 王赛 , 2019 -# Anthony , 2020 +# Anthony , 2022 +# JY3, 2022 # msgid "" msgstr "" "Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-09-13 13:35-0600\n" +"POT-Creation-Date: 2022-10-06 17:05+0200\n" "PO-Revision-Date: 2019-07-16 21:44+0000\n" -"Last-Translator: Anthony , 2020\n" +"Last-Translator: JY3, 2022\n" "Language-Team: Chinese (China) (https://www.transifex.com/readthedocs/teams/101354/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Generated-By: Babel 2.8.0\n" +"Generated-By: Babel 2.10.3\n" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" +#. This is an ARIA section label for page links, including previous/next page +#. link and links to GitHub/GitLab/etc. +#: sphinx_rtd_theme/breadcrumbs.html:22 +msgid "Page navigation" +msgstr "页面导航" + #: sphinx_rtd_theme/breadcrumbs.html:37 sphinx_rtd_theme/breadcrumbs.html:39 msgid "Edit on GitHub" -msgstr "在 GitHub 上修改" +msgstr "在 GitHub 上编辑" #: sphinx_rtd_theme/breadcrumbs.html:44 sphinx_rtd_theme/breadcrumbs.html:46 msgid "Edit on Bitbucket" -msgstr "在 Bitbucket 上修改" +msgstr "在 Bitbucket 上编辑" #: sphinx_rtd_theme/breadcrumbs.html:51 sphinx_rtd_theme/breadcrumbs.html:53 msgid "Edit on GitLab" -msgstr "在 GitLab 上修改" +msgstr "在 GitLab 上编辑" #: sphinx_rtd_theme/breadcrumbs.html:56 sphinx_rtd_theme/breadcrumbs.html:58 msgid "View page source" msgstr "查看页面源码" +#. This is an ARIA section label for sequential page links, such as previous +#. and next page links. +#: sphinx_rtd_theme/breadcrumbs.html:67 +msgid "Sequential page navigation" +msgstr "顺序式页面导航" + #: sphinx_rtd_theme/breadcrumbs.html:69 sphinx_rtd_theme/footer.html:6 msgid "Previous" msgstr "上一页" @@ -47,6 +60,21 @@ msgstr "上一页" msgid "Next" msgstr "下一页" +#. This is an ARIA section label for the footer section of the page. +#: sphinx_rtd_theme/footer.html:4 +msgid "Footer" +msgstr "页脚" + +#: sphinx_rtd_theme/footer.html:21 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© 版权所有 %(copyright)s。" + +#: sphinx_rtd_theme/footer.html:23 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© 版权所有 %(copyright)s。" + #. Build is a noun, not a verb #: sphinx_rtd_theme/footer.html:30 msgid "Build" @@ -55,7 +83,7 @@ msgstr "构建" #. the phrase "revision" comes from Git, referring to a commit #: sphinx_rtd_theme/footer.html:36 msgid "Revision" -msgstr "修订" +msgstr "版本" #: sphinx_rtd_theme/footer.html:41 #, python-format @@ -68,7 +96,7 @@ msgstr "最后更新时间 %(last_updated)s。" #: sphinx_rtd_theme/footer.html:53 #, python-format msgid "Built with %(sphinx_web)s using a" -msgstr "利用 %(sphinx_web)s 构建,使用了 " +msgstr "利用 %(sphinx_web)s 构建,使用的 " #. "theme" refers to a theme for Sphinx, which alters the appearance of the #. generated documentation @@ -81,33 +109,44 @@ msgstr "主题" #: sphinx_rtd_theme/footer.html:57 #, python-format msgid "provided by %(readthedocs_web)s" -msgstr "由 %(readthedocs_web)s开发" +msgstr "由 %(readthedocs_web)s 开发" -#: sphinx_rtd_theme/layout.html:97 +#: sphinx_rtd_theme/layout.html:93 #, python-format msgid "Search within %(docstitle)s" -msgstr "在 %(docstitle)s中搜索" +msgstr "在 %(docstitle)s 中搜索" -#: sphinx_rtd_theme/layout.html:105 +#: sphinx_rtd_theme/layout.html:101 msgid "About these documents" msgstr "关于此文档" -#: sphinx_rtd_theme/layout.html:108 +#: sphinx_rtd_theme/layout.html:104 msgid "Index" msgstr "索引" -#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11 +#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11 msgid "Search" msgstr "搜索" -#: sphinx_rtd_theme/layout.html:114 +#: sphinx_rtd_theme/layout.html:110 msgid "Copyright" msgstr "版权所有" -#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149 +#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145 msgid "Logo" msgstr "Logo" +#. This is an ARIA section label for the main navigation menu +#: sphinx_rtd_theme/layout.html:169 +msgid "Navigation menu" +msgstr "导航菜单" + +#. This is an ARIA section label for the navigation menu that is visible when +#. viewing the page on mobile devices +#: sphinx_rtd_theme/layout.html:191 +msgid "Mobile navigation menu" +msgstr "移动版导航菜单" + #: sphinx_rtd_theme/search.html:31 msgid "Please activate JavaScript to enable the search functionality." msgstr "请启用 JavaScript 以便使用搜索功能" @@ -125,15 +164,15 @@ msgstr "您的搜索没有匹配到任何文档。请确保所有单词拼写正 #: sphinx_rtd_theme/searchbox.html:4 msgid "Search docs" -msgstr "在文档中搜索" +msgstr "搜索文档" #: sphinx_rtd_theme/versions.html:3 sphinx_rtd_theme/versions.html:11 msgid "Versions" -msgstr "版本列表" +msgstr "版本" #: sphinx_rtd_theme/versions.html:17 msgid "Downloads" -msgstr "下载链接" +msgstr "下载" #. The phrase "Read the Docs" is not translated #: sphinx_rtd_theme/versions.html:24 @@ -142,8 +181,11 @@ msgstr "托管于 Read the Docs" #: sphinx_rtd_theme/versions.html:26 msgid "Project Home" -msgstr "项目首页" +msgstr "项目主页" #: sphinx_rtd_theme/versions.html:29 msgid "Builds" msgstr "构建" + +#~ msgid "Docs" +#~ msgstr "文档"