summaryrefslogtreecommitdiffstats
path: root/textw/partition_text.py
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 /textw/partition_text.py
parent5687be533c9d41ca38413482ebc288bcff1db506 (diff)
downloadanaconda-199aa4396022727508817d8f7ab244deaead1ca5.tar.gz
anaconda-199aa4396022727508817d8f7ab244deaead1ca5.tar.xz
anaconda-199aa4396022727508817d8f7ab244deaead1ca5.zip
String fixes (#203346).
Diffstat (limited to 'textw/partition_text.py')
-rw-r--r--textw/partition_text.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py
index e6f4a46fe..c5e8b35be 100644
--- a/textw/partition_text.py
+++ b/textw/partition_text.py
@@ -1538,10 +1538,10 @@ class PartitionTypeWindow:
"to use this or create your own."))
g.add(txt, 0, 0, (0, 0, 0, 0))
- 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))
typebox = Listbox(height = len(opts), scroll = 0)
for (txt, val) in opts:
typebox.append(txt, val)