summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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"))