Is there a way in django to translate a string to another language than the one specified in the language session or cookie?
I mean doing it while calling ugettext. Something like this, where 'en' is the language code:
from django.utils.translation import ugettext as _
def translate():
translated_string = _('Translate me', 'en')