forked from python/python-docs-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
43 lines (30 loc) · 1.16 KB
/
__init__.py
File metadata and controls
43 lines (30 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from __future__ import annotations
from pathlib import Path
from sphinx.locale import get_translation
TYPE_CHECKING = False
if TYPE_CHECKING:
from sphinx.application import Sphinx
from sphinx.util.typing import ExtensionMetadata
__version__ = "2025.9.1"
THEME_PATH = Path(__file__).resolve().parent
LOCALE_DIR = THEME_PATH / "locale"
MESSAGE_CATALOG_NAME = "python-docs-theme"
def add_translation_to_context(app, pagename, templatename, context, doctree):
theme_gettext = get_translation(MESSAGE_CATALOG_NAME)
sphinx_gettext = get_translation("sphinx")
def combined(msg):
trans = theme_gettext(msg)
if trans == msg:
return sphinx_gettext(msg)
return trans
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__,
"parallel_read_safe": True,
"parallel_write_safe": True,
}