summaryrefslogtreecommitdiffstats
path: root/exception.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 /exception.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 'exception.py')
-rw-r--r--exception.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/exception.py b/exception.py
index 5cbc6e01c..1fbe15075 100644
--- a/exception.py
+++ b/exception.py
@@ -411,9 +411,9 @@ def handleException(anaconda, (type, value, tb)):
if floppyRc == 0:
anaconda.intf.messageWindow(_("Dump Written"),
_("Your system's state has been successfully written to "
- "the floppy. Your system will now be rebooted."),
+ "the floppy. The installer will now exit."),
type="custom", custom_icon="info",
- custom_buttons=[_("_Reboot")])
+ custom_buttons=[_("_Exit installer")])
sys.exit(0)
elif floppyRc == 1:
continue
@@ -428,9 +428,9 @@ def handleException(anaconda, (type, value, tb)):
if scpRc == 0:
anaconda.intf.messageWindow(_("Dump Written"),
_("Your system's state has been successfully written to "
- "the remote host. Your system will now be rebooted."),
+ "the remote host. The installer will now exit."),
type="custom", custom_icon="info",
- custom_buttons=[_("_Reboot")])
+ custom_buttons=[_("_Exit installer")])
sys.exit(0)
elif scpRc == 1:
continue