comparison gamelib/i18n.py @ 479:4ea237bbcef8 1.0.1

Tidy up the i18n changes
author Stefano Rivera <stefano@rivera.za.net>
date Tue, 08 Mar 2011 13:25:20 +0200
parents a9925aaf5f61
children
comparison
equal deleted inserted replaced
478:a9925aaf5f61 479:4ea237bbcef8
1 # internationalization 1 # internationalization
2 2
3 from gettext import gettext 3 from gettext import gettext
4 4
5 def _(s): 5 def _(s):
6 return unicode(gettext(s), "utf-8") 6 return unicode(gettext(s), "utf-8")