summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2007-03-15 19:19:45 +0000
committerChris Lumens <clumens@redhat.com>2007-03-15 19:19:45 +0000
commit199aa4396022727508817d8f7ab244deaead1ca5 (patch)
tree0a686c0fa7ce1c211e20a613fe22e27e4e678a15 /iw
parent5687be533c9d41ca38413482ebc288bcff1db506 (diff)
downloadanaconda-199aa4396022727508817d8f7ab244deaead1ca5.tar.gz
anaconda-199aa4396022727508817d8f7ab244deaead1ca5.tar.xz
anaconda-199aa4396022727508817d8f7ab244deaead1ca5.zip
String fixes (#203346).
Diffstat (limited to 'iw')
-rw-r--r--iw/autopart_type.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/iw/autopart_type.py b/iw/autopart_type.py
index bf3a0e6d7..0ab49a0bb 100644
--- a/iw/autopart_type.py
+++ b/iw/autopart_type.py
@@ -256,10 +256,10 @@ class PartitionTypeWindow(InstallWindow):
store = gtk.TreeStore(gobject.TYPE_STRING, gobject.TYPE_INT)
self.combo.set_model(store)
- opts = ((_("Remove all partitions on selected drives and create default layout."), CLEARPART_TYPE_ALL),
- (_("Remove linux partitions on selected drives and create default layout."), CLEARPART_TYPE_LINUX),
- (_("Use free space on selected drives and create default layout."), CLEARPART_TYPE_NONE),
- (_("Create custom layout."), -1))
+ opts = ((_("Remove all partitions on selected drives and create default layout"), CLEARPART_TYPE_ALL),
+ (_("Remove Linux partitions on selected drives and create default layout"), CLEARPART_TYPE_LINUX),
+ (_("Use free space on selected drives and create default layout"), CLEARPART_TYPE_NONE),
+ (_("Create custom layout"), -1))
for (txt, val) in opts:
iter = store.append(None)
store[iter] = (txt, val)