summaryrefslogtreecommitdiffstats
path: root/autopart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-07-02 19:05:21 +0000
committerJeremy Katz <katzj@redhat.com>2007-07-02 19:05:21 +0000
commit364ff49c54df8d6a03d6fbee9c656d0062caaea4 (patch)
tree574ba486b153b3c787e06549ab6834e95c233be1 /autopart.py
parent164ed6fae2eab24b0ec3fafbdcfb2ee789994de8 (diff)
downloadanaconda-364ff49c54df8d6a03d6fbee9c656d0062caaea4.tar.gz
anaconda-364ff49c54df8d6a03d6fbee9c656d0062caaea4.tar.xz
anaconda-364ff49c54df8d6a03d6fbee9c656d0062caaea4.zip
2007-07-02 Jeremy Katz <katzj@redhat.com>
* autopart.py: Change references of "Reboot" -> "Exit installer" to make more sense in live install case. * exception.py: Likewise. * fsset.py: Likewise. * gui.py: Likewise. * harddrive.py: Likewise. * image.py: Likewise. * packages.py: Likewise. * upgrade.py: Likewise. * urlinstall: Likewise. * yuminstall.py: Likewise. * livecd.py (LiveCDCopyBackend.doRepoSetup): Add mnemonics
Diffstat (limited to 'autopart.py')
-rw-r--r--autopart.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/autopart.py b/autopart.py
index 5d5cb0137..3edc2befb 100644
--- a/autopart.py
+++ b/autopart.py
@@ -1259,7 +1259,7 @@ def doAutoPartition(anaconda):
anaconda.intf.messageWindow(_("Requested Partition Does Not Exist"),
_("Unable to locate partition %s to use "
"for %s.\n\n"
- "Press 'OK' to reboot your system.")
+ "Press 'OK' to exit the installer.")
% (request.device, request.mountpoint),
custom_icon='error')
sys.exit(0)
@@ -1287,7 +1287,7 @@ def doAutoPartition(anaconda):
anaconda.intf.messageWindow(_("Requested Raid Device Does Not Exist"),
_("Unable to locate raid device %s to use "
"for %s.\n\n"
- "Press 'OK' to reboot your system.")
+ "Press 'OK' to exit the installer.")
% (request.device,
request.mountpoint),
custom_icon='error')
@@ -1319,7 +1319,7 @@ def doAutoPartition(anaconda):
anaconda.intf.messageWindow(_("Requested Volume Group Does Not Exist"),
_("Unable to locate volume group %s to use "
"for %s.\n\n"
- "Press 'OK' to reboot your system.")
+ "Press 'OK' to exit the installer.")
% (request.volumeGroupName,
request.mountpoint),
custom_icon='error')
@@ -1357,7 +1357,7 @@ def doAutoPartition(anaconda):
anaconda.intf.messageWindow(_("Requested Logical Volume Does Not Exist"),
_("Unable to locate logical volume %s to use "
"for %s.\n\n"
- "Press 'OK' to reboot your system.")
+ "Press 'OK' to exit the installer.")
% (request.logicalVolumeName,
request.mountpoint),
custom_icon='error')
@@ -1484,7 +1484,7 @@ def doAutoPartition(anaconda):
anaconda.intf.messageWindow(_("Automatic Partitioning Errors"),
_("The following errors occurred with your "
"partitioning:\n\n%s\n\n"
- "Press 'OK' to reboot your system.") %
+ "Press 'OK' to exit the installer.") %
(errors,), custom_icon='error')
sys.exit(0)
@@ -1507,7 +1507,7 @@ def doAutoPartition(anaconda):
extra = ""
anaconda.dispatch.skipStep("partition", skip = 0)
else:
- extra = _("\n\nPress 'OK' to reboot your system.")
+ extra = _("\n\nPress 'OK' to exit the installer.")
anaconda.intf.messageWindow(_("Error Partitioning"),
_("Could not allocate requested partitions: \n\n"
"%s.%s") % (msg.value, extra), custom_icon='error')
@@ -1524,7 +1524,7 @@ def doAutoPartition(anaconda):
if errors:
errortxt = string.join(errors, '\n')
if anaconda.isKickstart:
- extra = _("\n\nPress 'OK' to reboot your system.")
+ extra = _("\n\nPress 'OK' to exit the installer.")
else:
extra = _("\n\nPress 'OK' to choose a different partitioning option.")