summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Fulbright <msf@redhat.com>2001-07-09 14:32:46 +0000
committerMike Fulbright <msf@redhat.com>2001-07-09 14:32:46 +0000
commite74cdd5e1f47ac91d363f87613450a75a04e7bd8 (patch)
tree1796e5a190e5e49d9dcc20c6622837a4ee762734
parent887a2e9e2a456e3b3bbed3170bbc1bb7814e7d28 (diff)
downloadanaconda-e74cdd5e1f47ac91d363f87613450a75a04e7bd8.tar.gz
anaconda-e74cdd5e1f47ac91d363f87613450a75a04e7bd8.tar.xz
anaconda-e74cdd5e1f47ac91d363f87613450a75a04e7bd8.zip
always use automatically partition, not autopartiting, when talking to user
-rw-r--r--iw/partition_gui.py7
-rw-r--r--iw/partmethod_gui.py2
2 files changed, 5 insertions, 4 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py
index 35878a13f..8924d66db 100644
--- a/iw/partition_gui.py
+++ b/iw/partition_gui.py
@@ -1369,7 +1369,7 @@ class AutoPartitionWindow(InstallWindow):
# what partition types to remove
clearbox = GtkVBox(FALSE)
- label = GtkLabel(_("I want to have autopartitioning:"))
+ label = GtkLabel(_("I want to have automatic partitioning:"))
label.set_alignment(0.0, 0.0)
clearbox.pack_start(label, FALSE, FALSE, 10)
@@ -1417,8 +1417,9 @@ class AutoPartitionWindow(InstallWindow):
box.pack_start(drivesbox, FALSE, FALSE)
- self.inspect = GtkCheckButton(_("Allow me to inspect and modify "
- "autopartitioning results"))
+ self.inspect = GtkCheckButton(_("Review (allows you to see and "
+ "change the automatic partitioning "
+ "results"))
self.inspect.set_active(not dispatch.stepInSkipList("partition"))
diff --git a/iw/partmethod_gui.py b/iw/partmethod_gui.py
index 8ce55521c..f89d4ee33 100644
--- a/iw/partmethod_gui.py
+++ b/iw/partmethod_gui.py
@@ -68,7 +68,7 @@ class PartitionMethodWindow(InstallWindow):
radioBox = GtkVBox (FALSE)
self.useAuto = GtkRadioButton(
- None, _("Have the installer autopartition for you"))
+ None, _("Have the installer automatically partition for you"))
radioBox.pack_start(self.useAuto, FALSE, FALSE)
self.useDS = GtkRadioButton(
self.useAuto, _("Manually partition with Disk Druid"))