src/cm/utils/i18n.py
author gibus
Thu, 31 Jan 2013 14:52:48 +0100
changeset 496 c3df46754007
parent 0 40c8f766c9b8
permissions -rw-r--r--
Fixes crash when editing, apparently when comment spans on multiple text nodes.

from django.utils.translation.trans_real import translation

def translate_to(value, language_code):
    t = translation(language_code)    
    return getattr(t, 'gettext')(value)