Skip to content

Commit

Permalink
Close sphinx-doc#9618: i18n: Add gettext_allow_fuzzy_translations
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed Nov 8, 2021
1 parent 8e35049 commit 5887647
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Expand Up @@ -43,6 +43,8 @@ Features added
* #9691: C, added new info-field ``retval``
for :rst:dir:`c:function` and :rst:dir:`c:macro`.
* C++, added new info-field ``retval`` for :rst:dir:`cpp:function`.
* #9618: i18n: Add :confval:`gettext_allow_fuzzy_translations` to allow "fuzzy"
messages for translation
* #9672: More CSS classes on Python domain descriptions
* #9695: More CSS classes on Javascript domain descriptions
* #9683: Revert the removal of ``add_stylesheet()`` API. It will be kept until
Expand Down
7 changes: 7 additions & 0 deletions doc/usage/configuration.rst
Expand Up @@ -802,6 +802,13 @@ documentation on :ref:`intl` for details.
.. versionchanged:: 1.5
Use ``locales`` directory as a default value

.. confval:: gettext_allow_fuzzy_translations

If true, "fuzzy" messages in the message catalogs are used for translation.
The default is ``False``.

.. versionadded:: 4.3

.. confval:: gettext_compact

.. versionadded:: 1.1
Expand Down
2 changes: 1 addition & 1 deletion sphinx/application.py
Expand Up @@ -284,7 +284,7 @@ def _init_i18n(self) -> None:
self.config.language, self.config.source_encoding)
for catalog in repo.catalogs:
if catalog.domain == 'sphinx' and catalog.is_outdated():
catalog.write_mo(self.config.language)
catalog.write_mo(self.config.language, self.config.gettext_allow_fuzzy_translations)

locale_dirs: List[Optional[str]] = list(repo.locale_dirs)
locale_dirs += [None]
Expand Down
2 changes: 1 addition & 1 deletion sphinx/builders/__init__.py
Expand Up @@ -217,7 +217,7 @@ def cat2relpath(cat: CatalogInfo) -> str:
for catalog in status_iterator(catalogs, __('writing output... '), "darkgreen",
len(catalogs), self.app.verbosity,
stringify_func=cat2relpath):
catalog.write_mo(self.config.language)
catalog.write_mo(self.config.language, self.config.gettext_allow_fuzzy_translations)

def compile_all_catalogs(self) -> None:
repo = CatalogRepository(self.srcdir, self.config.locale_dirs,
Expand Down
1 change: 1 addition & 0 deletions sphinx/builders/gettext.py
Expand Up @@ -289,6 +289,7 @@ def finish(self) -> None:
def setup(app: Sphinx) -> Dict[str, Any]:
app.add_builder(MessageCatalogBuilder)

app.add_config_value('gettext_allow_fuzzy_translations', False, 'gettext')
app.add_config_value('gettext_compact', True, 'gettext', {bool, str})
app.add_config_value('gettext_location', True, 'gettext')
app.add_config_value('gettext_uuid', False, 'gettext')
Expand Down
4 changes: 2 additions & 2 deletions sphinx/util/i18n.py
Expand Up @@ -59,7 +59,7 @@ def is_outdated(self) -> bool:
not path.exists(self.mo_path) or
path.getmtime(self.mo_path) < path.getmtime(self.po_path))

def write_mo(self, locale: str) -> None:
def write_mo(self, locale: str, use_fuzzy: bool = False) -> None:
with open(self.po_path, encoding=self.charset) as file_po:
try:
po = read_po(file_po, locale)
Expand All @@ -69,7 +69,7 @@ def write_mo(self, locale: str) -> None:

with open(self.mo_path, 'wb') as file_mo:
try:
write_mo(file_mo, po)
write_mo(file_mo, po, use_fuzzy)
except Exception as exc:
logger.warning(__('writing error: %s, %s'), self.mo_path, exc)

Expand Down

0 comments on commit 5887647

Please sign in to comment.