view pyntnclick/i18n.py @ 781:5fb962434159 pyntnclick

Translate the title (thanks Dmitrijs Ledkovs)
author Stefano Rivera <stefano@rivera.za.net>
date Sat, 26 Jan 2013 18:54:34 +0200
parents 43b49f1de828
children 5ec7905b2365
line wrap: on
line source

# internationalization

from gettext import gettext


def _(s):
    return unicode(gettext(s), "utf-8")