summaryrefslogtreecommitdiffstats
path: root/image.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 /image.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 'image.py')
-rw-r--r--image.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/image.py b/image.py
index c626d6080..4b0af7a7b 100644
--- a/image.py
+++ b/image.py
@@ -87,7 +87,7 @@ def presentRequiredMediaMessage(anaconda):
"%s\nPlease "
"have these ready before proceeding with "
"the installation. If you need to abort "
- "the installation and reboot please "
+ "the installation and exit please "
"select \"Reboot\".") % (reqcdstr,),
type="custom", custom_icon="warning",
custom_buttons=[_("_Reboot"), _("_Back"), _("_Continue")])
@@ -147,7 +147,7 @@ class CdromInstallMethod(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
def systemUnmounted(self):
@@ -369,7 +369,7 @@ class NfsInstallMethod(ImageInstallMethod):
return _("The file %s cannot be opened. This is due to a missing "
"file or perhaps a corrupt package. Please verify your "
"installation tree contains all required packages.\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
def __init__(self, method, rootPath, intf):
@@ -444,12 +444,12 @@ def findIsoImages(path, messageWindow):
"a multiple of 2048 bytes. This may mean "
"it was corrupted on transfer to this computer."
"\n\n"
- "It is recommended that you reboot and abort your "
+ "It is recommended that you exit and abort your "
"installation, but you can choose to continue if "
"you think this is in error.") % (file,),
type="custom",
custom_icon="warning",
- custom_buttons= [_("_Reboot"),
+ custom_buttons= [_("_Exit installer"),
_("_Continue")])
if rc == 0:
sys.exit(0)
@@ -484,7 +484,7 @@ class NfsIsoInstallMethod(NfsInstallMethod):
"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
def umountImage(self):
@@ -519,12 +519,12 @@ class NfsIsoInstallMethod(NfsInstallMethod):
"the server.\n\n"
"Please copy this image to the "
"remote server's share path and "
- "click Retry. Click Reboot to "
+ "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: