0
votes

I have a Django project in which I have changed the default 'Django Administration' text in the header. Now I have implemented translation of strings that django knows about, but I cannot figure out how to translate this title. I put the translation function in models.py but it doesn't change when I change Language. I've edited the base.html template like so {% trans 'My Console' %} And added the msgstr in my .po files and ran makemessages and compilemessages I am running out of things to try. Can anyone shed some light on how to do this? I can supply code if it will help.

Thanks for reading.

1

1 Answers

0
votes

Try to move your app name up to admin app in your INSTALLED_APPS settings.py tuple.