diff options
author | Matt Wilson <msw@redhat.com> | 1999-08-26 18:44:35 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-08-26 18:44:35 +0000 |
commit | d2fb657ae4aeeaf3ab070b594371742d810829c3 (patch) | |
tree | 8eb4b406fbf81def6a5aeed771143956febde417 /iw/format.py | |
parent | 82ba493137e9cb80c484291a5595e7d47bc67058 (diff) | |
download | anaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.tar.gz anaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.tar.xz anaconda-d2fb657ae4aeeaf3ab070b594371742d810829c3.zip |
i18n
Diffstat (limited to 'iw/format.py')
-rw-r--r-- | iw/format.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/iw/format.py b/iw/format.py index e1945404f..096743747 100644 --- a/iw/format.py +++ b/iw/format.py @@ -2,9 +2,10 @@ from gtk import * from iw import * from thread import * import isys +import gettext -def _(x): - return x +cat = gettext.Catalog ("anaconda", "/usr/share/locale") +_ = cat.gettext class FormatWindow (InstallWindow): def __init__ (self, ics): |