I am really getting annoyed by this. So I have the following structure:
project/
project/
locale/
fr/
locale/
LC_MESSAGES/
django.po
django.mo
templates/
I have
USE_I18N = True
USE_L10N = True
LANGUAGE_COOKIE_NAME = 'django_language'
LOCALE_PATHS = '/Users/xxxx/Programming/Projects/xxxx/locale'
LANGUAGES = ( ('en', gettext_noop('English')), ('fr', gettext_noop('French')), )
I mostly have my strings to translate in my templates which are in the templates directory.
Within my app, it seems like I am setting the language correctly, since I can see the django password forms are changing from French to English. It is just MY templates are not getting translated.
Thanks!