I have a Django project which uses django-tagging
and is supposed to run in German. So I looked into the sources and found that django-tagging
does indeed use gettext_lazy
and is thus completely translatable. However, there are no translations available in the package. So I assume there must be a way for me to translate it from within my project.
In other words, I expect ./manage.py makemessages -a
to include untranslated strings from django-tagging
, but apparently I'm wrong to expect that.
So, how do I manage this situation properly? Will translating django-tagging
in the upstream repository work as expected?