summaryrefslogtreecommitdiffstats
path: root/image.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2007-01-18 18:30:02 +0000
committerJeremy Katz <katzj@redhat.com>2007-01-18 18:30:02 +0000
commit7b19dce59cb66278f5c7b245eb210303a23ccaf3 (patch)
tree157687df0e5f294f211aa4975d8cf17bf73e36b8 /image.py
parent4a7d5899d75bb5c59216af8e963534e48c932c77 (diff)
downloadanaconda-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.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/image.py b/image.py
index 743237eb9..dd284ef8b 100644
--- a/image.py
+++ b/image.py
@@ -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"),