Top "Django-i18n" questions

Django internationalization provides developers with the ability to build web applications and provide content in multiple languages and locales.

Django internationalization language codes

Where can I find list of languages and language_code like this. (Swedish,sv) (English,en)

python django internationalization django-views django-i18n
What's the correct way to set up Django translation?

I've got an issue with translations not working on Django 1.6. I've added this to my settings.py: LANGUAGE_CODE = 'en-us' …

python django django-i18n
How to install GNU gettext on windows 7?

I need to install version 0.15 or higher of GNU's gettext so that I can use some i18n feateres with …

windows gnu gettext django-i18n
Issue trying to change language from Django template

I need to include two buttons or links to allow users change language between English and Spanish. I've read the …

python django internationalization django-i18n
AppRegistryNotReady: The translation infrastructure cannot be initialized

When I try to access to my app, I'm getting the following error. AppRegistryNotReady: The translation infrastructure cannot be initialized …

python django django-i18n
How can I change Django admin language?

I have a django 1.6 site with i18n working. I can change the frontend language with a select box in …

python django django-i18n
How to specify context of translation in Django {% trans %} {% blocktrans %}?

Documentation of Django says Contextual markers are also supported by the trans and blocktrans template tags. but it not explained …

django internationalization django-templates django-i18n
Django i18n blocktrans vs trans

In Django templates, what exactly is the difference between these two: {% blocktrans %}My Text{% endblocktrans %} {% trans 'My Text' %}

django internationalization django-i18n