python-docs-theme 2026.3__py3-none-any.whl → 2026.7__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.
- python_docs_theme/__init__.py +1 -1
- python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/pt/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/ta/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/vi/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.mo +0 -0
- python_docs_theme/static/pydoctheme.css +13 -0
- python_docs_theme/static/pydoctheme_dark.css +2 -0
- {python_docs_theme-2026.3.dist-info → python_docs_theme-2026.7.dist-info}/METADATA +8 -9
- python_docs_theme-2026.7.dist-info/RECORD +35 -0
- {python_docs_theme-2026.3.dist-info → python_docs_theme-2026.7.dist-info}/WHEEL +1 -1
- python_docs_theme-2026.7.dist-info/entry_points.txt +2 -0
- python_docs_theme/locale/ar/LC_MESSAGES/python-docs-theme.po +0 -127
- python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po +0 -132
- python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po +0 -126
- python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po +0 -127
- python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.po +0 -120
- python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po +0 -123
- python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po +0 -124
- python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po +0 -127
- python_docs_theme/locale/pt/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po +0 -130
- python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.po +0 -130
- python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po +0 -128
- python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po +0 -129
- python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po +0 -122
- python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po +0 -122
- python_docs_theme-2026.3.dist-info/RECORD +0 -49
- python_docs_theme-2026.3.dist-info/entry_points.txt +0 -3
- {python_docs_theme-2026.3.dist-info → python_docs_theme-2026.7.dist-info}/licenses/LICENSE +0 -0
python_docs_theme/__init__.py
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -223,6 +223,9 @@ div.body h1, div.body h2, div.body h3, div.body h4, div.body h5, div.body h6 {
|
|
|
223
223
|
border: 0;
|
|
224
224
|
padding: 0.3em 0;
|
|
225
225
|
}
|
|
226
|
+
div.body dl.field-list > dt {
|
|
227
|
+
line-height: 1.6;
|
|
228
|
+
}
|
|
226
229
|
|
|
227
230
|
div.body hr {
|
|
228
231
|
border: 0;
|
|
@@ -786,10 +789,12 @@ div.genindex-jumpbox a {
|
|
|
786
789
|
--versionadded: var(--good-color);
|
|
787
790
|
--versionchanged: var(--middle-color);
|
|
788
791
|
--deprecated: var(--bad-color);
|
|
792
|
+
--soft-deprecated: rgb(175, 0, 255);
|
|
789
793
|
|
|
790
794
|
--versionadded-border: var(--good-border);
|
|
791
795
|
--versionchanged-border: var(--middle-border);
|
|
792
796
|
--deprecated-border: var(--bad-border);
|
|
797
|
+
--soft-deprecated-border: rgb(175, 0, 255);
|
|
793
798
|
}
|
|
794
799
|
|
|
795
800
|
div.versionadded,
|
|
@@ -814,6 +819,10 @@ div.versionremoved {
|
|
|
814
819
|
border-left-color: var(--deprecated-border);
|
|
815
820
|
}
|
|
816
821
|
|
|
822
|
+
div.soft-deprecated {
|
|
823
|
+
border-left-color: var(--soft-deprecated-border);
|
|
824
|
+
}
|
|
825
|
+
|
|
817
826
|
div.versionadded .versionmodified {
|
|
818
827
|
color: var(--versionadded);
|
|
819
828
|
}
|
|
@@ -828,6 +837,10 @@ div.versionremoved .versionmodified {
|
|
|
828
837
|
color: var(--deprecated);
|
|
829
838
|
}
|
|
830
839
|
|
|
840
|
+
div.soft-deprecated .versionmodified {
|
|
841
|
+
color: var(--soft-deprecated);
|
|
842
|
+
}
|
|
843
|
+
|
|
831
844
|
/* Hide header when printing */
|
|
832
845
|
@media print {
|
|
833
846
|
div.mobile-nav {
|
|
@@ -181,6 +181,8 @@ img.invert-in-dark-mode {
|
|
|
181
181
|
--versionadded: var(--good-color);
|
|
182
182
|
--versionchanged: var(--middle-color);
|
|
183
183
|
--deprecated: var(--bad-color);
|
|
184
|
+
--soft-deprecated: rgb(206, 100, 255);
|
|
185
|
+
--soft-deprecated-border: rgb(206, 100, 255);
|
|
184
186
|
}
|
|
185
187
|
|
|
186
188
|
.copybutton {
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-docs-theme
|
|
3
|
-
Version: 2026.
|
|
3
|
+
Version: 2026.7
|
|
4
4
|
Summary: The Sphinx theme for the CPython docs and related projects
|
|
5
|
+
Project-URL: Issue tracker, https://github.com/python/python-docs-theme/issues
|
|
6
|
+
Project-URL: Code, https://github.com/python/python-docs-theme
|
|
7
|
+
Project-URL: Download, https://pypi.org/project/python-docs-theme/
|
|
8
|
+
Project-URL: Homepage, https://github.com/python/python-docs-theme/
|
|
5
9
|
Author: Python Docs Sphinx Theme maintainers
|
|
6
|
-
Requires-Python: >=3.12
|
|
7
|
-
Description-Content-Type: text/markdown
|
|
8
10
|
License-Expression: PSF-2.0
|
|
11
|
+
License-File: LICENSE
|
|
9
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
10
13
|
Classifier: Framework :: Sphinx :: Theme
|
|
11
14
|
Classifier: Intended Audience :: Developers
|
|
@@ -18,12 +21,9 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
18
21
|
Classifier: Programming Language :: Python :: 3.15
|
|
19
22
|
Classifier: Topic :: Documentation
|
|
20
23
|
Classifier: Topic :: Software Development :: Documentation
|
|
21
|
-
|
|
24
|
+
Requires-Python: >=3.12
|
|
22
25
|
Requires-Dist: sphinx>=7.3
|
|
23
|
-
|
|
24
|
-
Project-URL: Download, https://pypi.org/project/python-docs-theme/
|
|
25
|
-
Project-URL: Homepage, https://github.com/python/python-docs-theme/
|
|
26
|
-
Project-URL: Issue tracker, https://github.com/python/python-docs-theme/issues
|
|
26
|
+
Description-Content-Type: text/markdown
|
|
27
27
|
|
|
28
28
|
# Python Docs Sphinx Theme
|
|
29
29
|
|
|
@@ -65,4 +65,3 @@ See a demo of the CPython docs using this theme:
|
|
|
65
65
|
The kitchen sink is a showcase of every Sphinx feature:
|
|
66
66
|
|
|
67
67
|
- https://sphinx-themes.org/sample-sites/python-docs-theme/kitchen-sink/
|
|
68
|
-
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
python_docs_theme/__init__.py,sha256=B4TrmqBLOMGRJcnmv_xMKFCSFr523-jEFSsMKaSOoAk,1326
|
|
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=c_k3YW3inWCIF__WWNMYimYSw_CP16FwXnsHxYUKM7Y,2567
|
|
6
|
+
python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.mo,sha256=9Q1Iy5JFDYRFHbuJrIk9sNKZ2RgnQqzylnLc-e7rK9k,2188
|
|
7
|
+
python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.mo,sha256=ORoaqG_pJti8YPMoIVA8g9ch5BNGaYabuwgKj5fo8XE,2704
|
|
8
|
+
python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.mo,sha256=B6zSMsN_E7CZ98ZFWIMktiwQEEipSANYGuJpYBh8X9A,2221
|
|
9
|
+
python_docs_theme/locale/fr/LC_MESSAGES/python-docs-theme.mo,sha256=mrMmUdxXgZ9MORb30-WXkhDs2dLkta0HPeq9K4AKDv8,2199
|
|
10
|
+
python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.mo,sha256=QrIphqs76GNfsuNZlQ9HTk04qwWtFK-zrwx4Ml2D5hA,2161
|
|
11
|
+
python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.mo,sha256=-juCRDY-2V12ek14AFFW23ZQ-Ybm8YMuENmwavlZhw0,2359
|
|
12
|
+
python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.mo,sha256=BmsubzJAc343mKBrmU1EIcjs7Dpf_ECjpsQQOVqYS9w,2451
|
|
13
|
+
python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.mo,sha256=d68WBu3wOABlfIKWrfSpfH3HJPEKK828I9uPr6tIILY,2321
|
|
14
|
+
python_docs_theme/locale/pt/LC_MESSAGES/python-docs-theme.mo,sha256=Seb0DXDl84oti1HRRWdwyLL25JIkL3LkcxyvcDbGYxE,2316
|
|
15
|
+
python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.mo,sha256=t-EK0qUq-OeDqOR7-V0V7v8UREeuoHkzkWdlNSzmTUI,2345
|
|
16
|
+
python_docs_theme/locale/ro/LC_MESSAGES/python-docs-theme.mo,sha256=NRCuM3hLVtrJNeCsgM71YP0RL1aVRgtkIiTS4funhDA,2409
|
|
17
|
+
python_docs_theme/locale/ru/LC_MESSAGES/python-docs-theme.mo,sha256=4RjT31dBscizf4IHZmWv9PuoaKWfzHWKmlBsw_b80Uw,2706
|
|
18
|
+
python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.mo,sha256=wMtfsR9EUPSb919JaqAhSDTVMnirvZ0UeuM-IPGq5Gg,2109
|
|
19
|
+
python_docs_theme/locale/ta/LC_MESSAGES/python-docs-theme.mo,sha256=bpjuW5SkRP0PcYRH7eyzQUxyAneD3u5tEGgoswP-mWQ,3099
|
|
20
|
+
python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.mo,sha256=vyjYbb83kUnPN8FE8V--1QdTO4R8hahn5OYe5XGaPh0,2238
|
|
21
|
+
python_docs_theme/locale/vi/LC_MESSAGES/python-docs-theme.mo,sha256=HVD-7EII2apqTPHm9jonKKn3sBYQSLVQLjAGR4wncp4,2327
|
|
22
|
+
python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.mo,sha256=FmRfTlxCeA-ZN0XcZlzkjaTFe4OmMdLJCdDzGVR5OKM,2146
|
|
23
|
+
python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.mo,sha256=QxGiKPBnRjEyoxgA3PsY8PjZFdaO1ix-RfVWvKjAtUg,2144
|
|
24
|
+
python_docs_theme/static/copybutton.js,sha256=Fg9_Xc0kpFuFilfWpBQa7cDmXEsybvrmnawdf3Gskyo,3055
|
|
25
|
+
python_docs_theme/static/menu.js,sha256=JmrKD08_6CiCgQH32As9AgiSiV-th1fZInVrmTCihzA,2137
|
|
26
|
+
python_docs_theme/static/py.svg,sha256=WGW-i8wK-IhZSQPqARL2yNkjxXJsQIHoyFYRDMcznO8,2041
|
|
27
|
+
python_docs_theme/static/pydoctheme.css,sha256=x32r3C2oPuLXx3T7xfTDdz0tvYkMfup4QirOyV1qlz8,17045
|
|
28
|
+
python_docs_theme/static/pydoctheme_dark.css,sha256=W5riZR5h0H5p4gtfKuN4rrVQQG05HP-UZDPd25AWLV4,3666
|
|
29
|
+
python_docs_theme/static/search-focus.js,sha256=DwWV71ssKvrzagPenP7yLvFQCdyqFJirbBk1PFRvVoA,559
|
|
30
|
+
python_docs_theme/static/themetoggle.js,sha256=6D1LE0wg8DjPP776_KxPCxXdIk-gGJJX5DYpHFLG1Uw,779
|
|
31
|
+
python_docs_theme-2026.7.dist-info/METADATA,sha256=SHyc2Tn3vOizRLqSIoaI9s0oyFOTIYaoTiGz8v45oLQ,2530
|
|
32
|
+
python_docs_theme-2026.7.dist-info/WHEEL,sha256=lCkmxWfQsSc9CfIClYeavTdQeEX2toPqufh9gI35EQA,87
|
|
33
|
+
python_docs_theme-2026.7.dist-info/entry_points.txt,sha256=7oxZn4fKx-vAoSyXWoJuJp3XYwgjqv61YQzNqgnD_oE,59
|
|
34
|
+
python_docs_theme-2026.7.dist-info/licenses/LICENSE,sha256=lx_9CsorlYBu9cw97FX-A1VnHHmrwk-H-jydZBJlWmY,2460
|
|
35
|
+
python_docs_theme-2026.7.dist-info/RECORD,,
|
|
@@ -1,127 +0,0 @@
|
|
|
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 "تم النسخ!"
|
|
@@ -1,132 +0,0 @@
|
|
|
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!"
|
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
# Greek 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
|
-
# Lysandros Nikolaou <lysandros@pygreece.org>, 2025.
|
|
6
|
-
#
|
|
7
|
-
msgid ""
|
|
8
|
-
msgstr ""
|
|
9
|
-
"Project-Id-Version: python-docs-theme 2025.5\n"
|
|
10
|
-
"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
|
|
11
|
-
"POT-Creation-Date: 2025-09-08 10:23+0300\n"
|
|
12
|
-
"PO-Revision-Date: 2025-09-08 10:23+0300\n"
|
|
13
|
-
"Last-Translator: Lysandros Nikolaou <lysandros@pygreece.org>\n"
|
|
14
|
-
"Language: el\n"
|
|
15
|
-
"Language-Team: PyGreece <organizers@pygreece.org>\n"
|
|
16
|
-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
17
|
-
"MIME-Version: 1.0\n"
|
|
18
|
-
"Content-Type: text/plain; charset=utf-8\n"
|
|
19
|
-
"Content-Transfer-Encoding: 8bit\n"
|
|
20
|
-
"Generated-By: Babel 2.17.0\n"
|
|
21
|
-
|
|
22
|
-
#: python_docs_theme/footerdonate.html:1
|
|
23
|
-
msgid "The Python Software Foundation is a non-profit corporation."
|
|
24
|
-
msgstr "Το Python Software Foundation είναι ένας μη κερδοσκοπικός οργανισμός."
|
|
25
|
-
|
|
26
|
-
#: python_docs_theme/footerdonate.html:2
|
|
27
|
-
msgid "Please donate."
|
|
28
|
-
msgstr "Παρακαλώ κάντε μια δωρεά."
|
|
29
|
-
|
|
30
|
-
#: python_docs_theme/layout.html:6
|
|
31
|
-
msgid "Navigation"
|
|
32
|
-
msgstr "Πλοήγηση"
|
|
33
|
-
|
|
34
|
-
#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
|
|
35
|
-
msgid "Quick search"
|
|
36
|
-
msgstr "Γρήγορη αναζήτηση"
|
|
37
|
-
|
|
38
|
-
#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
|
|
39
|
-
msgid "Go"
|
|
40
|
-
msgstr "Μετάβαση"
|
|
41
|
-
|
|
42
|
-
#: python_docs_theme/layout.html:60
|
|
43
|
-
msgid "Theme"
|
|
44
|
-
msgstr "Θέμα"
|
|
45
|
-
|
|
46
|
-
#: python_docs_theme/layout.html:62
|
|
47
|
-
msgid "Auto"
|
|
48
|
-
msgstr "Αυτόματα"
|
|
49
|
-
|
|
50
|
-
#: python_docs_theme/layout.html:63
|
|
51
|
-
msgid "Light"
|
|
52
|
-
msgstr "Φωτεινό"
|
|
53
|
-
|
|
54
|
-
#: python_docs_theme/layout.html:64
|
|
55
|
-
msgid "Dark"
|
|
56
|
-
msgstr "Σκούρο"
|
|
57
|
-
|
|
58
|
-
#: python_docs_theme/layout.html:96
|
|
59
|
-
msgid "Menu"
|
|
60
|
-
msgstr "Μενού"
|
|
61
|
-
|
|
62
|
-
#: python_docs_theme/layout.html:142
|
|
63
|
-
msgid "Copyright"
|
|
64
|
-
msgstr "Πνευματικά δικαιώματα"
|
|
65
|
-
|
|
66
|
-
#: python_docs_theme/layout.html:147
|
|
67
|
-
msgid ""
|
|
68
|
-
"This page is licensed under the Python Software Foundation License "
|
|
69
|
-
"Version 2."
|
|
70
|
-
msgstr ""
|
|
71
|
-
"Η σελίδα αυτή διατίθεται υπό την άδεια χρήσης του Python Software "
|
|
72
|
-
"Foundation, 2η έκδοση."
|
|
73
|
-
|
|
74
|
-
#: python_docs_theme/layout.html:149
|
|
75
|
-
msgid ""
|
|
76
|
-
"Examples, recipes, and other code in the documentation are additionally "
|
|
77
|
-
"licensed under the Zero Clause BSD License."
|
|
78
|
-
msgstr ""
|
|
79
|
-
"Παραδείγματα, οδηγοί και λοιπά κομμάτια κώδικα στην τεκμηρίωση διατίθενται "
|
|
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 ""
|
|
88
|
-
"Δες την <a href=\"%(license_file)s\">Ιστορία και Άδεια χρήσης</a> για "
|
|
89
|
-
"περισσότερες πληροφορίες."
|
|
90
|
-
|
|
91
|
-
#: python_docs_theme/layout.html:155
|
|
92
|
-
#, python-format
|
|
93
|
-
msgid "Hosted on %(hosted_on)s."
|
|
94
|
-
msgstr "Φιλοξενείται στο %(hosted_on)s."
|
|
95
|
-
|
|
96
|
-
#: python_docs_theme/layout.html:163
|
|
97
|
-
#, python-format
|
|
98
|
-
msgid "Last updated on %(last_updated)s."
|
|
99
|
-
msgstr "Τελευταία ενημέρωση στις %(last_updated)s."
|
|
100
|
-
|
|
101
|
-
#: python_docs_theme/layout.html:166
|
|
102
|
-
#, python-format
|
|
103
|
-
msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
|
|
104
|
-
msgstr "<a href=\"%(theme_issues_url)s\">Βρήκες ένα bug</a>?"
|
|
105
|
-
|
|
106
|
-
#: python_docs_theme/layout.html:170
|
|
107
|
-
#, python-format
|
|
108
|
-
msgid ""
|
|
109
|
-
"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
|
|
110
|
-
"%(sphinx_version)s."
|
|
111
|
-
msgstr ""
|
|
112
|
-
"Δημιουργήθηκε με την χρήση του <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
|
|
113
|
-
"%(sphinx_version)s."
|
|
114
|
-
|
|
115
|
-
#: python_docs_theme/static/copybutton.js:30
|
|
116
|
-
#: python_docs_theme/static/copybutton.js:55
|
|
117
|
-
msgid "Copy"
|
|
118
|
-
msgstr "Αντιγραφή"
|
|
119
|
-
|
|
120
|
-
#: python_docs_theme/static/copybutton.js:31
|
|
121
|
-
msgid "Copy to clipboard"
|
|
122
|
-
msgstr "Αντιγραφή στο πρόχειρο"
|
|
123
|
-
|
|
124
|
-
#: python_docs_theme/static/copybutton.js:53
|
|
125
|
-
msgid "Copied!"
|
|
126
|
-
msgstr "Αντιγράφηκε!"
|