Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/readthedocs/sphinx_rtd_theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Balder Bach <benjamin@overtag.dk>2022-10-13 00:59:43 +0300
committerGitHub <noreply@github.com>2022-10-13 00:59:43 +0300
commit2c31b73c3bfae3aad2ebce6f2c9a91e8aa7598cd (patch)
tree6786ec0f90dc9fa85411c7079f9b29ef247336f5 /sphinx_rtd_theme
parentc6fa4e7a40a2b7428e9b1085cd994ec24f089368 (diff)
Release 1.1.0b1 + 1.1.0b2 (bump versions with bump2version) (#1352)
* Bump to 1.1.0 using bump2version * Use PEP440 and make it a beta, i.e. "1.1.0b1" * Auto-generated package-lock.json but with version bumps * Bump to 1.1.0b2, rebuild assets
Diffstat (limited to 'sphinx_rtd_theme')
-rw-r--r--sphinx_rtd_theme/__init__.py9
-rw-r--r--sphinx_rtd_theme/layout.html4
-rw-r--r--sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mobin2087 -> 2085 bytes
-rw-r--r--sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po16
-rw-r--r--sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mobin457 -> 455 bytes
-rw-r--r--sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po22
-rw-r--r--sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mobin2567 -> 2509 bytes
-rw-r--r--sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po21
-rw-r--r--sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mobin2380 -> 2378 bytes
-rw-r--r--sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po18
-rw-r--r--sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mobin2693 -> 2704 bytes
-rw-r--r--sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po19
-rw-r--r--sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mobin2547 -> 2493 bytes
-rw-r--r--sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po20
-rw-r--r--sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mobin2703 -> 2662 bytes
-rw-r--r--sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po28
-rw-r--r--sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mobin2750 -> 2748 bytes
-rw-r--r--sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po20
-rw-r--r--sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mobin2549 -> 2547 bytes
-rw-r--r--sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po20
-rw-r--r--sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mobin2339 -> 2337 bytes
-rw-r--r--sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po14
-rw-r--r--sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mobin2354 -> 2301 bytes
-rw-r--r--sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po20
-rw-r--r--sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mobin2780 -> 2726 bytes
-rw-r--r--sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.po26
-rw-r--r--sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mobin3449 -> 3447 bytes
-rw-r--r--sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po20
-rw-r--r--sphinx_rtd_theme/locale/sphinx.pot26
-rw-r--r--sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mobin2132 -> 2130 bytes
-rw-r--r--sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po18
-rw-r--r--sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mobin2117 -> 2115 bytes
-rw-r--r--sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po16
-rw-r--r--sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mobin2511 -> 2082 bytes
-rw-r--r--sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po84
35 files changed, 190 insertions, 231 deletions
diff --git a/sphinx_rtd_theme/__init__.py b/sphinx_rtd_theme/__init__.py
index f319098..9ea323f 100644
--- a/sphinx_rtd_theme/__init__.py
+++ b/sphinx_rtd_theme/__init__.py
@@ -31,6 +31,12 @@ def config_initiated(app, config):
_('The canonical_url option is deprecated, use the html_baseurl option from Sphinx instead.')
)
+
+def extend_html_context(app, pagename, templatename, context, doctree):
+ # Add ``sphinx_version_info`` tuple for use in Jinja templates
+ context['sphinx_version_info'] = sphinx_version
+
+
# See http://www.sphinx-doc.org/en/stable/theming.html#distribute-your-theme-as-a-python-package
def setup(app):
if python_version[0] < 3:
@@ -60,4 +66,7 @@ def setup(app):
else:
app.config.html_add_permalinks = "\uf0c1"
+ # Extend the default context when rendering the templates.
+ app.connect("html-page-context", extend_html_context)
+
return {'parallel_read_safe': True, 'parallel_write_safe': True}
diff --git a/sphinx_rtd_theme/layout.html b/sphinx_rtd_theme/layout.html
index bb0c069..99ec01b 100644
--- a/sphinx_rtd_theme/layout.html
+++ b/sphinx_rtd_theme/layout.html
@@ -9,10 +9,6 @@
{%- 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) -%}
-
<!DOCTYPE html>
<html class="{{ sphinx_writer }}" lang="{{ lang_attr }}" >
<head>
diff --git a/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo b/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo
index c52bc86..70c4b3d 100644
--- a/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/de/LC_MESSAGES/sphinx.po
index 3f21a2d..30244d3 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
"Last-Translator: Tom Kunze <transifex.com@tomabrafix.de>, 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.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "%(docstitle)s durchsuchen"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Über diese Dokumentation"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Index"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Suche"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Copyright"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 c199388..9126dcc 100644
--- a/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/en/LC_MESSAGES/sphinx.po
index c624ca2..696262e 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 15:43-0600\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: en\n"
"Language-Team: en <LL@li.org>\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.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr ""
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr ""
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr ""
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr ""
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr ""
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr ""
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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
+#: sphinx_rtd_theme/layout.html:195
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 d7cfb4d..ca17fdf 100644
--- a/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po
index ca45899..06f282c 100644
--- a/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po
+++ b/sphinx_rtd_theme/locale/es/LC_MESSAGES/sphinx.po
@@ -7,22 +7,21 @@
# Translators:
# Anthony <aj@ohess.org>, 2019
# Radina Matic <radina.matic@gmail.com>, 2021
-# Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
-"Last-Translator: Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2022\n"
+"Last-Translator: Radina Matic <radina.matic@gmail.com>, 2021\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.10.3\n"
+"Generated-By: Babel 2.8.0\n"
"Language: es\n"
-"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: sphinx_rtd_theme/breadcrumbs.html:37 sphinx_rtd_theme/breadcrumbs.html:39
msgid "Edit on GitHub"
@@ -99,28 +98,28 @@ msgstr "tema"
msgid "provided by %(readthedocs_web)s"
msgstr "proporcionado por %(readthedocs_web)s"
-#: sphinx_rtd_theme/layout.html:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Buscar en %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Sobre esta documentación"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Índice"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Búsqueda"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Derechos de autor"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 876c2eb..523134e 100644
--- a/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/et/LC_MESSAGES/sphinx.po
index d56d01d..aa66959 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
"Last-Translator: Ivar Smolin <okul@linux.ee>, 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.10.3\n"
+"Generated-By: Babel 2.8.0\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 documentation
+#. generated documenation
#: 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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Otsi dokumendist %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Nende dokumentide kirjeldused"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Indeks"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Otsing"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Autoriõigus"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 4cd180d..973e70d 100644
--- a/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.mo
Binary files 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 15c3a58..7a61ac0 100644
--- a/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po
+++ b/sphinx_rtd_theme/locale/fa_IR/LC_MESSAGES/sphinx.po
@@ -6,20 +6,19 @@
#
# Translators:
# Anthony <aj@ohess.org>, 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
-"Last-Translator: Peyman M., 2022\n"
+"Last-Translator: Anthony <aj@ohess.org>, 2021\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.10.3\n"
+"Generated-By: Babel 2.8.0\n"
"Language: fa_IR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
@@ -93,28 +92,28 @@ msgstr "پوسته"
msgid "provided by %(readthedocs_web)s"
msgstr "تهیّه شده با %(readthedocs_web)s"
-#: sphinx_rtd_theme/layout.html:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "جستجو در %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "درباره این مستندات"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "فهرست"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "جستجوی"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "کپی رایت"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 a8ac9ba..f69541a 100644
--- a/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/fr/LC_MESSAGES/sphinx.po
index b253e26..c474503 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
"Last-Translator: Radina Matic <radina.matic@gmail.com>, 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.10.3\n"
+"Generated-By: Babel 2.8.0\n"
"Language: fr\n"
-"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\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 documentation
+#. generated documenation
#: 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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Rechercher dans %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "À propos de cette documentation"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Index"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Rechercher"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Droits d'auteur"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 be579cf..61cf97b 100644
--- a/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po
index be39590..cb58e43 100644
--- a/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po
+++ b/sphinx_rtd_theme/locale/it/LC_MESSAGES/sphinx.po
@@ -7,23 +7,21 @@
# Translators:
# Anthony <aj@ohess.org>, 2021
# Maurizio Paglia <mpaglia0@gmail.com>, 2021
-# albanobattistella <albano_battistella@hotmail.com>, 2022
-# Benjamin Bach <benjaoming@gmail.com>, 2022
#
msgid ""
msgstr ""
"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
-"Last-Translator: Benjamin Bach <benjaoming@gmail.com>, 2022\n"
+"Last-Translator: Maurizio Paglia <mpaglia0@gmail.com>, 2021\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.10.3\n"
+"Generated-By: Babel 2.8.0\n"
"Language: it\n"
-"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#. This is an ARIA section label for page links, including previous/next page
#. link and links to GitHub/GitLab/etc.
@@ -97,7 +95,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 usando un"
+msgstr "Realizzato con %(sphinx_web)s e il tema"
#. "theme" refers to a theme for Sphinx, which alters the appearance of the
#. generated documentation
@@ -112,39 +110,39 @@ msgstr "tema"
msgid "provided by %(readthedocs_web)s"
msgstr "fornito da %(readthedocs_web)s"
-#: sphinx_rtd_theme/layout.html:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Cerca in %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Nota sulla documentazione"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Indice"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Ricerca"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Copyright"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr "Logo"
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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:191
+#: sphinx_rtd_theme/layout.html:195
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 00430ef..6c37e18 100644
--- a/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/lt/LC_MESSAGES/sphinx.po
index 5aabab3..de2afaa 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\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.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Ieškoti %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Apie šiuos dokumentus"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Indeksas"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Paieška"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Autorių teisės"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr "Logo"
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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:191
+#: sphinx_rtd_theme/layout.html:195
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 bc024e2..863bf7c 100644
--- a/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/nl/LC_MESSAGES/sphinx.po
index efbfce4..aab6e03 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\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.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Zoek binnen %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Over deze documenten"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Index"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Zoek"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Copyright"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr "Logo"
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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:191
+#: sphinx_rtd_theme/layout.html:195
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 4cf53b4..883fc63 100644
--- a/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/pl/LC_MESSAGES/sphinx.po
index 9435466..219977c 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\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.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Szukaj w %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "O tych dokumentach"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Indeks"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Szukaj"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
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 274bfcc..8d13083 100644
--- a/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/pt/LC_MESSAGES/sphinx.po
index 1285eb7..88431ef 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
"Last-Translator: Ana Costa <anacosta.xl@gmail.com>, 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.10.3\n"
+"Generated-By: Babel 2.8.0\n"
"Language: pt\n"
-"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Procurar em %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Sobre estes documentos"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Índice"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Pesquisar"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr "Logo"
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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:191
+#: sphinx_rtd_theme/layout.html:195
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 c8a6efc..344542c 100644
--- a/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/pt_BR/LC_MESSAGES/sphinx.mo
Binary files 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 6c51f77..9b00a86 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 <rffontenelle@gmail.com>, 2021
-# Wellington Uemura <wellingtonuemura@gmail.com>, 2022
+# Wellington Uemura <wellingtonuemura@gmail.com>, 2021
#
msgid ""
msgstr ""
"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
-"Last-Translator: Wellington Uemura <wellingtonuemura@gmail.com>, 2022\n"
+"Last-Translator: Wellington Uemura <wellingtonuemura@gmail.com>, 2021\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.10.3\n"
+"Generated-By: Babel 2.8.0\n"
"Language: pt_BR\n"
-"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Pesquisar em %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Sobre esses documentos"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Índice"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Pesquisar"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Copyright"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr "Logo"
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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:191
+#: sphinx_rtd_theme/layout.html:195
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 de5ea58..709ba48 100644
--- a/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/ru/LC_MESSAGES/sphinx.po
index c013ef8..b5acc20 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
"Last-Translator: Dmitry Shachnev <mitya57@gmail.com>, 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.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Поиск в %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Об этих документах"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Алфавитный указатель"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Поиск"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Авторские права"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr "Логотип"
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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
+#: sphinx_rtd_theme/layout.html:195
msgid "Mobile navigation menu"
msgstr "Меню навигации для мобильных устройств"
diff --git a/sphinx_rtd_theme/locale/sphinx.pot b/sphinx_rtd_theme/locale/sphinx.pot
index 63647ba..7a0906c 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) 2022 ORGANIZATION
+# Copyright (C) 2021 ORGANIZATION
# This file is distributed under the same license as the sphinx_rtd_theme
# project.
-# FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2021.
#
#, fuzzy
msgid ""
msgstr ""
-"Project-Id-Version: sphinx_rtd_theme 1.0.1a1\n"
+"Project-Id-Version: sphinx_rtd_theme 1.0.0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Generated-By: Babel 2.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr ""
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr ""
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr ""
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr ""
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr ""
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
msgid "Logo"
msgstr ""
#. This is an ARIA section label for the main navigation menu
-#: sphinx_rtd_theme/layout.html:169
+#: sphinx_rtd_theme/layout.html:173
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
+#: sphinx_rtd_theme/layout.html:195
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 4050aac..5fd49bb 100644
--- a/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/sv/LC_MESSAGES/sphinx.po
index 543b3a4..7f2fc1f 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
"Last-Translator: Daniel Holmberg <daniel.holmberg97@gmail.com>, 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.10.3\n"
+"Generated-By: Babel 2.8.0\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 documentation
+#. generated documenation
#: 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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "Sök i %(docstitle)s"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Om dessa dokument"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Index"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Sök"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Upphovsrätt"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 1d58648..a49a8b5 100644
--- a/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.mo
Binary files differ
diff --git a/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po b/sphinx_rtd_theme/locale/tr/LC_MESSAGES/sphinx.po
index 0686fdf..d5da8bf 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: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\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.10.3\n"
+"Generated-By: Babel 2.8.0\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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
msgstr "%(docstitle)s içinde ara"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "Bu belgeler hakkında"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "Dizin"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "Arama"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "Telif hakkı"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 60d75fa..68378de 100644
--- a/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo
+++ b/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.mo
Binary files 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 7206bb4..67b7dff 100644
--- a/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po
+++ b/sphinx_rtd_theme/locale/zh_CN/LC_MESSAGES/sphinx.po
@@ -6,52 +6,39 @@
#
# Translators:
# 王赛 <wangsai@bootcss.com>, 2019
-# Anthony <aj@ohess.org>, 2022
-# JY3, 2022
+# Anthony <aj@ohess.org>, 2020
#
msgid ""
msgstr ""
"Project-Id-Version: sphinx_rtd_theme 0.4.3.dev0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
-"POT-Creation-Date: 2022-10-06 17:05+0200\n"
+"POT-Creation-Date: 2021-09-13 13:35-0600\n"
"PO-Revision-Date: 2019-07-16 21:44+0000\n"
-"Last-Translator: JY3, 2022\n"
+"Last-Translator: Anthony <aj@ohess.org>, 2020\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.10.3\n"
+"Generated-By: Babel 2.8.0\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 "上一页"
@@ -60,21 +47,6 @@ 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 "&#169; <a href=\"%(path)s\">Copyright</a> %(copyright)s."
-msgstr "&#169; <a href=\"%(path)s\">版权所有</a> %(copyright)s。"
-
-#: sphinx_rtd_theme/footer.html:23
-#, python-format
-msgid "&#169; Copyright %(copyright)s."
-msgstr "&#169; 版权所有 %(copyright)s。"
-
#. Build is a noun, not a verb
#: sphinx_rtd_theme/footer.html:30
msgid "Build"
@@ -83,7 +55,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
@@ -96,7 +68,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
@@ -109,44 +81,33 @@ 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:93
+#: sphinx_rtd_theme/layout.html:97
#, python-format
msgid "Search within %(docstitle)s"
-msgstr "在 %(docstitle)s 中搜索"
+msgstr "在 %(docstitle)s中搜索"
-#: sphinx_rtd_theme/layout.html:101
+#: sphinx_rtd_theme/layout.html:105
msgid "About these documents"
msgstr "关于此文档"
-#: sphinx_rtd_theme/layout.html:104
+#: sphinx_rtd_theme/layout.html:108
msgid "Index"
msgstr "索引"
-#: sphinx_rtd_theme/layout.html:107 sphinx_rtd_theme/search.html:11
+#: sphinx_rtd_theme/layout.html:111 sphinx_rtd_theme/search.html:11
msgid "Search"
msgstr "搜索"
-#: sphinx_rtd_theme/layout.html:110
+#: sphinx_rtd_theme/layout.html:114
msgid "Copyright"
msgstr "版权所有"
-#: sphinx_rtd_theme/layout.html:143 sphinx_rtd_theme/layout.html:145
+#: sphinx_rtd_theme/layout.html:147 sphinx_rtd_theme/layout.html:149
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 以便使用搜索功能"
@@ -164,15 +125,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
@@ -181,11 +142,8 @@ 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 "文档"