Alowing 'fuzzy' translations in django pages? Alowing 'fuzzy' translations in django pages? python python

Alowing 'fuzzy' translations in django pages?


It would be unfortunate to show these translations as some of them are most certainly wrong. You are supposed to remove the fuzzy tag when you update the translations and revise the guessed translations that are marked as fuzzy.

However, you may run a tool to quickly delete the fuzzy markers from a .po file: Removing all fuzzy entries of a PO file


UPDATE

Here is a great overview of the GNU gettext work-flow: https://www.gnu.org/software/gettext/manual/gettext.html#Overview

It is msgfmt that strips the fuzzy translations. It has an option --use-fuzzy that includes the fuzzy translations.

msgfmt is wrapped by compilemessages django admin command, which since version 1.8 has the --use-fuzzy option too (https://docs.djangoproject.com/en/1.9/ref/django-admin/#compilemessages)