diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-15 18:31:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-15 18:31:55 (GMT) |
commit | 7c224dd4cca2c646c3d0883873be2d06ab0177f3 (patch) | |
tree | 3453481ff2be120907dddf08fb029135e380431a | |
parent | 4f81915cf59389b4ac03972561b53ea2b662696f (diff) | |
download | cpython-7c224dd4cca2c646c3d0883873be2d06ab0177f3.zip cpython-7c224dd4cca2c646c3d0883873be2d06ab0177f3.tar.gz cpython-7c224dd4cca2c646c3d0883873be2d06ab0177f3.tar.bz2 |
[3.13] gh-119009: Add gettext target (GH-119006) (#119074)
Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com>
-rw-r--r-- | Doc/Makefile | 6 | ||||
-rw-r--r-- | Doc/conf.py | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile index dd068c5..eca574e 100644 --- a/Doc/Makefile +++ b/Doc/Makefile @@ -32,6 +32,7 @@ help: @echo " clean to remove build files" @echo " venv to create a venv with necessary tools" @echo " html to make standalone HTML files" + @echo " gettext to generate POT files" @echo " htmlview to open the index page built by the html target in your browser" @echo " htmllive to rebuild and reload HTML files in your browser" @echo " htmlhelp to make HTML files and a HTML help project" @@ -140,6 +141,11 @@ pydoc-topics: build @echo "Building finished; now run this:" \ "cp build/pydoc-topics/topics.py ../Lib/pydoc_data/topics.py" +.PHONY: gettext +gettext: BUILDER = gettext +gettext: SPHINXOPTS += '-d build/doctrees-gettext' +gettext: build + .PHONY: htmlview htmlview: html $(PYTHON) -c "import os, webbrowser; webbrowser.open('file://' + os.path.realpath('build/html/index.html'))" diff --git a/Doc/conf.py b/Doc/conf.py index 0e86de8..47fb96f 100644 --- a/Doc/conf.py +++ b/Doc/conf.py @@ -374,6 +374,8 @@ htmlhelp_basename = 'python' + release.replace('.', '') # Split the index html_split_index = True +# Split pot files one per reST file +gettext_compact = False # Options for LaTeX output # ------------------------ |