In this project I have two languages defined in my settings.py, and have set LANGUAGE_CODE. I've created the po/mo-files and the site is translated to whatever language I specify in settings.
The problem arises when I try to set the language runtime. I've implemented the standard example of how to choose a language, and if I output request.LANGUAGE_CODE, it shows whatever I picked runtime. The site still translates to whatever I have in my settings file. If I now jump into the admin thou, the correct translation is indeed in place! In my limited experience with django I would say that this proves that: 1. My language-files are set up correct, since the site translates according to my settings-file. 2. My method to choose language runtime is correct, since the request object contains the right language code and the admin translates just fine. But obviously I'm doing something wrong somewhere, because the result is not what I would expect. settings.py LANGUAGES = ( ('en', 'English'), ('es', 'Spanish'), ) LANGUAGE_CODE = 'en' Would be much grateful for any kind of hint, I've spent so many hours trying to solve this and I can't figure out what my next move should be. Thanks, //Magnus --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---