diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-08-14 14:21:43 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-14 14:21:43 +0900 |
commit | dab15e2857464080bb88aa37d82c467f96cbd333 (patch) | |
tree | 63fd031b275757f274ee75318a938df3f2489cb2 /doc | |
parent | 5f420a4d8fd0a97faddcad5a46b9048563a66239 (diff) | |
parent | 1bf7fe424e16625f2ab4ad5824ca4aab6cf0ae65 (diff) | |
download | sphinx-git-dab15e2857464080bb88aa37d82c467f96cbd333.tar.gz |
Merge pull request #8058 from nijel/single-domain
i18n: Add support for having single text domain
Diffstat (limited to 'doc')
-rw-r--r-- | doc/usage/configuration.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index add78326b..3fc3a5306 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -756,9 +756,15 @@ documentation on :ref:`intl` for details. If true, a document's text domain is its docname if it is a top-level project file and its very base directory otherwise. + If set to string, all document's text domain is this string, making all + documents use single text domain. + By default, the document ``markup/code.rst`` ends up in the ``markup`` text domain. With this option set to ``False``, it is ``markup/code``. + .. versionchanged:: 3.3 + The string value is now accepted. + .. confval:: gettext_uuid If true, Sphinx generates uuid information for version tracking in message |