From ab5f416bde334e67656b57095fd50cf051905a6e Mon Sep 17 00:00:00 2001 From: Ivan Date: Sat, 27 Sep 2025 15:57:27 -0500 Subject: [PATCH] Add internationalization support in Sphinx configuration --- source/conf.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/conf.py b/source/conf.py index b732aa2..9fc4f6e 100644 --- a/source/conf.py +++ b/source/conf.py @@ -19,6 +19,12 @@ extensions = [ 'sphinx.ext.napoleon', ] +# -- Internationalization --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#internationalization + +locale_dirs = ['../locales/'] +gettext_compact = False + templates_path = ['_templates'] exclude_patterns = []