Some Tags give me translated Words without setting up the *.po file.
{% trans "groups" %}
{% trans "users" %}
Unfortunately they won’t be overridden when creating the *.po file and running:
django-admin.py compilemessages
So how do I get rid of the default translations ? I would prefer a solution on project level, because I don’t want to modify Django core files.
There are several ways to override it
{% trans "my:groups" %}{% trans "groups" context "my" %}