I have Django site in 2 languages - Moldavian(default) and Russian But django-admin is not localized for Moldavian, that's way i want to use Russian in admin. So my settings.py will look like this:
LANGUAGE_CODE = 'md' LANGUAGES = ( ('md', (u'Moldavian')), ('ru', (u'English')), ) But django looks for translation for "md" in admin - can't find it and uses English Does exists simple way to tell Django - allways to use Russian for admin. The only idea i have is to write simple middleware. But may be exists another solution? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---