summaryrefslogtreecommitdiffstats
path: root/harddrive.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 /harddrive.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 'harddrive.py')
-rw-r--r--harddrive.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/harddrive.py b/harddrive.py
index 2be5c9e85..0562afded 100644
--- a/harddrive.py
+++ b/harddrive.py
@@ -45,7 +45,7 @@ class HardDriveInstallMethod(ImageInstallMethod):
"file or perhaps a corrupt package. Please verify your "
"installation images and that you have all the required "
"media.\n\n"
- "If you reboot, your system will be left in an inconsistent "
+ "If you exit, your system will be left in an inconsistent "
"state that will likely require reinstallation.\n\n") % pkgname
# mounts disc image cdNum under self.tree
@@ -73,12 +73,12 @@ class HardDriveInstallMethod(ImageInstallMethod):
"image #%s, but cannot find it on "
"the hard drive.\n\n"
"Please copy this image to the "
- "drive and click Retry. Click Reboot "
+ "drive and click Retry. Click Exit "
" to abort the installation.")
% (cdNum,), type="custom",
custom_icon="warning",
- custom_buttons=[_("_Reboot"),
- _("Re_try")])
+ custom_buttons=[_("_Exit"),
+ _("_Retry")])
if ans == 0:
sys.exit(0)
elif ans == 1:
@@ -119,11 +119,11 @@ class HardDriveInstallMethod(ImageInstallMethod):
"device %s. This may happen if your ISO "
"images are located on an advanced storage "
"device like LVM or RAID, or if there was a "
- "problem mounting a partition. Click reboot "
+ "problem mounting a partition. Click exit "
"to abort the installation.")
% (self.device,), type="custom",
custom_icon="error",
- custom_buttons=[_("_Reboot")])
+ custom_buttons=[_("_Exit")])
sys.exit(0)