aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/fe/gtk/InstallFailed.py')
-rw-r--r--src/fe/gtk/InstallFailed.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fe/gtk/InstallFailed.py b/src/fe/gtk/InstallFailed.py
index 20be26b..be131cd 100644
--- a/src/fe/gtk/InstallFailed.py
+++ b/src/fe/gtk/InstallFailed.py
@@ -8,14 +8,14 @@ from GLIScreen import *
class Panel(GLIScreen):
- _helptext = """
+ _helptext = _("""
<b><u>Install Failed</u></b>
Your install has failed for one of numerous reasons. You can find the error in \
the logfile at /var/log/install.log.failed. Once you determine that the error was \
not caused by you, please file a bug at http://bugs.gentoo.org/ in the \
Gentoo Release Media product and the Installer component.
-"""
+""")
def __init__(self, controller):
GLIScreen.__init__(self, controller)
@@ -26,7 +26,7 @@ Gentoo Release Media product and the Installer component.
hbox = gtk.HBox(False, 0)
label = gtk.Label()
- label_markup = '<b>Your install has failed.</b>'
+ label_markup = _('<b>Your install has failed.</b>')
label.set_markup(label_markup)
label.set_line_wrap(True)
hbox.pack_start(label, expand=False, fill=False, padding=5)