summaryrefslogtreecommitdiffstats
path: root/iw/task_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2006-09-29 15:11:46 +0000
committerJeremy Katz <katzj@redhat.com>2006-09-29 15:11:46 +0000
commite196572faaa85c498fc676c597148f3d78a1a9c1 (patch)
tree59c1c596341958a692cfa1dac22471f1679ec7a7 /iw/task_gui.py
parentf67fabe9fe38cf62c7484a170b4049dae6f189c0 (diff)
downloadanaconda-e196572faaa85c498fc676c597148f3d78a1a9c1.tar.gz
anaconda-e196572faaa85c498fc676c597148f3d78a1a9c1.tar.xz
anaconda-e196572faaa85c498fc676c597148f3d78a1a9c1.zip
2006-09-29 Jeremy Katz <katzj@redhat.com>
* installclasses/fedora.py (InstallClass._get_description): Return the translated text as the description (#206620). * iw/task_gui.py (TaskWindow._createTaskStore): Fix translations to show up (#206620) * ui/tasksel.glade: Force width wider so that things fit better
Diffstat (limited to 'iw/task_gui.py')
-rw-r--r--iw/task_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/task_gui.py b/iw/task_gui.py
index dcb4474dc..28cbaf0a6 100644
--- a/iw/task_gui.py
+++ b/iw/task_gui.py
@@ -192,7 +192,7 @@ class TaskWindow(InstallWindow):
for (txt, grps) in self.tasks:
if not self.groupsExist(grps):
continue
- store.append([self.groupsInstalled(grps), txt, grps])
+ store.append([self.groupsInstalled(grps), _(txt), grps])
return len(store)