vote up 1 vote down star

django.utils.translation.get_language() returns default locale if translation is not activated. Is there a way to find out whether the translation is activated (via translation.activate()) or not?

flag

Doesn't look like it to me, but I may be wrong. – Dominic Rodger Oct 22 at 8:43

1 Answer

vote up -1 vote down

Always inspect source code for such question, it's faster than posting to Web!

Django does it's black magic behind the scene, and uses some kind of dispatcher to simulate disabled translations.

The best way for you to do is:

import setttings
assert settings.USE_i18N == True
link|flag
Always make sure you understand the question before posting an answer. I'm asking whether or not translation.activate() has been called. – muhuk Nov 9 at 17:44
Also you shouldn't import settings directly. Preferred way is from django.conf import settings, see docs for more information. Please correct your code. – muhuk Nov 9 at 17:45

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.