diff options
author | Matt Wilson <msw@redhat.com> | 2000-08-17 18:20:18 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-08-17 18:20:18 +0000 |
commit | 3f242ad3ead1b6709a63bec4e7ad3c0978f42e27 (patch) | |
tree | b53335c86c6aca8d4fa1e0f4357296ae76f4b5ee | |
parent | 43d47998ef1ba50cc52362cce5fb880011fa80e5 (diff) | |
download | anaconda-3f242ad3ead1b6709a63bec4e7ad3c0978f42e27.tar.gz anaconda-3f242ad3ead1b6709a63bec4e7ad3c0978f42e27.tar.xz anaconda-3f242ad3ead1b6709a63bec4e7ad3c0978f42e27.zip |
i18n timezones
-rw-r--r-- | textw/timezone_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/timezone_text.py b/textw/timezone_text.py index 8b74b37f5..3c8e07e21 100644 --- a/textw/timezone_text.py +++ b/textw/timezone_text.py @@ -78,7 +78,7 @@ class TimezoneWindow: self.l = Listbox(5, scroll = 1, returnExit = 0) for tz in timezones: - self.l.append(tz, tz) + self.l.append(_(tz), tz) self.l.setCurrent(default) # self.l.setCallback(self.updateClock) |