summaryrefslogtreecommitdiffstats
path: root/iw/upgrade_migratefs_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-04-19 07:12:20 +0000
committerJeremy Katz <katzj@redhat.com>2002-04-19 07:12:20 +0000
commite012322dabe150cb08c785777f6e3c1333faa081 (patch)
tree42217c8f781fe531c3400da2489051176dd84c66 /iw/upgrade_migratefs_gui.py
parent25aa4e721dd42943ec415cea8701a58f409cb018 (diff)
downloadanaconda-e012322dabe150cb08c785777f6e3c1333faa081.tar.gz
anaconda-e012322dabe150cb08c785777f6e3c1333faa081.tar.xz
anaconda-e012322dabe150cb08c785777f6e3c1333faa081.zip
more merging
Diffstat (limited to 'iw/upgrade_migratefs_gui.py')
-rw-r--r--iw/upgrade_migratefs_gui.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/iw/upgrade_migratefs_gui.py b/iw/upgrade_migratefs_gui.py
index 6b0ade28b..37635dd2e 100644
--- a/iw/upgrade_migratefs_gui.py
+++ b/iw/upgrade_migratefs_gui.py
@@ -15,6 +15,7 @@
from iw_gui import *
from translate import _, N_
+from constants import *
import string
import isys
import iutil
@@ -50,12 +51,13 @@ class UpgradeMigrateFSWindow (InstallWindow):
box = gtk.VBox (gtk.FALSE, 5)
box.set_border_width (5)
- text = N_("This release of Red Hat Linux supports "
+ text = N_("This release of %s supports "
"the ext3 journalling filesystem. It has several "
"benefits over the ext2 filesystem traditionally shipped "
- "in Red Hat Linux. It is possible to migrate the ext2 "
+ "in %s. It is possible to migrate the ext2 "
"formatted partitions to ext3 without data loss.\n\n"
- "Which of these partitions would you like to migrate?")
+ "Which of these partitions would you like to migrate?" %
+ (productName, productName))
label = gtk.Label (_(text))
label.set_alignment (0.5, 0.0)