14👍
simplest way to switch language is:
from django.utils.translation import activate
activate('en')
# do smthg
activate('pl')
# do something in other language
be carefull with this as it is changing context for the rest of the execution of this process/thread.
48👍
As @SteveMayne pointed out in comment (but it worth an answer), you can now use the context manager translation.override
(works with Django 1.6, didn’t check with earlier versions):
from django.utils import translation
print(_("Hello")) # Will print to Hello if default = 'en'
# Make a block where the language will be Danish
with translation.override('dk'):
print(_("Hello")) # print "Hej"
It basically uses the same thing than @bitrut answer but it’s built-in in Django, so it makes less dependencies…
- [Django]-How to server HTTP/2 Protocol with django
- [Django]-Constructing Django filter queries dynamically with args and kwargs
- [Django]-How do I match the question mark character in a Django URL?
15👍
You can force language in a nice way using context manager:
class force_lang:
def __init__(self, new_lang):
self.new_lang = new_lang
self.old_lang = translation.get_language()
def __enter__(self):
translation.activate(self.new_lang)
def __exit__(self, type, value, tb):
translation.activate(self.old_lang)
Then you can use with
statement:
with force_lang('en'):
...
- [Django]-Suddenly when running tests I get "TypeError: 'NoneType' object is not iterable
- [Django]-Django Rest Framework model serializer with out unique together validation
- [Django]-FileUploadParser doesn't get the file name
5👍
It’s quite simple using django-i18next
(https://pypi.python.org/pypi/django-i18next).
Load the templatetags.
{% load i18n i18next %}
The following code forces Dutch locale for whatever is put inside the overridelocale
block.
{% overridelocale 'nl' %}
<p>
<a href="/login/">{% trans "Log in" %}</a>
</p>
{% endoverridelocale %}
The following code forces Russian locale for whatever is put inside the overridelocale
block.
{% overridelocale 'ru' %}
<p>
<a href="/login/">{% trans "Log in" %}</a>
</p>
{% endoverridelocale %}
The following code forces English locale for whatever is put inside the overridelocale
block.
{% overridelocale 'en' %}
<p>
<a href="/login/">{% trans "Log in" %}</a>
</p>
{% endoverridelocale %}
- [Django]-Remove pk field from django serialized objects
- [Django]-How to make an auto-filled and auto-incrementing field in django admin
- [Django]-How to run a celery worker with Django app scalable by AWS Elastic Beanstalk?
1👍
Turns out the django docs explain how:
While Django provides a rich set of i18n tools for use in views and templates, it does not restrict the usage to Django-specific code. The Django translation mechanisms can be used to translate arbitrary texts to any language that is supported by Django (as long as an appropriate translation catalog exists, of course). You can load a translation catalog, activate it and translate text to language of your choice, but remember to switch back to original language, as activating a translation catalog is done on per-thread basis and such change will affect code running in the same thread.
- [Django]-Django get objects not referenced by foreign key
- [Django]-"<Message: title>" needs to have a value for field "id" before this many-to-many relationship can be used.
- [Django]-Django: Example of generic relations using the contenttypes framework?