summaryrefslogtreecommitdiffstats
path: root/textw/constants.py
blob: 2b7c1c94f688f802c4b35a7567b94098ab4aa37d (plain)
1
2
3
4
5
6
7
8
9
10
import gettext

INSTALL_OK = 0
INSTALL_BACK = -1
INSTALL_NOOP = -2

cat = gettext.Catalog ("anaconda", "/usr/share/locale")
_ = cat.gettext

basicButtons = ((_("Ok"), "ok"), (_("Back"), "back"))