summaryrefslogtreecommitdiffstats
path: root/translate.py
blob: 917ababd4fa5aebe9a39e27febda6fb66b73c715 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import gettext_rh

class i18n:
    def __init__(self):
        self.cat = gettext_rh.Catalog ("anaconda", "/usr/share/locale")
        
    def setlangs(self, langs):
        gettext_rh.setlangs (langs)
        self.cat = gettext_rh.Catalog ("anaconda", "/usr/share/locale")

    def gettext(self, string):
        return self.cat.gettext(string)

cat = i18n()
_ = cat.gettext