summaryrefslogtreecommitdiffstats
path: root/iw/language_gui.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-02-19 14:43:35 -0500
committerChris Lumens <clumens@redhat.com>2008-02-19 14:43:35 -0500
commit4bcb7e70220c7edabbe9f96079a22f57a97a4e26 (patch)
tree0f84a54ad0d52b3227ba63138c795e344a83d857 /iw/language_gui.py
parent84adcbdf44f55558d74609853d3851a611f33dae (diff)
downloadanaconda-4bcb7e70220c7edabbe9f96079a22f57a97a4e26.tar.gz
anaconda-4bcb7e70220c7edabbe9f96079a22f57a97a4e26.tar.xz
anaconda-4bcb7e70220c7edabbe9f96079a22f57a97a4e26.zip
When the language is changed, default to the correct timezone (#432158).
Diffstat (limited to 'iw/language_gui.py')
-rw-r--r--iw/language_gui.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/iw/language_gui.py b/iw/language_gui.py
index bcafe4eee..36e79fd8b 100644
--- a/iw/language_gui.py
+++ b/iw/language_gui.py
@@ -33,6 +33,8 @@ class LanguageWindow (InstallWindow):
InstallWindow.__init__ (self, ics)
def getNext (self):
+ anaconda = self.ics.getICW().anaconda
+
(model, iter) = self.listView.get_selection().get_selected()
assert iter, "No selection found on language list!"
choice = self.listStore.get_value(iter, 1)
@@ -43,6 +45,7 @@ class LanguageWindow (InstallWindow):
self.instLang.setRuntimeLanguage(self.lang)
self.instLang.setDefault(self.lang)
+ anaconda.id.timezone.setTimezoneInfo(anaconda.id.instLanguage.getDefaultTimeZone())
self.ics.getICW().setLanguage()
return None
@@ -52,7 +55,7 @@ class LanguageWindow (InstallWindow):
(model, iter) = self.listView.get_selection().get_selected()
if iter is None:
return
-
+
path = self.listStore.get_path(iter)
col = self.listView.get_column(0)
self.listView.scroll_to_cell(path, col, True, 0.5, 0.5)
@@ -69,13 +72,13 @@ class LanguageWindow (InstallWindow):
a = gtk.Alignment ()
a.add (pix)
hbox.pack_start (a, False)
-
+
label = gtk.Label (_("What language would you like to use during the "
"installation process?"))
label.set_line_wrap (True)
label.set_size_request(350, -1)
hbox.pack_start(label, False)
-
+
self.instLang = anaconda.id.instLanguage
self.listStore = gtk.ListStore(gobject.TYPE_STRING,
@@ -122,5 +125,5 @@ class LanguageWindow (InstallWindow):
mainBox.pack_start (sw, True, True)
self.running = 1
-
+
return mainBox