Problem
I translate my group names in my Django application with the default translation tools.
Since my group names are not hard-coded in my code, when I run makemessages
, the lines corresponding to my group names are commented out.
Example
I have a group named management_product
which is automatically created during migrations. I put these lines in django.po
:
msgid "management_product"
msgstr "Gestion des produits"
But if I run django-admin makemessages -l fr
, they are commented out:
#~ msgid "management_product"
#~ msgstr "Gestion des produits"
Question
How can I disable this behaviour?