Hello - I'm trying to figure out the django translation system, so I wrote a little test app. I created the translation files and compiled them (*.po and *.mo), and now I'm trying to render a template in a different language. I change the LANGUAGE_CODE in my settings.py to the other language code, but the template still renders in English. No errors are given, just can't see the other language I'm trying out, even though I translated, compiled and all that. I have the db set up to support whatever's required. I also used the get_current_language in the template:
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
{% get_available_languages as LANGUAGES %}
{% get_current_language_bidi as LANGUAGE_BIDI %}
the current language is {{ LANGUAGE_CODE }}
but I'm getting blank where the code should appear. What am I missing? thanks.