python-docs-theme 2025.9.1__py3-none-any.whl → 2025.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. python_docs_theme/__init__.py +22 -6
  2. python_docs_theme/layout.html +6 -6
  3. python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.mo +0 -0
  4. python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.po +127 -0
  5. python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po +132 -0
  6. python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.mo +0 -0
  7. python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po +0 -1
  8. python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.mo +0 -0
  9. python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.po +120 -0
  10. python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.mo +0 -0
  11. python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po +129 -0
  12. python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.mo +0 -0
  13. python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po +0 -1
  14. python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.mo +0 -0
  15. python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po +124 -0
  16. python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.mo +0 -0
  17. python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po +0 -1
  18. python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.mo +0 -0
  19. python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po +0 -1
  20. python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.mo +0 -0
  21. python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.po +130 -0
  22. python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.mo +0 -0
  23. python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.po +129 -0
  24. python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.mo +0 -0
  25. python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po +0 -1
  26. python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.mo +0 -0
  27. python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po +0 -1
  28. python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.mo +0 -0
  29. python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po +0 -1
  30. python_docs_theme/static/copybutton.js +1 -1
  31. python_docs_theme/static/pydoctheme.css +3 -1
  32. {python_docs_theme-2025.9.1.dist-info → python_docs_theme-2025.10.dist-info}/METADATA +9 -2
  33. python_docs_theme-2025.10.dist-info/RECORD +47 -0
  34. python_docs_theme/static/py.png +0 -0
  35. python_docs_theme-2025.9.1.dist-info/RECORD +0 -28
  36. {python_docs_theme-2025.9.1.dist-info → python_docs_theme-2025.10.dist-info}/WHEEL +0 -0
  37. {python_docs_theme-2025.9.1.dist-info → python_docs_theme-2025.10.dist-info}/entry_points.txt +0 -0
  38. {python_docs_theme-2025.9.1.dist-info → python_docs_theme-2025.10.dist-info}/licenses/LICENSE +0 -0
@@ -6,26 +6,42 @@ from sphinx.locale import get_translation
6
6
 
7
7
  TYPE_CHECKING = False
8
8
  if TYPE_CHECKING:
9
+ from typing import Any
10
+
9
11
  from sphinx.application import Sphinx
10
12
  from sphinx.util.typing import ExtensionMetadata
11
13
 
12
- __version__ = "2025.9.1"
14
+ __version__ = "2025.10"
13
15
 
14
16
  THEME_PATH = Path(__file__).resolve().parent
15
17
  LOCALE_DIR = THEME_PATH / "locale"
16
18
  MESSAGE_CATALOG_NAME = "python-docs-theme"
17
19
 
18
20
 
21
+ def add_translation_to_context(
22
+ app: Sphinx,
23
+ pagename: str,
24
+ templatename: str,
25
+ context: dict[str, Any],
26
+ doctree: None,
27
+ ) -> None:
28
+ theme_gettext = get_translation(MESSAGE_CATALOG_NAME)
29
+ sphinx_gettext = get_translation("sphinx")
30
+
31
+ def combined(message: str) -> str:
32
+ translation = theme_gettext(message)
33
+ if translation == message:
34
+ return sphinx_gettext(message)
35
+ return translation
36
+
37
+ context["_"] = context["gettext"] = context["ngettext"] = combined
38
+
39
+
19
40
  def setup(app: Sphinx) -> ExtensionMetadata:
20
41
  app.require_sphinx("7.3")
21
42
 
22
43
  app.add_html_theme("python_docs_theme", str(THEME_PATH))
23
44
  app.add_message_catalog(MESSAGE_CATALOG_NAME, LOCALE_DIR)
24
-
25
- def add_translation_to_context(app, pagename, templatename, context, doctree):
26
- _ = get_translation(MESSAGE_CATALOG_NAME)
27
- context["_"] = context["gettext"] = context["ngettext"] = _
28
-
29
45
  app.connect("html-page-context", add_translation_to_context)
30
46
 
31
47
  return {
@@ -136,13 +136,13 @@
136
136
 
137
137
  {% block footer %}
138
138
  <div class="footer">
139
- &copy; {% if theme_copyright_url or hasdoc('copyright') %}
139
+ &copy; {% if theme_copyright_url or hasdoc('copyright') -%}
140
140
  <a href="{% if theme_copyright_url %}{{ theme_copyright_url }}{% else %}{{ pathto('copyright') }}{% endif %}">
141
- {% endif %}
142
- {% trans %}Copyright{% endtrans %}
143
- {% if theme_copyright_url or hasdoc('copyright') %}
144
- </a>
145
- {% endif %} {{ copyright|e }}.
141
+ {%- endif -%}
142
+ {%- trans %}Copyright{% endtrans -%}
143
+ {%- if theme_copyright_url or hasdoc('copyright') -%}
144
+ </a>
145
+ {%- endif %} {{ copyright|e }}.
146
146
  <br>
147
147
  {% trans %}This page is licensed under the Python Software Foundation License Version 2.{% endtrans %}
148
148
  <br>
@@ -0,0 +1,127 @@
1
+ # Translations template for python-docs-theme.
2
+ # Copyright (C) 2025 Python Software Foundation
3
+ # This file is distributed under the same license as the python-docs-theme
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # Mostapha Mostapha, 2025
9
+ #
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: python-docs-theme 2025.9.2\n"
13
+ "Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
14
+ "POT-Creation-Date: 2025-10-13 01:45+0000\n"
15
+ "PO-Revision-Date: 2025-09-06 07:41+0000\n"
16
+ "Last-Translator: Mostapha Mostapha, 2025\n"
17
+ "Language-Team: Arabic (https://app.transifex.com/python-doc/teams/5390/ar/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Generated-By: Babel 2.17.0\n"
22
+ "Language: ar\n"
23
+ "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
24
+
25
+ #: python_docs_theme/footerdonate.html:1
26
+ msgid "The Python Software Foundation is a non-profit corporation."
27
+ msgstr "مؤسسة بايثون للبرمجيات هي مؤسسة غير ربحية."
28
+
29
+ #: python_docs_theme/footerdonate.html:2
30
+ msgid "Please donate."
31
+ msgstr "من فضلك تبرع."
32
+
33
+ #: python_docs_theme/layout.html:6
34
+ msgid "Navigation"
35
+ msgstr "التنقل"
36
+
37
+ #: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
38
+ msgid "Quick search"
39
+ msgstr "بحث سريع"
40
+
41
+ #: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
42
+ msgid "Go"
43
+ msgstr "انطلق"
44
+
45
+ #: python_docs_theme/layout.html:60
46
+ msgid "Theme"
47
+ msgstr "المظهر"
48
+
49
+ #: python_docs_theme/layout.html:62
50
+ msgid "Auto"
51
+ msgstr "ذاتي"
52
+
53
+ #: python_docs_theme/layout.html:63
54
+ msgid "Light"
55
+ msgstr "الوضع الفاتح"
56
+
57
+ #: python_docs_theme/layout.html:64
58
+ msgid "Dark"
59
+ msgstr "الوضع المظلم"
60
+
61
+ #: python_docs_theme/layout.html:96
62
+ msgid "Menu"
63
+ msgstr "القائمة"
64
+
65
+ #: python_docs_theme/layout.html:142
66
+ msgid "Copyright"
67
+ msgstr "حقوق الطبع والنشر"
68
+
69
+ #: python_docs_theme/layout.html:147
70
+ msgid ""
71
+ "This page is licensed under the Python Software Foundation License Version "
72
+ "2."
73
+ msgstr "تُرخَّص هذه الصفحة بموجب رخصة مؤسسة بايثون للبرمجيات الإصدار 2."
74
+
75
+ #: python_docs_theme/layout.html:149
76
+ msgid ""
77
+ "Examples, recipes, and other code in the documentation are additionally "
78
+ "licensed under the Zero Clause BSD License."
79
+ msgstr ""
80
+ "أمثلة الكود والوصفات وغيرها في التوثيق مرخّصة أيضًا بموجب رخصة BSD الصفرية "
81
+ "(Zero Clause BSD License)."
82
+
83
+ #: python_docs_theme/layout.html:152
84
+ #, python-format
85
+ msgid ""
86
+ "See <a href=\"%(license_file)s\">History and License</a> for more "
87
+ "information."
88
+ msgstr ""
89
+ "انظر القسم <a href=\"%(license_file)s\"> التاريخ والترخيص </a> لمزيد من "
90
+ "المعلومات."
91
+
92
+ #: python_docs_theme/layout.html:155
93
+ #, python-format
94
+ msgid "Hosted on %(hosted_on)s."
95
+ msgstr "مُستضاف على %(hosted_on)s."
96
+
97
+ #: python_docs_theme/layout.html:163
98
+ #, python-format
99
+ msgid "Last updated on %(last_updated)s."
100
+ msgstr "آخر تحديث في %(last_updated)s."
101
+
102
+ #: python_docs_theme/layout.html:166
103
+ #, python-format
104
+ msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
105
+ msgstr "<a href=\"%(theme_issues_url)s\"> تم العثور على خطأ </a>؟"
106
+
107
+ #: python_docs_theme/layout.html:170
108
+ #, python-format
109
+ msgid ""
110
+ "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
111
+ "%(sphinx_version)s."
112
+ msgstr ""
113
+ "تم إنشاء المحتوى باستخدام <a href=\"https://www.sphinx-doc.org/\"> Sphinx "
114
+ "</a> %(sphinx_version)s."
115
+
116
+ #: python_docs_theme/static/copybutton.js:30
117
+ #: python_docs_theme/static/copybutton.js:55
118
+ msgid "Copy"
119
+ msgstr "نسخ"
120
+
121
+ #: python_docs_theme/static/copybutton.js:31
122
+ msgid "Copy to clipboard"
123
+ msgstr "نسخ إلى الحافظة"
124
+
125
+ #: python_docs_theme/static/copybutton.js:53
126
+ msgid "Copied!"
127
+ msgstr "تم النسخ!"
@@ -0,0 +1,132 @@
1
+ # Translations template for python-docs-theme.
2
+ # Copyright (C) 2025 Python Software Foundation
3
+ # This file is distributed under the same license as the python-docs-theme
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # Cristián Maureira-Fredes, 2025
9
+ #
10
+ #, fuzzy
11
+ msgid ""
12
+ msgstr ""
13
+ "Project-Id-Version: python-docs-theme 2025.5\n"
14
+ "Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
15
+ "POT-Creation-Date: 2025-09-06 08:40+0100\n"
16
+ "PO-Revision-Date: 2025-09-09 10:20+0200\n"
17
+ "Last-Translator: Cristián Maureira-Fredes, 2025\n"
18
+ "Language-Team: \n"
19
+ "Language: de\n"
20
+ "MIME-Version: 1.0\n"
21
+ "Content-Type: text/plain; charset=UTF-8\n"
22
+ "Content-Transfer-Encoding: 8bit\n"
23
+ "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
24
+ "1 : 2;\n"
25
+ "Generated-By: Babel 2.16.0\n"
26
+ "X-Generator: Poedit 3.6\n"
27
+
28
+ #: python_docs_theme/footerdonate.html:1
29
+ msgid "The Python Software Foundation is a non-profit corporation."
30
+ msgstr "Die Python Software Foundation ist eine gemeinnützige Organisation."
31
+
32
+ #: python_docs_theme/footerdonate.html:2
33
+ msgid "Please donate."
34
+ msgstr "Spenden Sie bitte."
35
+
36
+ #: python_docs_theme/layout.html:6
37
+ msgid "Navigation"
38
+ msgstr "Navigation"
39
+
40
+ #: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
41
+ msgid "Quick search"
42
+ msgstr "Schnellsuche"
43
+
44
+ #: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
45
+ msgid "Go"
46
+ msgstr "Los"
47
+
48
+ #: python_docs_theme/layout.html:60
49
+ msgid "Theme"
50
+ msgstr "Thema"
51
+
52
+ #: python_docs_theme/layout.html:62
53
+ msgid "Auto"
54
+ msgstr "Auto"
55
+
56
+ #: python_docs_theme/layout.html:63
57
+ msgid "Light"
58
+ msgstr "Hell"
59
+
60
+ #: python_docs_theme/layout.html:64
61
+ msgid "Dark"
62
+ msgstr "Dunkel"
63
+
64
+ #: python_docs_theme/layout.html:96
65
+ msgid "Menu"
66
+ msgstr "Menü"
67
+
68
+ #: python_docs_theme/layout.html:142
69
+ msgid "Copyright"
70
+ msgstr "Copyright"
71
+
72
+ #: python_docs_theme/layout.html:147
73
+ msgid ""
74
+ "This page is licensed under the Python Software Foundation License Version "
75
+ "2."
76
+ msgstr ""
77
+ "Diese Seite ist unter der Python Software Foundation License Version 2 "
78
+ "lizenziert."
79
+
80
+ #: python_docs_theme/layout.html:149
81
+ msgid ""
82
+ "Examples, recipes, and other code in the documentation are additionally "
83
+ "licensed under the Zero Clause BSD License."
84
+ msgstr ""
85
+ "Beispiele, Rezepte und anderer Code in der Dokumentation sind zusätzlich "
86
+ "unter der Zero Clause BSD-Lizenz lizenziert."
87
+
88
+ #: python_docs_theme/layout.html:152
89
+ #, python-format
90
+ msgid ""
91
+ "See <a href=\"%(license_file)s\">History and License</a> for more "
92
+ "information."
93
+ msgstr ""
94
+ "Weitere Informationen finden Sie unter <a "
95
+ "href=\"%(license_file)s\">Verlauf und Lizenz</a>."
96
+
97
+ #: python_docs_theme/layout.html:155
98
+ #, python-format
99
+ msgid "Hosted on %(hosted_on)s."
100
+ msgstr "Gehostet auf %(hosted_on)s."
101
+
102
+ #: python_docs_theme/layout.html:163
103
+ #, python-format
104
+ msgid "Last updated on %(last_updated)s."
105
+ msgstr "Zuletzt aktualisiert am %(last_updated)s."
106
+
107
+ #: python_docs_theme/layout.html:166
108
+ #, python-format
109
+ msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
110
+ msgstr "<a href=\"%(theme_issues_url)s\">Fehler gefunden</a>?"
111
+
112
+ #: python_docs_theme/layout.html:170
113
+ #, python-format
114
+ msgid ""
115
+ "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
116
+ "%(sphinx_version)s."
117
+ msgstr ""
118
+ "Erstellt mit <a href=\"https://www.sphinx-doc.org/\">Sphinx</"
119
+ "a>%(sphinx_version)s."
120
+
121
+ #: python_docs_theme/static/copybutton.js:30
122
+ #: python_docs_theme/static/copybutton.js:55
123
+ msgid "Copy"
124
+ msgstr "Kopieren"
125
+
126
+ #: python_docs_theme/static/copybutton.js:31
127
+ msgid "Copy to clipboard"
128
+ msgstr "In die Zwischenablage kopieren"
129
+
130
+ #: python_docs_theme/static/copybutton.js:53
131
+ msgid "Copied!"
132
+ msgstr "Kopiert!"
@@ -7,7 +7,6 @@
7
7
  # Translators:
8
8
  # Cristián Maureira-Fredes, 2025
9
9
  #
10
- #, fuzzy
11
10
  msgid ""
12
11
  msgstr ""
13
12
  "Project-Id-Version: python-docs-theme 2025.5\n"
@@ -0,0 +1,120 @@
1
+ # Copyright (C) 2025 Python Software Foundation
2
+ # This file is distributed under the same license as the python-docs-theme
3
+ # project.
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: python-docs-theme 2025.5\n"
7
+ "Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
8
+ "POT-Creation-Date: 2025-09-06 08:40+0100\n"
9
+ "PO-Revision-Date: 2025-10-17 23:24+0200\n"
10
+ "Last-Translator: Julien Palard <julien@palard.fr>\n"
11
+ "Language-Team: FRENCH <traductions@lists.afpy.org>\n"
12
+ "Language: fr\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "X-Generator: Poedit 3.6\n"
17
+
18
+ #: python_docs_theme/footerdonate.html:1
19
+ msgid "The Python Software Foundation is a non-profit corporation."
20
+ msgstr "La Python Software Foundation est une association à but non lucratif."
21
+
22
+ #: python_docs_theme/footerdonate.html:2
23
+ msgid "Please donate."
24
+ msgstr "Elle vit de vos dons."
25
+
26
+ #: python_docs_theme/layout.html:6
27
+ msgid "Navigation"
28
+ msgstr "Navigation"
29
+
30
+ #: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
31
+ msgid "Quick search"
32
+ msgstr "Recherche rapide"
33
+
34
+ #: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
35
+ msgid "Go"
36
+ msgstr "Rechercher"
37
+
38
+ #: python_docs_theme/layout.html:60
39
+ msgid "Theme"
40
+ msgstr "Thème"
41
+
42
+ #: python_docs_theme/layout.html:62
43
+ msgid "Auto"
44
+ msgstr "Auto"
45
+
46
+ #: python_docs_theme/layout.html:63
47
+ msgid "Light"
48
+ msgstr "Clair"
49
+
50
+ #: python_docs_theme/layout.html:64
51
+ msgid "Dark"
52
+ msgstr "Sombre"
53
+
54
+ #: python_docs_theme/layout.html:96
55
+ msgid "Menu"
56
+ msgstr "Menu"
57
+
58
+ #: python_docs_theme/layout.html:142
59
+ msgid "Copyright"
60
+ msgstr "Copyright"
61
+
62
+ #: python_docs_theme/layout.html:147
63
+ msgid ""
64
+ "This page is licensed under the Python Software Foundation License Version 2."
65
+ msgstr ""
66
+ "La licence de cette page est la Python Software Foundation License Version 2."
67
+
68
+ #: python_docs_theme/layout.html:149
69
+ msgid ""
70
+ "Examples, recipes, and other code in the documentation are additionally "
71
+ "licensed under the Zero Clause BSD License."
72
+ msgstr ""
73
+ "La licence des exemples, recettes, et autres morceaux de code se trouvant "
74
+ "dans la documentation est la Zero Clause BSD License."
75
+
76
+ #: python_docs_theme/layout.html:152
77
+ #, python-format
78
+ msgid ""
79
+ "See <a href=\"%(license_file)s\">History and License</a> for more "
80
+ "information."
81
+ msgstr ""
82
+ "Pour plus d'informations, consultez <a href=\"%(license_file)s\">Histoire et "
83
+ "licence</a>."
84
+
85
+ #: python_docs_theme/layout.html:155
86
+ #, python-format
87
+ msgid "Hosted on %(hosted_on)s."
88
+ msgstr "Hébergé sur %(hosted_on)s."
89
+
90
+ #: python_docs_theme/layout.html:163
91
+ #, python-format
92
+ msgid "Last updated on %(last_updated)s."
93
+ msgstr "Dernière mise à jour : %(last_updated)s."
94
+
95
+ #: python_docs_theme/layout.html:166
96
+ #, python-format
97
+ msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
98
+ msgstr "<a href=\"%(theme_issues_url)s\">Un bogue</a> ?"
99
+
100
+ #: python_docs_theme/layout.html:170
101
+ #, python-format
102
+ msgid ""
103
+ "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
104
+ "%(sphinx_version)s."
105
+ msgstr ""
106
+ "Crée par <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
107
+ "%(sphinx_version)s."
108
+
109
+ #: python_docs_theme/static/copybutton.js:30
110
+ #: python_docs_theme/static/copybutton.js:55
111
+ msgid "Copy"
112
+ msgstr "Copier"
113
+
114
+ #: python_docs_theme/static/copybutton.js:31
115
+ msgid "Copy to clipboard"
116
+ msgstr "Copier dans le presse-papier"
117
+
118
+ #: python_docs_theme/static/copybutton.js:53
119
+ msgid "Copied!"
120
+ msgstr "Copié !"
@@ -0,0 +1,129 @@
1
+ # Translations template for python-docs-theme.
2
+ # Copyright (C) 2025 Python Software Foundation
3
+ # This file is distributed under the same license as the python-docs-theme
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # Hengky Kurniawan, 2025
9
+ #
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: python-docs-theme 2025.5\n"
13
+ "Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
14
+ "POT-Creation-Date: 2025-09-06 08:40+0100\n"
15
+ "PO-Revision-Date: 2025-09-06 07:41+0000\n"
16
+ "Last-Translator: Hengky Kurniawan, 2025\n"
17
+ "Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/id/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Generated-By: Babel 2.16.0\n"
22
+ "Language: id\n"
23
+ "Plural-Forms: nplurals=1; plural=0;\n"
24
+
25
+ #: python_docs_theme/footerdonate.html:1
26
+ msgid "The Python Software Foundation is a non-profit corporation."
27
+ msgstr "Python Software Foundation adalah sebuah korporasi nirlaba."
28
+
29
+ #: python_docs_theme/footerdonate.html:2
30
+ msgid "Please donate."
31
+ msgstr "Mari berdonasi."
32
+
33
+ #: python_docs_theme/layout.html:6
34
+ msgid "Navigation"
35
+ msgstr "Navigasi"
36
+
37
+ #: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
38
+ msgid "Quick search"
39
+ msgstr "Pencarian cepat"
40
+
41
+ #: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
42
+ msgid "Go"
43
+ msgstr "Telusuri"
44
+
45
+ #: python_docs_theme/layout.html:60
46
+ msgid "Theme"
47
+ msgstr "Tema"
48
+
49
+ #: python_docs_theme/layout.html:62
50
+ msgid "Auto"
51
+ msgstr "Otomatis"
52
+
53
+ #: python_docs_theme/layout.html:63
54
+ msgid "Light"
55
+ msgstr "Terang"
56
+
57
+ #: python_docs_theme/layout.html:64
58
+ msgid "Dark"
59
+ msgstr "Gelap"
60
+
61
+ #: python_docs_theme/layout.html:96
62
+ msgid "Menu"
63
+ msgstr "Menu"
64
+
65
+ #: python_docs_theme/layout.html:142
66
+ msgid "Copyright"
67
+ msgstr "Hak cipta"
68
+
69
+ #: python_docs_theme/layout.html:147
70
+ msgid ""
71
+ "This page is licensed under the Python Software Foundation License Version "
72
+ "2."
73
+ msgstr ""
74
+ "Halaman ini dilisensikan di bawah Lisensi Python Software Foundation Versi "
75
+ "2."
76
+
77
+ #: python_docs_theme/layout.html:149
78
+ msgid ""
79
+ "Examples, recipes, and other code in the documentation are additionally "
80
+ "licensed under the Zero Clause BSD License."
81
+ msgstr ""
82
+ "Contoh, resep, dan kode lainnya dalam dokumentasi juga dilisensikan di bawah"
83
+ " Lisensi Zero Clause BSD."
84
+
85
+ #: python_docs_theme/layout.html:152
86
+ #, python-format
87
+ msgid ""
88
+ "See <a href=\"%(license_file)s\">History and License</a> for more "
89
+ "information."
90
+ msgstr ""
91
+ "Lihat <a href=\"%(license_file)s\">Sejarah dan Lisensi</a> untuk informasi "
92
+ "lebih lanjut."
93
+
94
+ #: python_docs_theme/layout.html:155
95
+ #, python-format
96
+ msgid "Hosted on %(hosted_on)s."
97
+ msgstr "Dihos di %(hosted_on)s."
98
+
99
+ #: python_docs_theme/layout.html:163
100
+ #, python-format
101
+ msgid "Last updated on %(last_updated)s."
102
+ msgstr "Terakhir diperbarui pada %(last_updated)s."
103
+
104
+ #: python_docs_theme/layout.html:166
105
+ #, python-format
106
+ msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
107
+ msgstr "<a href=\"%(theme_issues_url)s\">Menemukan kekutu</a>?"
108
+
109
+ #: python_docs_theme/layout.html:170
110
+ #, python-format
111
+ msgid ""
112
+ "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
113
+ "%(sphinx_version)s."
114
+ msgstr ""
115
+ "Dibuat menggunakan <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
116
+ "%(sphinx_version)s."
117
+
118
+ #: python_docs_theme/static/copybutton.js:30
119
+ #: python_docs_theme/static/copybutton.js:55
120
+ msgid "Copy"
121
+ msgstr "Salin"
122
+
123
+ #: python_docs_theme/static/copybutton.js:31
124
+ msgid "Copy to clipboard"
125
+ msgstr "Salin ke papan klip"
126
+
127
+ #: python_docs_theme/static/copybutton.js:53
128
+ msgid "Copied!"
129
+ msgstr "Tersalin!"
@@ -7,7 +7,6 @@
7
7
  # Translators:
8
8
  # Inada Naoki <songofacandy@gmail.com>, 2025
9
9
  #
10
- #, fuzzy
11
10
  msgid ""
12
11
  msgstr ""
13
12
  "Project-Id-Version: python-docs-theme 2025.5\n"
@@ -0,0 +1,124 @@
1
+ # Translations template for python-docs-theme.
2
+ # Copyright (C) 2025 Python Software Foundation
3
+ # This file is distributed under the same license as the python-docs-theme
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # wonsuk yang, 2025
9
+ #
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: python-docs-theme 2025.5\n"
13
+ "Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
14
+ "POT-Creation-Date: 2025-09-06 08:40+0100\n"
15
+ "PO-Revision-Date: 2025-09-06 07:41+0000\n"
16
+ "Last-Translator: wonsuk yang, 2025\n"
17
+ "Language-Team: Korean (https://app.transifex.com/python-doc/teams/5390/ko/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Generated-By: Babel 2.16.0\n"
22
+ "Language: ko\n"
23
+ "Plural-Forms: nplurals=1; plural=0;\n"
24
+
25
+ #: python_docs_theme/footerdonate.html:1
26
+ msgid "The Python Software Foundation is a non-profit corporation."
27
+ msgstr "파이썬 소프트웨어 재단은 비영리 재단입니다."
28
+
29
+ #: python_docs_theme/footerdonate.html:2
30
+ msgid "Please donate."
31
+ msgstr "기부를 부탁드립니다."
32
+
33
+ #: python_docs_theme/layout.html:6
34
+ msgid "Navigation"
35
+ msgstr "내비게이션"
36
+
37
+ #: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
38
+ msgid "Quick search"
39
+ msgstr "빠른 검색"
40
+
41
+ #: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
42
+ msgid "Go"
43
+ msgstr "시작"
44
+
45
+ #: python_docs_theme/layout.html:60
46
+ msgid "Theme"
47
+ msgstr "테마"
48
+
49
+ #: python_docs_theme/layout.html:62
50
+ msgid "Auto"
51
+ msgstr "자동"
52
+
53
+ #: python_docs_theme/layout.html:63
54
+ msgid "Light"
55
+ msgstr "라이트"
56
+
57
+ #: python_docs_theme/layout.html:64
58
+ msgid "Dark"
59
+ msgstr "다크"
60
+
61
+ #: python_docs_theme/layout.html:96
62
+ msgid "Menu"
63
+ msgstr "메뉴"
64
+
65
+ #: python_docs_theme/layout.html:142
66
+ msgid "Copyright"
67
+ msgstr "저작권"
68
+
69
+ #: python_docs_theme/layout.html:147
70
+ msgid ""
71
+ "This page is licensed under the Python Software Foundation License Version "
72
+ "2."
73
+ msgstr "해당하는 페이지의 저작권은 파이썬 소프트웨어 재단 저작권 라이센스 버전 2를 통해 보호받음을 고지 드립니다."
74
+
75
+ #: python_docs_theme/layout.html:149
76
+ msgid ""
77
+ "Examples, recipes, and other code in the documentation are additionally "
78
+ "licensed under the Zero Clause BSD License."
79
+ msgstr ""
80
+ "해당하는 문서 내의 예제, 사용법, 그리고 다른 코드들은 또한 Zero Clause BSD 라이센스를 통해 보호받음을 고지 드립니다."
81
+
82
+ #: python_docs_theme/layout.html:152
83
+ #, python-format
84
+ msgid ""
85
+ "See <a href=\"%(license_file)s\">History and License</a> for more "
86
+ "information."
87
+ msgstr "보다 다양한 정보를 위해서는 <a href=\"%(license_file)s\">라이센스와 기록물</a> 을 참고 부탁드립니다."
88
+
89
+ #: python_docs_theme/layout.html:155
90
+ #, python-format
91
+ msgid "Hosted on %(hosted_on)s."
92
+ msgstr "호스트 주소는 다음과 같습니다: %(hosted_on)s."
93
+
94
+ #: python_docs_theme/layout.html:163
95
+ #, python-format
96
+ msgid "Last updated on %(last_updated)s."
97
+ msgstr "마지막 업데이트: %(last_updated)s."
98
+
99
+ #: python_docs_theme/layout.html:166
100
+ #, python-format
101
+ msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
102
+ msgstr "<a href=\"%(theme_issues_url)s\">문제가 생기셨나요</a>?"
103
+
104
+ #: python_docs_theme/layout.html:170
105
+ #, python-format
106
+ msgid ""
107
+ "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
108
+ "%(sphinx_version)s."
109
+ msgstr ""
110
+ "해당하는 문서는 <a href=\"https://www.sphinx-doc.org/\">스핑크스</a> "
111
+ "%(sphinx_version)s를 통해 만들어졌습니다."
112
+
113
+ #: python_docs_theme/static/copybutton.js:30
114
+ #: python_docs_theme/static/copybutton.js:55
115
+ msgid "Copy"
116
+ msgstr "복사"
117
+
118
+ #: python_docs_theme/static/copybutton.js:31
119
+ msgid "Copy to clipboard"
120
+ msgstr "클립보드에 복사"
121
+
122
+ #: python_docs_theme/static/copybutton.js:53
123
+ msgid "Copied!"
124
+ msgstr "복사되었습니다!"
@@ -7,7 +7,6 @@
7
7
  # Translators:
8
8
  # Stan Ulbrych, 2025
9
9
  #
10
- #, fuzzy
11
10
  msgid ""
12
11
  msgstr ""
13
12
  "Project-Id-Version: python-docs-theme 2025.5\n"
@@ -8,7 +8,6 @@
8
8
  # Alexsey Batista da Silva, 2025
9
9
  # Rafael Fontenelle <rffontenelle@gmail.com>, 2025
10
10
  #
11
- #, fuzzy
12
11
  msgid ""
13
12
  msgstr ""
14
13
  "Project-Id-Version: python-docs-theme 2025.5\n"
@@ -0,0 +1,130 @@
1
+ # Romanian translations for python-docs-theme.
2
+ # Copyright (C) 2025 Python Software Foundation
3
+ # This file is distributed under the same license as the python-docs-theme
4
+ # project.
5
+ # Octavian Mustafa <octawian@yahoo.com>, 2025.
6
+ #
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: python-docs-theme 2025.9.2\n"
10
+ "Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
11
+ "POT-Creation-Date: 2025-09-24 03:59+0300\n"
12
+ "PO-Revision-Date: 2025-09-24 03:59+0300\n"
13
+ "Last-Translator: Octavian Mustafa <octawian@yahoo.com>\n"
14
+ "Language: ro\n"
15
+ "Language-Team: Python Docs Romanian translation team\n"
16
+ "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100"
17
+ " < 20)) ? 1 : 2);\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=utf-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Generated-By: Babel 2.17.0\n"
22
+
23
+ #: python_docs_theme/footerdonate.html:1
24
+ msgid "The Python Software Foundation is a non-profit corporation."
25
+ msgstr ""
26
+ "Python Software Foundation (PSF, Fundația Python dedicată "
27
+ "software-ului) este o corporație non-profit."
28
+
29
+ #: python_docs_theme/footerdonate.html:2
30
+ msgid "Please donate."
31
+ msgstr "Vă rugăm să donați."
32
+
33
+ #: python_docs_theme/layout.html:6
34
+ msgid "Navigation"
35
+ msgstr "Navigație"
36
+
37
+ #: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
38
+ msgid "Quick search"
39
+ msgstr "Căutare rapidă"
40
+
41
+ #: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
42
+ msgid "Go"
43
+ msgstr "Execută"
44
+
45
+ #: python_docs_theme/layout.html:60
46
+ msgid "Theme"
47
+ msgstr "Tema"
48
+
49
+ #: python_docs_theme/layout.html:62
50
+ msgid "Auto"
51
+ msgstr "Automată"
52
+
53
+ #: python_docs_theme/layout.html:63
54
+ msgid "Light"
55
+ msgstr "Luminoasă"
56
+
57
+ #: python_docs_theme/layout.html:64
58
+ msgid "Dark"
59
+ msgstr "Întunecată"
60
+
61
+ #: python_docs_theme/layout.html:96
62
+ msgid "Menu"
63
+ msgstr "Meniu"
64
+
65
+ #: python_docs_theme/layout.html:142
66
+ msgid "Copyright"
67
+ msgstr "Drepturi de autor"
68
+
69
+ #: python_docs_theme/layout.html:147
70
+ msgid ""
71
+ "This page is licensed under the Python Software Foundation License "
72
+ "Version 2."
73
+ msgstr ""
74
+ "Pagina de față este licențiată cu Versiunea 2 a Python Software Foundation "
75
+ "License (Licența fundației Python dedicată software-ului)."
76
+
77
+ #: python_docs_theme/layout.html:149
78
+ msgid ""
79
+ "Examples, recipes, and other code in the documentation are additionally "
80
+ "licensed under the Zero Clause BSD License."
81
+ msgstr ""
82
+ "Exemplele, rețetele și alte fragmente de cod din documentație sunt "
83
+ "licențiate suplimentar cu Zero Clause BSD License (Licența de clauză zero "
84
+ "a BSD-ului)."
85
+
86
+ #: python_docs_theme/layout.html:152
87
+ #, python-format
88
+ msgid ""
89
+ "See <a href=\"%(license_file)s\">History and License</a> for more "
90
+ "information."
91
+ msgstr ""
92
+ "Vedeți <a href=\"%(license_file)s\">Istoric și licență</a> pentru mai multe "
93
+ "informații."
94
+
95
+ #: python_docs_theme/layout.html:155
96
+ #, python-format
97
+ msgid "Hosted on %(hosted_on)s."
98
+ msgstr "Găzduit de %(hosted_on)s."
99
+
100
+ #: python_docs_theme/layout.html:163
101
+ #, python-format
102
+ msgid "Last updated on %(last_updated)s."
103
+ msgstr "Ultima modificare în %(last_updated)s."
104
+
105
+ #: python_docs_theme/layout.html:166
106
+ #, python-format
107
+ msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
108
+ msgstr "<a href=\"%(theme_issues_url)s\">Ați găsit o greșeală</a>?"
109
+
110
+ #: python_docs_theme/layout.html:170
111
+ #, python-format
112
+ msgid ""
113
+ "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
114
+ "%(sphinx_version)s."
115
+ msgstr ""
116
+ "Creat cu <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
117
+ "%(sphinx_version)s."
118
+
119
+ #: python_docs_theme/static/copybutton.js:30
120
+ #: python_docs_theme/static/copybutton.js:55
121
+ msgid "Copy"
122
+ msgstr "Copiază"
123
+
124
+ #: python_docs_theme/static/copybutton.js:31
125
+ msgid "Copy to clipboard"
126
+ msgstr "Copiat în clipboard"
127
+
128
+ #: python_docs_theme/static/copybutton.js:53
129
+ msgid "Copied!"
130
+ msgstr "Copiat!"
@@ -0,0 +1,129 @@
1
+ # Translations template for python-docs-theme.
2
+ # Copyright (C) 2025 Python Software Foundation
3
+ # This file is distributed under the same license as the python-docs-theme
4
+ # project.
5
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
6
+ #
7
+ # Translators:
8
+ # Asdfgr Wertyu, 2025
9
+ #
10
+ msgid ""
11
+ msgstr ""
12
+ "Project-Id-Version: python-docs-theme 2025.9.2\n"
13
+ "Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
14
+ "POT-Creation-Date: 2025-10-13 01:45+0000\n"
15
+ "PO-Revision-Date: 2025-09-06 07:41+0000\n"
16
+ "Last-Translator: Asdfgr Wertyu, 2025\n"
17
+ "Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
18
+ "MIME-Version: 1.0\n"
19
+ "Content-Type: text/plain; charset=UTF-8\n"
20
+ "Content-Transfer-Encoding: 8bit\n"
21
+ "Generated-By: Babel 2.17.0\n"
22
+ "Language: ru\n"
23
+ "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"
24
+
25
+ #: python_docs_theme/footerdonate.html:1
26
+ msgid "The Python Software Foundation is a non-profit corporation."
27
+ msgstr "Python Software Foundation — некоммерческая организация."
28
+
29
+ #: python_docs_theme/footerdonate.html:2
30
+ msgid "Please donate."
31
+ msgstr "Пожалуйста, сделайте пожертвование."
32
+
33
+ #: python_docs_theme/layout.html:6
34
+ msgid "Navigation"
35
+ msgstr "Навигация"
36
+
37
+ #: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
38
+ msgid "Quick search"
39
+ msgstr "Быстрый поиск"
40
+
41
+ #: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
42
+ msgid "Go"
43
+ msgstr "Поиск"
44
+
45
+ #: python_docs_theme/layout.html:60
46
+ msgid "Theme"
47
+ msgstr "Тема"
48
+
49
+ #: python_docs_theme/layout.html:62
50
+ msgid "Auto"
51
+ msgstr "Авто"
52
+
53
+ #: python_docs_theme/layout.html:63
54
+ msgid "Light"
55
+ msgstr "Свет"
56
+
57
+ #: python_docs_theme/layout.html:64
58
+ msgid "Dark"
59
+ msgstr "Темный"
60
+
61
+ #: python_docs_theme/layout.html:96
62
+ msgid "Menu"
63
+ msgstr "Меню"
64
+
65
+ #: python_docs_theme/layout.html:142
66
+ msgid "Copyright"
67
+ msgstr "Авторское право"
68
+
69
+ #: python_docs_theme/layout.html:147
70
+ msgid ""
71
+ "This page is licensed under the Python Software Foundation License Version "
72
+ "2."
73
+ msgstr ""
74
+ "Эта страница лицензирована в соответствии с лицензией Python Software "
75
+ "Foundation версии 2."
76
+
77
+ #: python_docs_theme/layout.html:149
78
+ msgid ""
79
+ "Examples, recipes, and other code in the documentation are additionally "
80
+ "licensed under the Zero Clause BSD License."
81
+ msgstr ""
82
+ "Примеры, рецепты и другой код в документации дополнительно лицензируются по "
83
+ "лицензии Zero Clause BSD."
84
+
85
+ #: python_docs_theme/layout.html:152
86
+ #, python-format
87
+ msgid ""
88
+ "See <a href=\"%(license_file)s\">History and License</a> for more "
89
+ "information."
90
+ msgstr ""
91
+ "Подробнее см. в разделе <a "
92
+ "href=\"%(license_file)s\">История и лицензия</a>."
93
+
94
+ #: python_docs_theme/layout.html:155
95
+ #, python-format
96
+ msgid "Hosted on %(hosted_on)s."
97
+ msgstr "Размещено на %(hosted_on)s."
98
+
99
+ #: python_docs_theme/layout.html:163
100
+ #, python-format
101
+ msgid "Last updated on %(last_updated)s."
102
+ msgstr "Последнее обновление %(last_updated)s."
103
+
104
+ #: python_docs_theme/layout.html:166
105
+ #, python-format
106
+ msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
107
+ msgstr "<a href=\"%(theme_issues_url)s\">Нашли ошибку</a>?"
108
+
109
+ #: python_docs_theme/layout.html:170
110
+ #, python-format
111
+ msgid ""
112
+ "Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
113
+ "%(sphinx_version)s."
114
+ msgstr ""
115
+ "Создано с помощью <a href=\"https://www.sphinx-"
116
+ "doc.org/\">Sphinx</a> %(sphinx_version)s."
117
+
118
+ #: python_docs_theme/static/copybutton.js:30
119
+ #: python_docs_theme/static/copybutton.js:55
120
+ msgid "Copy"
121
+ msgstr "Копировать"
122
+
123
+ #: python_docs_theme/static/copybutton.js:31
124
+ msgid "Copy to clipboard"
125
+ msgstr "Копировать в буфер обмена"
126
+
127
+ #: python_docs_theme/static/copybutton.js:53
128
+ msgid "Copied!"
129
+ msgstr "Скопировано!"
@@ -7,7 +7,6 @@
7
7
  # Translators:
8
8
  # Ege Akman, 2025
9
9
  #
10
- #, fuzzy
11
10
  msgid ""
12
11
  msgstr ""
13
12
  "Project-Id-Version: python-docs-theme 2025.5\n"
@@ -7,7 +7,6 @@
7
7
  # Translators:
8
8
  # 汇民 王 <whuim@qq.com>, 2025
9
9
  #
10
- #, fuzzy
11
10
  msgid ""
12
11
  msgstr ""
13
12
  "Project-Id-Version: python-docs-theme 2025.5\n"
@@ -7,7 +7,6 @@
7
7
  # Translators:
8
8
  # W. H. Wang <mattwang44@gmail.com>, 2025
9
9
  #
10
- #, fuzzy
11
10
  msgid ""
12
11
  msgstr ""
13
12
  "Project-Id-Version: python-docs-theme 2025.5\n"
@@ -16,7 +16,7 @@ function getCopyableText(rootElement) {
16
16
  }
17
17
  // Remove all elements with the "go" (Generic.Output),
18
18
  // "gp" (Generic.Prompt), or "gt" (Generic.Traceback) CSS class
19
- const elements = rootElement.querySelectorAll(".gp, .go, .gt")
19
+ const elements = rootElement.querySelectorAll(".gp, .go, .gt, .linenos")
20
20
  for (const el of elements) {
21
21
  el.remove()
22
22
  }
@@ -123,7 +123,9 @@ form.inline-search input {
123
123
  }
124
124
 
125
125
  form.inline-search input[type='submit'] {
126
- width: 40px;
126
+ /* In some languages, more than 40px is required */
127
+ width: auto;
128
+ min-width: 40px;
127
129
  }
128
130
 
129
131
  div.document {
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-docs-theme
3
- Version: 2025.9.1
3
+ Version: 2025.10
4
4
  Summary: The Sphinx theme for the CPython docs and related projects
5
- Author-email: PyPA <distutils-sig@python.org>
5
+ Author: Python Docs Sphinx Theme maintainers
6
6
  Requires-Python: >=3.12
7
7
  Description-Content-Type: text/markdown
8
8
  License-Expression: PSF-2.0
@@ -48,6 +48,13 @@ To use this theme, add the following to `conf.py`:
48
48
 
49
49
  - `html_sidebars`, defaults taken from https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-html_sidebars
50
50
 
51
+
52
+ ## Translation
53
+
54
+ This theme supports localization. For more information see the [Python Developer's
55
+ Guide](https://devguide.python.org/documentation/translations/translating/#how-do-i-translate-the-python-docs-sphinx-theme).
56
+
57
+
51
58
  ## Preview
52
59
 
53
60
  See a demo of the CPython docs using this theme:
@@ -0,0 +1,47 @@
1
+ python_docs_theme/__init__.py,sha256=ibfzDJbYE3lCVilujuwosF58BxGRTw2cy46W0ScN3tE,1327
2
+ python_docs_theme/footerdonate.html,sha256=-FO52fS7x4iqjtMD9un5b--rPED2BPlcug9gkUMW2Uk,182
3
+ python_docs_theme/layout.html,sha256=ySMMWJVyI98kixKNlKMet4l-pXFcaHX2GJJzsEYO2mk,7867
4
+ python_docs_theme/theme.toml,sha256=Y39XrHfXHgz6wdQgG-KX_Oewp2SQOrHswKBsGzvWsis,1139
5
+ python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.mo,sha256=D8kFrMHK4aAyRIQXzT3TPC0FAi8kLVWwKzzsF1F5Cw4,2567
6
+ python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.po,sha256=l8srh0yi3N7_To-EAYDqrT8PSLlbeOZChnn3CNqr2VU,3946
7
+ python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po,sha256=oDiwj60JypI5QHV2IYH65DoKGA3XihWmhG1IJVTg3XE,3621
8
+ python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.mo,sha256=SHADtTC2P7kPMaHmr7Sy9UY6DX484z1NgWNyvBPKQa8,2704
9
+ python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po,sha256=_hTJAc90D6LBJT9VVAxjRdXmr1wd40BpenNUFbocqWg,4058
10
+ python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.mo,sha256=CtLwkACvlqDopyvsM2NHWZ9qZTvhUMQ1TvRbmzN86Jc,2221
11
+ python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po,sha256=sKy8eAEwVY5JS-4VPeg_8vtbToAGSl54IqHhPv0S5rQ,3608
12
+ python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.mo,sha256=002p4E00QC4lj-UXhLvMxLop4alkFzHmVQWzKOxgjN4,2199
13
+ python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.po,sha256=O4wLGsYnqWW8KZ9UL6KgrzxVUWm-XXzXkOwkrOAo0mo,3399
14
+ python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.mo,sha256=4DQD8UZZfWKG1foThGm7hO_jBCO8iWwhMDoY0FvIf2s,2161
15
+ python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po,sha256=esjkyl7XrubvBQkg2BJxCkmFS4T_YTRiE-Xu51x_wLQ,3545
16
+ python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.mo,sha256=1XUiIRrYGa08Q1BUykra9JL8QFATsCchPJPYxUYJ3FE,2359
17
+ python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po,sha256=K-DqiaEGZ8P1vzIWKi2zcRn9BHoIFl_TLdcQ-r6gnsc,3745
18
+ python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.mo,sha256=ue9wN4wEc0nFVhS548JckAVguzJB4lLImY4dIxCMIsA,2451
19
+ python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po,sha256=BgCoWHxpHNZog3lvQVbnwYIm4wm1p9djwqv3t4jISIU,3815
20
+ python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.mo,sha256=KC1YMCURoao8ZR9GSbXVibTUA1zxqbs40e8NRSxhN98,2321
21
+ python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po,sha256=8h4DntrCKg45F4uqTpDxGkxgnUwxrDHT4VfDPYblbAE,3695
22
+ python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.mo,sha256=i4Jozs49LuZRvcgLO_m8xVPOoBsbpoTtZBb4VSonKkE,2345
23
+ python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po,sha256=RQKaa8Uf2jRrn-DrwpwZiHv1I836ZWzUxNu7w3-0Xjk,3788
24
+ python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.mo,sha256=Ek3G9FyEhDC_uMAw1YWGShrS3ZmGTA5_anJpojg1ONM,2409
25
+ python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.po,sha256=egLNnEi3BhRoFgH6DAxbnloJ1K1ILoOfMTiJl5Jk8zI,3772
26
+ python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.mo,sha256=WEujB3aZuSxCT3qo9GkOfxifSHue1nAwZM7_OpnRIVY,2706
27
+ python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.po,sha256=hot32B5sqhROS68FBxJ9CSgcpempn6CygcWUIaWQHNk,4087
28
+ python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.mo,sha256=3Rv0vdZWVPXvH3q1Gf8c7lKSJQy4cAheVGE478woaAA,2109
29
+ python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po,sha256=61-Byf380yAAoen6elL0FLsZorl7AIB9S_jK8RzAJQw,3468
30
+ python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.mo,sha256=_bMwoi79xwusEcYrSr-n5HU6Y2CWf_-laYgf-8--Ll0,2238
31
+ python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po,sha256=VJpsAeIZNGkYLbIJ9z3dJk1VDAaYItZc1wnkmj9nS78,3615
32
+ python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.mo,sha256=VGBcADIFUfB0_q7zj9DR56opWJX22wf_ItmeIkL1noc,2146
33
+ python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po,sha256=AOoh5mLPreHpJAk-vub5vrYJ6yHe4VtcosqWgO2pn0Q,3518
34
+ python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.mo,sha256=RRbos1z_n4mnuIgvznqS76jub0wLkmHL39s6pNDt9us,2144
35
+ python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po,sha256=GEEypXaJvki6dq5opnN2SQ-fok34nvi6wNJ92M-Toz8,3524
36
+ python_docs_theme/static/copybutton.js,sha256=eYMZJ8tD7FztAS7coT6W8jYw7sC5uUPiJaiLMuD12ZE,2801
37
+ python_docs_theme/static/menu.js,sha256=JmrKD08_6CiCgQH32As9AgiSiV-th1fZInVrmTCihzA,2137
38
+ python_docs_theme/static/py.svg,sha256=WGW-i8wK-IhZSQPqARL2yNkjxXJsQIHoyFYRDMcznO8,2041
39
+ python_docs_theme/static/pydoctheme.css,sha256=Ztj622Vv1x6tXvLWTygV3LGC8-v4GSKC8Rnevv4Cfyk,15401
40
+ python_docs_theme/static/pydoctheme_dark.css,sha256=kBPdZntNZFTtY7DJTNprMZkxlymdt1jfMqRsnvFafAE,3472
41
+ python_docs_theme/static/search-focus.js,sha256=DwWV71ssKvrzagPenP7yLvFQCdyqFJirbBk1PFRvVoA,559
42
+ python_docs_theme/static/themetoggle.js,sha256=6D1LE0wg8DjPP776_KxPCxXdIk-gGJJX5DYpHFLG1Uw,779
43
+ python_docs_theme-2025.10.dist-info/entry_points.txt,sha256=VqpxCWQkYo2DkZVV2D2vA9LKmexR1Yhicqsrff4JAag,58
44
+ python_docs_theme-2025.10.dist-info/licenses/LICENSE,sha256=lx_9CsorlYBu9cw97FX-A1VnHHmrwk-H-jydZBJlWmY,2460
45
+ python_docs_theme-2025.10.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
46
+ python_docs_theme-2025.10.dist-info/METADATA,sha256=oQnITrzKyAfyoIrWZpCJlBJpD8r7ZNOZYNwVenDKVyk,2481
47
+ python_docs_theme-2025.10.dist-info/RECORD,,
Binary file
@@ -1,28 +0,0 @@
1
- python_docs_theme/__init__.py,sha256=R9iqfoO2mpOS93Oy2Lhsi_wl7QtL-Eql9wzyX0QNCZ8,984
2
- python_docs_theme/footerdonate.html,sha256=-FO52fS7x4iqjtMD9un5b--rPED2BPlcug9gkUMW2Uk,182
3
- python_docs_theme/layout.html,sha256=0VeG3IEXiWEBnETcCHDnCnHsTgPVEUninHfvgWq7KN8,7861
4
- python_docs_theme/theme.toml,sha256=Y39XrHfXHgz6wdQgG-KX_Oewp2SQOrHswKBsGzvWsis,1139
5
- python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.mo,sha256=SHADtTC2P7kPMaHmr7Sy9UY6DX484z1NgWNyvBPKQa8,2704
6
- python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po,sha256=_hTJAc90D6LBJT9VVAxjRdXmr1wd40BpenNUFbocqWg,4058
7
- python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po,sha256=fbcbwePogirk23JkdDr0EToppEXEqrV9PD4lBe6Uzz4,3617
8
- python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po,sha256=E4t6vFxpoJqEOeylPFadklU-gc3cIye9l0lB8PK03Ow,3754
9
- python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po,sha256=-pJ4SaJjOvCVNVRpolWP5LNNnWThz9Zw7gbwTOJnyn0,3704
10
- python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po,sha256=ntAJ2O10ZWi_iAPXV3XWIPJ3OARED1AZBmgSmbH5LrM,3797
11
- python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.mo,sha256=3Rv0vdZWVPXvH3q1Gf8c7lKSJQy4cAheVGE478woaAA,2109
12
- python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po,sha256=61-Byf380yAAoen6elL0FLsZorl7AIB9S_jK8RzAJQw,3468
13
- python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po,sha256=SvOYYSDlfklqJ9F33qG9ZSyR4iqQivP21eOTlvOPFPs,3624
14
- python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po,sha256=B-_DsVDXG_GueZe86DF-nmD-c-SpJHaNrQ3cXb7k1SE,3527
15
- python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po,sha256=88x2NJZ2Tp1jiJdTUZlwFBAjS6XscyG91PbX7SpP8jg,3533
16
- python_docs_theme/static/copybutton.js,sha256=t9_nK_Gh_SI4oxm-sBc3gaQW-3McdEdpunG-3cULfuw,2791
17
- python_docs_theme/static/menu.js,sha256=JmrKD08_6CiCgQH32As9AgiSiV-th1fZInVrmTCihzA,2137
18
- python_docs_theme/static/py.png,sha256=rhc9xIQjUfwcilUa-9tYyyspVJB4ITDapPNZpqgNclY,695
19
- python_docs_theme/static/py.svg,sha256=WGW-i8wK-IhZSQPqARL2yNkjxXJsQIHoyFYRDMcznO8,2041
20
- python_docs_theme/static/pydoctheme.css,sha256=IK-25n9ZLGw1Q0lU6mO1s5OCgPobqRV-_sU8dTZdTsc,15324
21
- python_docs_theme/static/pydoctheme_dark.css,sha256=kBPdZntNZFTtY7DJTNprMZkxlymdt1jfMqRsnvFafAE,3472
22
- python_docs_theme/static/search-focus.js,sha256=DwWV71ssKvrzagPenP7yLvFQCdyqFJirbBk1PFRvVoA,559
23
- python_docs_theme/static/themetoggle.js,sha256=6D1LE0wg8DjPP776_KxPCxXdIk-gGJJX5DYpHFLG1Uw,779
24
- python_docs_theme-2025.9.1.dist-info/entry_points.txt,sha256=VqpxCWQkYo2DkZVV2D2vA9LKmexR1Yhicqsrff4JAag,58
25
- python_docs_theme-2025.9.1.dist-info/licenses/LICENSE,sha256=lx_9CsorlYBu9cw97FX-A1VnHHmrwk-H-jydZBJlWmY,2460
26
- python_docs_theme-2025.9.1.dist-info/WHEEL,sha256=G2gURzTEtmeR8nrdXUJfNiB3VYVxigPQ-bEQujpNiNs,82
27
- python_docs_theme-2025.9.1.dist-info/METADATA,sha256=fvn4x6SImWwdPkq-At1xnNVgxEV0fQaI-WC_wdtt51w,2256
28
- python_docs_theme-2025.9.1.dist-info/RECORD,,