diff -pruN 2025.4.1-1/.github/workflows/lint.yml 2025.9.2-1/.github/workflows/lint.yml
--- 2025.4.1-1/.github/workflows/lint.yml	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/.github/workflows/lint.yml	2025-09-17 14:50:19.000000000 +0000
@@ -13,7 +13,7 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - uses: actions/setup-python@v5
         with:
           python-version: "3.x"
diff -pruN 2025.4.1-1/.github/workflows/pypi-package.yml 2025.9.2-1/.github/workflows/pypi-package.yml
--- 2025.4.1-1/.github/workflows/pypi-package.yml	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/.github/workflows/pypi-package.yml	2025-09-17 14:50:19.000000000 +0000
@@ -21,7 +21,14 @@ jobs:
     runs-on: ubuntu-latest
 
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
+      - uses: actions/setup-python@v5
+
+      - name: Compile translations
+        run: |
+          pip install --upgrade pip
+          pip install -r requirements.txt
+          python babel_runner.py compile
 
       - uses: hynek/build-and-inspect-python-package@v2
 
@@ -41,7 +48,7 @@ jobs:
 
     steps:
       - name: Download packages built by build-and-inspect-python-package
-        uses: actions/download-artifact@v4
+        uses: actions/download-artifact@v5
         with:
           name: Packages
           path: dist
diff -pruN 2025.4.1-1/.github/workflows/tests.yml 2025.9.2-1/.github/workflows/tests.yml
--- 2025.4.1-1/.github/workflows/tests.yml	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/.github/workflows/tests.yml	2025-09-17 14:50:19.000000000 +0000
@@ -14,7 +14,7 @@ jobs:
       matrix:
         branch: ["3.14", "3.13", "3.12"]
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - uses: actions/setup-python@v5
         with:
           python-version: ${{ matrix.branch }}
@@ -59,7 +59,7 @@ jobs:
         # Test minimum supported and latest stable from 3.x series
         python-version: ["3.12", "3"]
     steps:
-      - uses: actions/checkout@v4
+      - uses: actions/checkout@v5
       - uses: actions/setup-python@v5
         with:
           python-version: ${{ matrix.python-version }}
@@ -71,7 +71,7 @@ jobs:
           pip install -r requirements.txt
       - name: Remove locale file for testing
         shell: bash
-        run: rm -rf locales/pt_BR/
+        run: rm -rf python_docs_theme/locale/pt_BR/
       - run: python babel_runner.py extract
       - run: python babel_runner.py init -l pt_BR
       - run: python babel_runner.py update
@@ -80,10 +80,7 @@ jobs:
       - run: python babel_runner.py compile -l pt_BR
       - name: Print .pot file
         shell: bash
-        run: cat locales/messages.pot
+        run: cat python_docs_theme/locale/python-docs-theme.pot
       - name: Print .po file
         shell: bash
-        run: cat locales/pt_BR/LC_MESSAGES/messages.po
-      - name: list files in locales dir
-        shell: bash
-        run: ls -R locales/
+        run: cat python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po
diff -pruN 2025.4.1-1/CHANGELOG.rst 2025.9.2-1/CHANGELOG.rst
--- 2025.4.1-1/CHANGELOG.rst	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/CHANGELOG.rst	2025-09-17 14:50:19.000000000 +0000
@@ -1,6 +1,34 @@
 Changelog
 =========
 
+`2025.9.2 <https://github.com/python/python-docs-theme/releases/tag/2025.9.2>`_
+-------------------------------------------------------------------------------
+
+* Add Korean and Indonesian translations from Transifex in https://github.com/python/python-docs-theme/pull/264
+* Add German translation by @cmaureir in https://github.com/python/python-docs-theme/pull/262
+* Fix compilation of translations and loading of translations on pages with html
+  source in https://github.com/python/python-docs-theme/pull/263
+* Fix search button cutting off long translations in https://github.com/python/python-docs-theme/pull/268
+* Fix ``Copy`` button copying line numbers by @StanFromIreland in https://github.com/python/python-docs-theme/pull/270
+
+`2025.9.1 <https://github.com/python/python-docs-theme/releases/tag/2025.9.1>`_
+-------------------------------------------------------------------------------
+
+* Add Japanese, Turkish and Spanish translations from Transifex in https://github.com/python/python-docs-theme/pull/259
+
+`2025.9 <https://github.com/python/python-docs-theme/releases/tag/2025.9>`_
+---------------------------------------------------------------------------
+
+* Enable theme translation and add Polish by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246
+* Add Greek translation by @lysnikolaou and @skpanagiotis in https://github.com/python/python-docs-theme/pull/256 and https://github.com/python/python-docs-theme/pull/257
+* Add Swedish translation by @yeager in https://github.com/python/python-docs-theme/pull/250
+* Add Brazilian Portuguese, Simplified Chinese and Traditional Chinese translations from `Transifex <https://explore.transifex.com/python-doc/python-docs-theme/>`_ in https://github.com/python/python-docs-theme/pull/253
+
+`2025.5 <https://github.com/python/python-docs-theme/releases/tag/2025.5>`_
+---------------------------------------------------------------------------
+
+* Make the copy button only appear when hovered over or clicked on by @kevteg in https://github.com/python/python-docs-theme/pull/243
+
 `2025.4.1 <https://github.com/python/python-docs-theme/releases/tag/2025.4.1>`_
 -------------------------------------------------------------------------------
 
diff -pruN 2025.4.1-1/Makefile 2025.9.2-1/Makefile
--- 2025.4.1-1/Makefile	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/Makefile	2025-09-17 14:50:19.000000000 +0000
@@ -2,6 +2,7 @@
 CPYTHON_PATH = ../cpython
 PYTHON       = python3
 PACKAGE_ABS_PATH = $(shell pwd)/$(shell find dist/python-docs-theme-*.tar.gz)
+SPHINXOPTS   =
 
 
 .PHONY: help
@@ -22,7 +23,7 @@ venv:
 .PHONY: html
 html: venv
 	cd $(CPYTHON_PATH)/Doc && \
-		make html
+		make SPHINXOPTS="$(SPHINXOPTS)" html
 
 .PHONY: htmlview
 htmlview: html
diff -pruN 2025.4.1-1/babel_runner.py 2025.9.2-1/babel_runner.py
--- 2025.4.1-1/babel_runner.py	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/babel_runner.py	2025-09-17 14:50:19.000000000 +0000
@@ -1,5 +1,5 @@
-#!/usr/bin/venv python3
 """Script for handling translations with Babel"""
+
 from __future__ import annotations
 
 import argparse
@@ -8,18 +8,18 @@ import subprocess
 import tomllib
 from pathlib import Path
 
-PROJECT_DIR = Path(__file__).resolve().parent
-PYPROJECT_TOML = PROJECT_DIR / "pyproject.toml"
-INIT_PY = PROJECT_DIR / "python_docs_theme" / "__init__.py"
-
 # Global variables used by pybabel below (paths relative to PROJECT_DIR)
-DOMAIN = "messages"
+DOMAIN = "python-docs-theme"
 COPYRIGHT_HOLDER = "Python Software Foundation"
-LOCALES_DIR = "locales"
-POT_FILE = Path(LOCALES_DIR, f"{DOMAIN}.pot")
 SOURCE_DIR = "python_docs_theme"
 MAPPING_FILE = ".babel.cfg"
 
+PROJECT_DIR = Path(__file__).resolve().parent
+PYPROJECT_TOML = Path(PROJECT_DIR, "pyproject.toml")
+INIT_PY = PROJECT_DIR / SOURCE_DIR / "__init__.py"
+LOCALES_DIR = Path(f"{SOURCE_DIR}", "locale")
+POT_FILE = Path(LOCALES_DIR, f"{DOMAIN}.pot")
+
 
 def get_project_info() -> dict:
     """Retrieve project's info to populate the message catalog template"""
@@ -75,13 +75,24 @@ def init_locale(locale: str) -> None:
     if pofile.exists():
         print(f"There is already a message catalog for locale {locale}, skipping.")
         return
-    cmd = ["pybabel", "init", "-i", POT_FILE, "-d", LOCALES_DIR, "-l", locale]
+    cmd = [
+        "pybabel",
+        "init",
+        "-i",
+        POT_FILE,
+        "-d",
+        LOCALES_DIR,
+        "-D",
+        DOMAIN,
+        "-l",
+        locale,
+    ]
     subprocess.run(cmd, cwd=PROJECT_DIR, check=True)
 
 
 def update_catalogs(locale: str) -> None:
     """Update translations from existing message catalogs"""
-    cmd = ["pybabel", "update", "-i", POT_FILE, "-d", LOCALES_DIR]
+    cmd = ["pybabel", "update", "-i", POT_FILE, "-d", LOCALES_DIR, "-D", DOMAIN]
     if locale:
         cmd.extend(["-l", locale])
     subprocess.run(cmd, cwd=PROJECT_DIR, check=True)
@@ -89,7 +100,7 @@ def update_catalogs(locale: str) -> None
 
 def compile_catalogs(locale: str) -> None:
     """Compile existing message catalogs"""
-    cmd = ["pybabel", "compile", "-d", LOCALES_DIR]
+    cmd = ["pybabel", "compile", "-d", LOCALES_DIR, "-D", DOMAIN]
     if locale:
         cmd.extend(["-l", locale])
     subprocess.run(cmd, cwd=PROJECT_DIR, check=True)
diff -pruN 2025.4.1-1/debian/changelog 2025.9.2-1/debian/changelog
--- 2025.4.1-1/debian/changelog	2025-05-02 13:05:41.000000000 +0000
+++ 2025.9.2-1/debian/changelog	2025-10-05 10:36:08.000000000 +0000
@@ -1,3 +1,9 @@
+python-docs-theme (2025.9.2-1) unstable; urgency=medium
+
+  * New upstream version.
+
+ -- Matthias Klose <doko@debian.org>  Sun, 05 Oct 2025 12:36:08 +0200
+
 python-docs-theme (2025.4.1-1) unstable; urgency=medium
 
   * New upstream version.
diff -pruN 2025.4.1-1/python_docs_theme/__init__.py 2025.9.2-1/python_docs_theme/__init__.py
--- 2025.4.1-1/python_docs_theme/__init__.py	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/__init__.py	2025-09-17 14:50:19.000000000 +0000
@@ -2,20 +2,47 @@ from __future__ import annotations
 
 from pathlib import Path
 
+from sphinx.locale import get_translation
+
 TYPE_CHECKING = False
 if TYPE_CHECKING:
+    from typing import Any
+
     from sphinx.application import Sphinx
     from sphinx.util.typing import ExtensionMetadata
 
-__version__ = "2025.4.1"
+__version__ = "2025.9.2"
 
 THEME_PATH = Path(__file__).resolve().parent
+LOCALE_DIR = THEME_PATH / "locale"
+MESSAGE_CATALOG_NAME = "python-docs-theme"
+
+
+def add_translation_to_context(
+    app: Sphinx,
+    pagename: str,
+    templatename: str,
+    context: dict[str, Any],
+    doctree: None,
+) -> None:
+    theme_gettext = get_translation(MESSAGE_CATALOG_NAME)
+    sphinx_gettext = get_translation("sphinx")
+
+    def combined(message: str) -> str:
+        translation = theme_gettext(message)
+        if translation == message:
+            return sphinx_gettext(message)
+        return translation
+
+    context["_"] = context["gettext"] = context["ngettext"] = combined
 
 
 def setup(app: Sphinx) -> ExtensionMetadata:
     app.require_sphinx("7.3")
 
     app.add_html_theme("python_docs_theme", str(THEME_PATH))
+    app.add_message_catalog(MESSAGE_CATALOG_NAME, LOCALE_DIR)
+    app.connect("html-page-context", add_translation_to_context)
 
     return {
         "version": __version__,
diff -pruN 2025.4.1-1/python_docs_theme/layout.html 2025.9.2-1/python_docs_theme/layout.html
--- 2025.4.1-1/python_docs_theme/layout.html	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/layout.html	2025-09-17 14:50:19.000000000 +0000
@@ -136,13 +136,13 @@
 
 {% block footer %}
     <div class="footer">
-    &copy; {% if theme_copyright_url or hasdoc('copyright') %}
+    &copy; {% if theme_copyright_url or hasdoc('copyright') -%}
       <a href="{% if theme_copyright_url %}{{ theme_copyright_url }}{% else %}{{ pathto('copyright') }}{% endif %}">
-    {% endif %}
-    {% trans %}Copyright{% endtrans %}
-    {% if theme_copyright_url or hasdoc('copyright') %}
-      </a>
-    {% endif %} {{ copyright|e }}.
+    {%- endif -%}
+    {%- trans %}Copyright{% endtrans -%}
+    {%- if theme_copyright_url or hasdoc('copyright') -%}
+    </a>
+    {%- endif %} {{ copyright|e }}.
     <br>
     {% trans %}This page is licensed under the Python Software Foundation License Version 2.{% endtrans %}
     <br>
diff -pruN 2025.4.1-1/python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/de/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,132 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# Cristián Maureira-Fredes, 2025
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-09 10:20+0200\n"
+"Last-Translator: Cristián Maureira-Fredes, 2025\n"
+"Language-Team: \n"
+"Language: de\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? "
+"1 : 2;\n"
+"Generated-By: Babel 2.16.0\n"
+"X-Generator: Poedit 3.6\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Die Python Software Foundation ist eine gemeinnützige Organisation."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Spenden Sie bitte."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Navigation"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Schnellsuche"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Los"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Thema"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "Auto"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "Hell"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "Dunkel"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Menü"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Copyright"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr ""
+"Diese Seite ist unter der Python Software Foundation License Version 2 "
+"lizenziert."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Beispiele, Rezepte und anderer Code in der Dokumentation sind zusätzlich "
+"unter der Zero Clause BSD-Lizenz lizenziert."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Weitere Informationen finden Sie unter <a "
+"href=\"%(license_file)s\">Verlauf und Lizenz</a>."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "Gehostet auf %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Zuletzt aktualisiert am %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">Fehler gefunden</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"Erstellt mit <a href=\"https://www.sphinx-doc.org/\">Sphinx</"
+"a>%(sphinx_version)s."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Kopieren"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "In die Zwischenablage kopieren"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "Kopiert!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/el/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,126 @@
+# Greek translations for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# Lysandros Nikolaou <lysandros@pygreece.org>, 2025.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-08 10:23+0300\n"
+"PO-Revision-Date: 2025-09-08 10:23+0300\n"
+"Last-Translator: Lysandros Nikolaou <lysandros@pygreece.org>\n"
+"Language: el\n"
+"Language-Team: PyGreece <organizers@pygreece.org>\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.17.0\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Το Python Software Foundation είναι ένας μη κερδοσκοπικός οργανισμός."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Παρακαλώ κάντε μια δωρεά."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Πλοήγηση"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Γρήγορη αναζήτηση"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Μετάβαση"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Θέμα"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "Αυτόματα"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "Φωτεινό"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "Σκούρο"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Μενού"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Πνευματικά δικαιώματα"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License "
+"Version 2."
+msgstr ""
+"Η σελίδα αυτή διατίθεται υπό την άδεια χρήσης του Python Software "
+"Foundation, 2η έκδοση."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Παραδείγματα, οδηγοί και λοιπά κομμάτια κώδικα στην τεκμηρίωση διατίθενται "
+"επιπλέον υπό την άδεια χρήσης Zero Clause BSD."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Δες την <a href=\"%(license_file)s\">Ιστορία και Άδεια χρήσης</a> για "
+"περισσότερες πληροφορίες."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "Φιλοξενείται στο %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Τελευταία ενημέρωση στις %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">Βρήκες ένα bug</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"Δημιουργήθηκε με την χρήση του <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Αντιγραφή"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "Αντιγραφή στο πρόχειρο"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "Αντιγράφηκε!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/es/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,127 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# Cristián Maureira-Fredes, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: Cristián Maureira-Fredes, 2025\n"
+"Language-Team: Spanish (https://app.transifex.com/python-doc/teams/5390/es/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Language: es\n"
+"Plural-Forms: nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "La Python Software Foundation es una corporación sin fines de lucro."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Por favor dona."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Navegación"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Búsqueda rápida"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Ir"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Tema"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "Auto"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "Claro"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "Oscuro"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Menú"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Derechos de autor"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr "Ésta página tiene la licencia Python Software Foundation Versión 2."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Ejemplos, guías, y otro código en la documentación están bajo la licencia "
+"adicional Zero Clause BSD."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Ver <a href=\"%(license_file)s\">Historia y Licencia</a> para más "
+"información."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "Hospedado en %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Última actualización en %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">Encontraste un bug</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"Creado usando <a href=\"https://www.sphinx-"
+"doc.org/\">Sphinx</a>%(sphinx_version)s."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Copiar"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "Copiar al portapapeles"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "¡Copiado!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/id/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,129 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# Hengky Kurniawan, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: Hengky Kurniawan, 2025\n"
+"Language-Team: Indonesian (https://app.transifex.com/python-doc/teams/5390/id/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Language: id\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Python Software Foundation adalah sebuah korporasi nirlaba."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Mari berdonasi."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Navigasi"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Pencarian cepat"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Telusuri"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Tema"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "Otomatis"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "Terang"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "Gelap"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Menu"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Hak cipta"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr ""
+"Halaman ini dilisensikan di bawah Lisensi Python Software Foundation Versi "
+"2."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Contoh, resep, dan kode lainnya dalam dokumentasi juga dilisensikan di bawah"
+" Lisensi Zero Clause BSD."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Lihat <a href=\"%(license_file)s\">Sejarah dan Lisensi</a> untuk informasi "
+"lebih lanjut."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "Dihos di %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Terakhir diperbarui pada %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">Menemukan kekutu</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"Dibuat menggunakan <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Salin"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "Salin ke papan klip"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "Tersalin!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/ja/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,123 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# Inada Naoki <songofacandy@gmail.com>, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: Inada Naoki <songofacandy@gmail.com>, 2025\n"
+"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/ja/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Language: ja\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Pythonソフトウェア財団は非営利法人です。"
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "寄付をするには"
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Navigation"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "検索"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Go"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "テーマ"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "自動"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "ライト"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "ダーク"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "メニュー"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Copyright"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr "このページはPython Software Foundation License Version 2でライセンスされています。"
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr "ドキュメント内のサンプル、レシピ等のコードは、Zero Clause BSDライセンスの下で追加的にライセンスされています。"
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr "詳しくは<a href=\"%(license_file)s\">歴史とライセンス</a>を参照してください。"
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "%(hosted_on)sにてホストされています。"
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "最終更新日: %(last_updated)s"
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">バグを報告する</a>"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"<a href=\"https://www.sphinx-"
+"doc.org/\">Sphinx</a>%(sphinx_version)sを使って構築されています。"
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "コピー"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "クリップボードにコピーする"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "コピーされました。"
diff -pruN 2025.4.1-1/python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/ko/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,124 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# wonsuk yang, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: wonsuk yang, 2025\n"
+"Language-Team: Korean (https://app.transifex.com/python-doc/teams/5390/ko/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Language: ko\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "파이썬 소프트웨어 재단은 비영리 재단입니다."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "기부를 부탁드립니다."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "내비게이션"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "빠른 검색"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "시작"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "테마"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "자동"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "라이트"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "다크"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "메뉴"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "저작권"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr "해당하는 페이지의 저작권은 파이썬 소프트웨어 재단 저작권 라이센스 버전 2를 통해 보호받음을 고지 드립니다."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"해당하는 문서 내의 예제, 사용법, 그리고 다른 코드들은 또한 Zero Clause BSD 라이센스를 통해 보호받음을 고지 드립니다."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr "보다 다양한 정보를 위해서는 <a href=\"%(license_file)s\">라이센스와 기록물</a> 을 참고 부탁드립니다."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "호스트 주소는 다음과 같습니다: %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "마지막 업데이트: %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">문제가 생기셨나요</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"해당하는 문서는 <a href=\"https://www.sphinx-doc.org/\">스핑크스</a> "
+"%(sphinx_version)s를 통해 만들어졌습니다."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "복사"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "클립보드에 복사"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "복사되었습니다!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/pl/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,127 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# Stan Ulbrych, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: Stan Ulbrych, 2025\n"
+"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.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"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Python Software Foundation jest organizacją non-profit."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Prosimy o wsparcie."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Nawigacja"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Szybkie wyszukiwanie"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Szukaj"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Motyw"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "auto"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "jasny"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "ciemny"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Menu"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Prawa autorskie"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr "Ta strona jest objęta licencją Python Software Foundation w wersji 2."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Przykłady, przepisy i inny kod w dokumentacji są dodatkowo objęte licencją "
+"Zero Clause BSD."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Zobacz <a href=\"%(license_file)s\">Historię i licencję</a> aby uzyskać "
+"więcej informacji."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "Hostowane na %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Ostatnia aktualizacja %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">Znalazłeś(-aś) błąd</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"Stworzone za pomocą <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Kopiuj"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "Skopiuj do schowka"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "Skopiowano!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/pt_BR/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,130 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# Alexsey Batista da Silva, 2025
+# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
+"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/teams/5390/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.16.0\n"
+"Language: pt_BR\n"
+"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "A Python Software Foundation é uma corporação sem fins lucrativos."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Por favor, faça sua doação."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Navegação"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Pesquisa rápida"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Ir"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Tema"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "Automático"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "Claro"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "Escuro"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Menu"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Direitos autorais"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr ""
+"Esta página está licenciada sob a Licença da Python Software Foundation "
+"Versão 2."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Exemplos, receitas e outros códigos na documentação são licenciados "
+"adicionalmente sob a licença BSD Zero Clause."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Consulte <a href=\"%(license_file)s\">Histórico e licença</a> para obter "
+"mais informações."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "Hospedado em %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Última atualização em %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">Encontrou um erro</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"Criado usando o <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Copiar"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "Copiar para a área de transferência"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "Copiado!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/sv/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,128 @@
+# Swedish translations for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# Daniel Nylander, 2025.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/"
+"issues\n"
+"POT-Creation-Date: 2025-08-07 19:09+0200\n"
+"PO-Revision-Date: 2025-08-29 07:03+0200\n"
+"Last-Translator: Daniel Nylander <github@danielnylander.se>\n"
+"Language-Team: sv\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"Generated-By: Babel 2.16.0\n"
+"X-Generator: Poedit 3.7\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Python Software Foundation är ett icke-vinstdrivande företag."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Donera."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Navigering"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Snabbsök"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Start"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Tema"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "Auto"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "Ljus"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "Mörk"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Meny"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Upphovsrätt"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License "
+"Version 2."
+msgstr ""
+"Denna sida är licensierad enligt Python Software Foundation License "
+"version 2."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Exempel, recept och annan kod i dokumentationen är dessutom "
+"licensierade under Zero Clause BSD-licensen."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Se <a href=\"%(license_file)s\">Historik och licens</a> för mer "
+"information."
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "Hosting %(hosted_on)s."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "Senast uppdaterad %(last_updated)s."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "Har du <a href=\"%(theme_issues_url)s\">hittat ett fel</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"Skapad med hjälp av <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Kopiera"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "Kopiera till urklipp"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "Kopierad!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/tr/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,129 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# Ege Akman, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: Ege Akman, 2025\n"
+"Language-Team: Turkish (https://app.transifex.com/python-doc/teams/5390/tr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Language: tr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Python Software Foundation kâr amacı gütmeyen bir kuruluştur."
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "Lütfen bağış yapın."
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "Navigasyon"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "Hızlı arama"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Ara"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "Tema"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "Otomatik"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "Açık"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "Koyu"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "Menü"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "Telif Hakkı"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr ""
+"Bu sayfa, Python Software Foundation License Version 2 kapsamında "
+"lisanslanmıştır."
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr ""
+"Dokümantasyondaki örnekler, tarifler ve diğer kodlar ek olarak Zero Clause "
+"BSD License kapsamında lisanslanmıştır."
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr ""
+"Daha fazla bilgi için <a href=\"%(license_file)s\">Geçmiş ve Lisans</a> "
+"bölümüne bakın. "
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "%(hosted_on)s üzerinde barındırılmaktadır."
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "En son %(last_updated)s tarihinde güncellendi."
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">Bir bug mı buldunuz</a>?"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"<a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s ile "
+"oluşturuldu. "
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "Kopyala"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "Panoya kopyala"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "Kopyalandı!"
diff -pruN 2025.4.1-1/python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/zh_CN/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,122 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# 汇民 王 <whuim@qq.com>, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: 汇民 王 <whuim@qq.com>, 2025\n"
+"Language-Team: Chinese (China) (https://app.transifex.com/python-doc/teams/5390/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.16.0\n"
+"Language: zh_CN\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Python 软件基金会是一家非营利性公司。"
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "请进行捐赠。"
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "导航"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "快速搜索"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "转到"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "主题"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "自动"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "明亮"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "黑暗"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "菜单"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "版权"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr "本页面采用 Python 软件基金会许可证第 2 版授权。"
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr "文档中的示例、代码片段及其他代码内容额外采用零条款 BSD 许可证授权。"
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr "更多信息请参阅《<a href=\"%(license_file)s\"> 历史与许可 </a>》。"
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "托管在%(hosted_on)s 上。"
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "最后更新于%(last_updated)s 。"
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">发现了错误</a>？"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"使用<a href=\"https://www.sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s 创建。"
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "复制"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "复制到剪贴板"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "已复制！"
diff -pruN 2025.4.1-1/python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po 2025.9.2-1/python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po
--- 2025.4.1-1/python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po	1970-01-01 00:00:00.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/locale/zh_TW/LC_MESSAGES/python-docs-theme.po	2025-09-17 14:50:19.000000000 +0000
@@ -0,0 +1,122 @@
+# Translations template for python-docs-theme.
+# Copyright (C) 2025 Python Software Foundation
+# This file is distributed under the same license as the python-docs-theme
+# project.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
+#
+# Translators:
+# W. H. Wang <mattwang44@gmail.com>, 2025
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: python-docs-theme 2025.5\n"
+"Report-Msgid-Bugs-To: https://github.com/python/python-docs-theme/issues\n"
+"POT-Creation-Date: 2025-09-06 08:40+0100\n"
+"PO-Revision-Date: 2025-09-06 07:41+0000\n"
+"Last-Translator: W. H. Wang <mattwang44@gmail.com>, 2025\n"
+"Language-Team: Chinese (Taiwan) (https://app.transifex.com/python-doc/teams/5390/zh_TW/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Generated-By: Babel 2.16.0\n"
+"Language: zh_TW\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+
+#: python_docs_theme/footerdonate.html:1
+msgid "The Python Software Foundation is a non-profit corporation."
+msgstr "Python 軟體基金會是一家非營利法人。"
+
+#: python_docs_theme/footerdonate.html:2
+msgid "Please donate."
+msgstr "敬請捐贈。"
+
+#: python_docs_theme/layout.html:6
+msgid "Navigation"
+msgstr "導航"
+
+#: python_docs_theme/layout.html:51 python_docs_theme/layout.html:111
+msgid "Quick search"
+msgstr "快速搜索"
+
+#: python_docs_theme/layout.html:52 python_docs_theme/layout.html:112
+msgid "Go"
+msgstr "Go"
+
+#: python_docs_theme/layout.html:60
+msgid "Theme"
+msgstr "主題"
+
+#: python_docs_theme/layout.html:62
+msgid "Auto"
+msgstr "自動"
+
+#: python_docs_theme/layout.html:63
+msgid "Light"
+msgstr "淺色模式"
+
+#: python_docs_theme/layout.html:64
+msgid "Dark"
+msgstr "深色模式"
+
+#: python_docs_theme/layout.html:96
+msgid "Menu"
+msgstr "選單"
+
+#: python_docs_theme/layout.html:142
+msgid "Copyright"
+msgstr "版權所有"
+
+#: python_docs_theme/layout.html:147
+msgid ""
+"This page is licensed under the Python Software Foundation License Version "
+"2."
+msgstr "此頁面採用 Python 軟體基金會授權條款第 2 版。"
+
+#: python_docs_theme/layout.html:149
+msgid ""
+"Examples, recipes, and other code in the documentation are additionally "
+"licensed under the Zero Clause BSD License."
+msgstr "文件中的範例、應用技巧與其他程式碼額外採用了 Zero Clause BSD 授權條款。"
+
+#: python_docs_theme/layout.html:152
+#, python-format
+msgid ""
+"See <a href=\"%(license_file)s\">History and License</a> for more "
+"information."
+msgstr "更多訊息請見<a href=\"%(license_file)s\">歷史與授權條款</a>。"
+
+#: python_docs_theme/layout.html:155
+#, python-format
+msgid "Hosted on %(hosted_on)s."
+msgstr "託管於 %(hosted_on)s。"
+
+#: python_docs_theme/layout.html:163
+#, python-format
+msgid "Last updated on %(last_updated)s."
+msgstr "最後更新於 %(last_updated)s。"
+
+#: python_docs_theme/layout.html:166
+#, python-format
+msgid "<a href=\"%(theme_issues_url)s\">Found a bug</a>?"
+msgstr "<a href=\"%(theme_issues_url)s\">發現 bug</a>？"
+
+#: python_docs_theme/layout.html:170
+#, python-format
+msgid ""
+"Created using <a href=\"https://www.sphinx-doc.org/\">Sphinx</a> "
+"%(sphinx_version)s."
+msgstr ""
+"以 <a href=\"https://www.sphinx-doc.org/\">Sphinx</a>%(sphinx_version)s建立。 "
+
+#: python_docs_theme/static/copybutton.js:30
+#: python_docs_theme/static/copybutton.js:55
+msgid "Copy"
+msgstr "複製"
+
+#: python_docs_theme/static/copybutton.js:31
+msgid "Copy to clipboard"
+msgstr "複製到剪貼板"
+
+#: python_docs_theme/static/copybutton.js:53
+msgid "Copied!"
+msgstr "已複製！"
diff -pruN 2025.4.1-1/python_docs_theme/static/copybutton.js 2025.9.2-1/python_docs_theme/static/copybutton.js
--- 2025.4.1-1/python_docs_theme/static/copybutton.js	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/static/copybutton.js	2025-09-17 14:50:19.000000000 +0000
@@ -16,7 +16,7 @@ function getCopyableText(rootElement) {
     }
     // Remove all elements with the "go" (Generic.Output),
     // "gp" (Generic.Prompt), or "gt" (Generic.Traceback) CSS class
-    const elements = rootElement.querySelectorAll(".gp, .go, .gt")
+    const elements = rootElement.querySelectorAll(".gp, .go, .gt, .linenos")
     for (const el of elements) {
         el.remove()
     }
Binary files 2025.4.1-1/python_docs_theme/static/py.png and 2025.9.2-1/python_docs_theme/static/py.png differ
diff -pruN 2025.4.1-1/python_docs_theme/static/pydoctheme.css 2025.9.2-1/python_docs_theme/static/pydoctheme.css
--- 2025.4.1-1/python_docs_theme/static/pydoctheme.css	2025-04-30 12:14:26.000000000 +0000
+++ 2025.9.2-1/python_docs_theme/static/pydoctheme.css	2025-09-17 14:50:19.000000000 +0000
@@ -123,7 +123,9 @@ form.inline-search input {
 }
 
 form.inline-search input[type='submit'] {
-    width: 40px;
+    /* In some languages, more than 40px is required */
+    width: auto;
+    min-width: 40px;
 }
 
 div.document {
@@ -451,6 +453,7 @@ div.genindex-jumpbox a {
     color: #000;
     background-color: #fff;
     border: 1px solid #ac9; /* follows div.body pre */
+    display: none;
 }
 
 .copybutton:hover {
@@ -461,6 +464,14 @@ div.genindex-jumpbox a {
     background-color: #ddd;
 }
 
+.highlight:active .copybutton {
+    display: block;
+}
+
+.highlight:hover .copybutton {
+    display: block;
+}
+
 @media (max-width: 1023px) {
     /* Body layout */
     div.body {
