I'm trying to enable translations for a django project and django-admin.py makemessages -l de
doesn't seem to create any .po files, although there is a couple of {% trans ... %}
in templates and a couple of gettext(...)
in models for tests.
Accorgin to the documentation https://docs.djangoproject.com/en/1.7/ref/django-admin/#django-admin-makemessages, the command should search for translations in the whole project tree and create corresponding files in e.g. conf/locale
directory if no setting is specified.
The only output I get is processing locale ru
.
Any way to debug it or maybe well known pitfalls that I didn't find in google?