diff options
author | Jeremy Katz <katzj@redhat.com> | 2007-01-18 18:30:02 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2007-01-18 18:30:02 +0000 |
commit | 7b19dce59cb66278f5c7b245eb210303a23ccaf3 (patch) | |
tree | 157687df0e5f294f211aa4975d8cf17bf73e36b8 /image.py | |
parent | 4a7d5899d75bb5c59216af8e963534e48c932c77 (diff) | |
download | anaconda-7b19dce59cb66278f5c7b245eb210303a23ccaf3.tar.gz anaconda-7b19dce59cb66278f5c7b245eb210303a23ccaf3.tar.xz anaconda-7b19dce59cb66278f5c7b245eb210303a23ccaf3.zip |
2007-01-18 Jeremy Katz <katzj@redhat.com>
* image.py (findIsoImages): Translate the string
Diffstat (limited to 'image.py')
-rw-r--r-- | image.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -433,13 +433,13 @@ def findIsoImages(path, messageWindow): # warn user if images appears to be wrong size if os.stat(what)[stat.ST_SIZE] % 2048: rc = messageWindow(_("Warning"), - "The ISO image %s has a size which is not " + _("The ISO image %s has a size which is not " "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 " "installation, but you can choose to continue if " - "you think this is in error." % (file,), + "you think this is in error.") % (file,), type="custom", custom_icon="warning", custom_buttons= [_("_Reboot"), |