summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xgui.py2
-rw-r--r--packages.py6
2 files changed, 4 insertions, 4 deletions
diff --git a/gui.py b/gui.py
index 5ec560329..43418a6b0 100755
--- a/gui.py
+++ b/gui.py
@@ -1398,7 +1398,7 @@ class InstallControlWindow:
def _doExitConfirm (self, win = None, *args):
# FIXME: translate the string
win = MessageWindow(_("Exit installer"),
- ("Are you sure you wish to exit the installation?"),
+ _("Are you sure you wish to exit the installation?"),
type="custom", custom_icon="question",
custom_buttons = [_("Cancel"), _("_Exit installer")],
parent = win)
diff --git a/packages.py b/packages.py
index 55891f923..c4b22fcd3 100644
--- a/packages.py
+++ b/packages.py
@@ -144,9 +144,9 @@ def turnOnFilesystems(anaconda):
details = open("/tmp/resize.out", "r").read()
else:
details = "%s" %(e,)
- anaconda.intf.detailedMessageWindow("Resizing Failed",
- "There was an error encountered "
- "resizing the device %s." %(dev,),
+ anaconda.intf.detailedMessageWindow(_("Resizing Failed"),
+ _("There was an error encountered "
+ "resizing the device %s.") %(dev,),
details,
type = "custom",
custom_buttons = [_("_Exit installer")])