I need to get the user's current locale name as part of some internationalization proccess of a specific plugin, in the format ll_CC (like pt_BR, en_US, pl_PL), as described at https://docs.djangoproject.com/en/dev/topics/i18n/ inside of a Django template. I've been able to get only the language code so far (which is in the format pt-br, en-us, pl) using:
{% load i18n %}
{% get_current_language as LANG %}
Your language is: {{ LANG }}
But I need the locale name. How can I get this? Thank you very much.