django internationalization doesn't work
- by xRobot
I have:
created translation strings in the template and in the application view.
run this command: django-admin.py makemessages -l it
and the file it/LC_MESSAGES/django.po has been created
run this command: django-admin.py compilemessages
and I receive: processing file django.po in /home/jobber/Desktop/library/books/locale/it/LC_MESSAGES
set the language code in settings.py: LANGUAGE_CODE = 'it-IT'
but.... translation doesn't work !!
I always see english text.
Why ?