summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2008-12-01 15:21:38 -0500
committerJeremy Katz <katzj@redhat.com>2008-12-01 16:25:03 -0500
commitaadef79bf0349cebad99e6157110ab4a754a4bdf (patch)
tree832558eaa8e627a5cf4f53ff09b1ba116768ad66 /iw
parent1b16420aa7199b7848c198820beef009c0838974 (diff)
downloadanaconda-aadef79bf0349cebad99e6157110ab4a754a4bdf.tar.gz
anaconda-aadef79bf0349cebad99e6157110ab4a754a4bdf.tar.xz
anaconda-aadef79bf0349cebad99e6157110ab4a754a4bdf.zip
Make text for autopartitioning types clearer (#441350)
We used "default" a lot in the text. Change based on notting's suggestion and make the intro text a little clearer to match
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 33efa5f97..f166eabe8 100644
--- a/iw/autopart_type.py
+++ b/iw/autopart_type.py
@@ -415,10 +415,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),
- (_("Resize existing partition and create default layout in free space"), -2),
- (_("Use free space on selected drives and create default layout"), CLEARPART_TYPE_NONE),
+ opts = ((_("Use entire drive"), CLEARPART_TYPE_ALL),
+ (_("Replace existing Linux system"), CLEARPART_TYPE_LINUX),
+ (_("Shrink current system"), -2),
+ (_("Use free space"), CLEARPART_TYPE_NONE),
(_("Create custom layout"), -1))
for (txt, val) in opts:
iter = store.append(None)