diff options
Diffstat (limited to 'sphinx/htmlhelp.py')
-rw-r--r-- | sphinx/htmlhelp.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sphinx/htmlhelp.py b/sphinx/htmlhelp.py index a3ace5dd8..ea21d0ce1 100644 --- a/sphinx/htmlhelp.py +++ b/sphinx/htmlhelp.py @@ -152,7 +152,8 @@ def build_hhx(builder, outdir, outname): f.write('<LI> ' + object_sitemap % (builder.config.html_short_title, 'index.html')) if builder.config.html_use_modindex: - f.write('<LI> ' + object_sitemap % ('Global Module Index', 'modindex.html')) + f.write('<LI> ' + object_sitemap % (_('Global Module Index'), + 'modindex.html')) # the TOC tocdoc = builder.env.get_and_resolve_doctree(builder.config.master_doc, builder, prune_toctrees=False) |