Moving more modules
[apertium.git] / trunk / apertium-tools / apertium-tolk / i18n.py
blob11575086163f214a56d41812a3b11b59777158bf
1 import gettext
2 import gtk.glade
4 APP='simple-view'
5 DIR='po'
7 gettext.bindtextdomain(APP, DIR)
8 gettext.textdomain(APP)
9 gtk.glade.bindtextdomain(APP, DIR)
10 gtk.glade.textdomain(APP)
12 _ = gettext.gettext # the i18n function :)