summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2001-03-28 05:55:04 +0000
committerMatt Wilson <msw@redhat.com>2001-03-28 05:55:04 +0000
commit33fb617f613dddda91b30545559f131c5c765f86 (patch)
tree32394dfe7a2472d77aee132eaec0dfcc7deeed8d /iw
parentab9c0eba39c1c0a4a62e05942ffc8e9dd10408d8 (diff)
downloadanaconda-33fb617f613dddda91b30545559f131c5c765f86.tar.gz
anaconda-33fb617f613dddda91b30545559f131c5c765f86.tar.xz
anaconda-33fb617f613dddda91b30545559f131c5c765f86.zip
properly i18n (#33468)
Diffstat (limited to 'iw')
-rw-r--r--iw/examine_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/iw/examine_gui.py b/iw/examine_gui.py
index 5892aa5d2..d2db449ac 100644
--- a/iw/examine_gui.py
+++ b/iw/examine_gui.py
@@ -78,7 +78,7 @@ class UpgradeExamineWindow (InstallWindow):
# if there is only one partition, go on.
self.ics.setNextEnabled (TRUE)
self.root = self.parts[0]
- label = GtkLabel (_("Upgrading the Red Hat Linux installation on partition /dev/") + self.root[0] + "\n\n")
+ label = GtkLabel (_("Upgrading the Red Hat Linux installation on partition /dev/%s"), (self.root[0] + "\n\n",))
label.set_alignment(0.0, 0.5)
vbox.pack_start(label, FALSE)