diff options
-rw-r--r-- | iw/timezone_gui.py | 4 | ||||
-rw-r--r-- | po/Makefile | 2 | ||||
-rwxr-xr-x | scripts/upd-instroot | 3 | ||||
-rw-r--r-- | textw/timezone_text.py | 4 |
4 files changed, 9 insertions, 4 deletions
diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py index 562444b3c..4b64d192c 100644 --- a/iw/timezone_gui.py +++ b/iw/timezone_gui.py @@ -17,7 +17,9 @@ import gtk import gobject from timezone_map_gui import TimezoneMap, ZoneTab from iw_gui import * -from rhpl.translate import _ +from rhpl.translate import _, textdomain + +textdomain("redhat-config-date") class TimezoneWindow(InstallWindow): def __init__(self, ics): diff --git a/po/Makefile b/po/Makefile index eaad038f4..9d439712c 100644 --- a/po/Makefile +++ b/po/Makefile @@ -88,6 +88,6 @@ missing-mixed: done %.mo: %.po - msgcat --use-first $< timeconfig/$< | msgfmt --check -o $@ - + msgfmt --check -o $@ $< depend: diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 087ae7872..e5c9d050b 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -156,7 +156,7 @@ PACKAGESGR="anaconda XFree86-libs libpng XFree86-75dpi-fonts redhat-config-keyboard Xft fontconfig redhat-artwork ttfonts-ja ttfonts-zh_TW bitmap-fonts-cjk urw-fonts comps-extras XFree86-libs-data convertdb1 - vnc-server libjpeg tcp_wrappers" + vnc-server libjpeg tcp_wrappers redhat-config-date" # # stuff ONLY included for rescue mode @@ -620,6 +620,7 @@ usr/share/fonts/ko/TrueType/dotum.ttf usr/share/fonts/ja/TrueType/kochi-gothic-subst.ttf usr/share/fonts/zh_TW/TrueType/bsmi00lp.ttf usr/share/locale/*/LC_MESSAGES/anaconda.mo +usr/share/locale/*/LC_MESSAGES/redhat-config-date.mo usr/share/locale/*/LC_MESSAGES/redhat-dist.mo usr/share/locale/*/LC_MESSAGES/redhat-config-keyboard.mo usr/share/locale/*/LC_MESSAGES/gtk20.mo diff --git a/textw/timezone_text.py b/textw/timezone_text.py index 57f8d5e57..0c0bb0b7a 100644 --- a/textw/timezone_text.py +++ b/textw/timezone_text.py @@ -17,7 +17,9 @@ import os from time import * from snack import * from constants_text import * -from rhpl.translate import _ +from rhpl.translate import _, textdomain + +textdomain("redhat-config-date") class TimezoneWindow: |