src/cm/utils/i18n.py
author gibus
Fri, 11 May 2012 13:10:19 +0200
changeset 422 37cd1c72115d
parent 0 40c8f766c9b8
permissions -rw-r--r--
Hides button if table of contents is empty.

from django.utils.translation.trans_real import translation

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