utils.py 298 Bytes

from django.utils.translation import ugettext as _


def trans(key):
    translations = {
        'wiki': _('Wiki'),
        'thread': _('Emails'),
        'changeset': _('Code'),
        'ticket': _('Tickets'),
        'attachment': _('Attachments'),
    }

    return translations.get(key, key)