diff options
author | Jeremy Katz <katzj@redhat.com> | 2004-06-03 22:57:46 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2004-06-03 22:57:46 +0000 |
commit | 378689c9349245ec7a0d15a152b2175e9ad6a404 (patch) | |
tree | 3c61ab431ce0852e373525cdc9762cd62344304c /image.py | |
parent | 1788fd827798abf0ea116828f208b17008b6a94d (diff) | |
download | anaconda-378689c9349245ec7a0d15a152b2175e9ad6a404.tar.gz anaconda-378689c9349245ec7a0d15a152b2175e9ad6a404.tar.xz anaconda-378689c9349245ec7a0d15a152b2175e9ad6a404.zip |
a little bit more clarity when prompting for CDs
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -281,7 +281,8 @@ class CdromInstallMethod(ImageInstallMethod): while not done: self.messageWindow(_("Change CDROM"), - _("Please insert disc %d to continue.") % needed) + _("Please insert %s disc %d to continue.") % (productName, + needed)) try: if isys.mount(self.device, "/mnt/source", @@ -323,7 +324,7 @@ class CdromInstallMethod(ImageInstallMethod): isys.ejectCdrom(self.device) except: self.messageWindow(_("Error"), - _("The CDROM could not be mounted.")) + _("Unable to access the CDROM.")) timer.start() @@ -520,7 +521,10 @@ class NfsIsoInstallMethod(NfsInstallMethod): missing_string += "\t\t\tCD #%d\n" % (missing,) self.messageWindow(_("Error"), - _("The following ISO images are missing which are required for the install:\n\n%s\nThe system will now reboot.") % missing_string) + _("The following ISO images are missing which " + "are required for the install:\n\n%s\n" + "The system will now reboot.") % + (missing_string,)) sys.exit(0) return hl |