Hi,

I have some batch process that send i18n mails, I'm using a template
to render the message body.
The subject is translated but not the body.

This is a sample code:

from django.utils import translation
from django.utils.translation import ugettext as _

lang = user.get_profile().language
if lang:
    language = translation.to_locale(lang)
    translation.activate(language)

subject = _("A translated subject")
message = render_to_string('updater/queuestatus.mail')

Any idea why?

-- 
Kind Regards

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to