blob: a038aa3b3bf6c7a693066cac5e12da8c28765ced (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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)
def N_(str):
return str
cat = i18n()
_ = cat.gettext
|