How can I get the current language in Django?
Or you can also get this in your views
request.LANGUAGE_CODE
Functions of particular interest are django.utils.translation.get_language()
which returns the language used in the current thread. See documentation.