summaryrefslogtreecommitdiffstats
path: root/textw/upgrade_text.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-04-19 06:28:35 +0000
committerJeremy Katz <katzj@redhat.com>2002-04-19 06:28:35 +0000
commit8e7a9bc91b98a02e41dd6d53e8a2027c482346a8 (patch)
tree1c94bb1caace167e96375666ad0cc9467e83d471 /textw/upgrade_text.py
parent34e94e67312be97452e79939ae7104afae3c041b (diff)
downloadanaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.tar.gz
anaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.tar.xz
anaconda-8e7a9bc91b98a02e41dd6d53e8a2027c482346a8.zip
more merging fun from the hampton branch. I'm pretty sure this doesn't
work now, at least in gui. text mode might, though
Diffstat (limited to 'textw/upgrade_text.py')
-rw-r--r--textw/upgrade_text.py12
1 files changed, 7 insertions, 5 deletions
diff --git a/textw/upgrade_text.py b/textw/upgrade_text.py
index 407684fda..a33bfd827 100644
--- a/textw/upgrade_text.py
+++ b/textw/upgrade_text.py
@@ -21,6 +21,7 @@ from fsset import *
from log import log
from flags import flags
from translate import _
+from constants import *
class UpgradeMigrateFSWindow:
def __call__ (self, screen, thefsset):
@@ -29,12 +30,13 @@ class UpgradeMigrateFSWindow:
g = GridFormHelp(screen, _("Migrate Filesystems"), "upmigfs", 1, 4)
- text = _("This release of Red Hat Linux supports "
+ text = _("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))
tb = TextboxReflowed(60, text)
g.add(tb, 0, 0, anchorLeft = 1, padding = (0, 0, 0, 1))
@@ -220,9 +222,9 @@ class UpgradeExamineWindow:
(drive, fs) = root
rc = ButtonChoiceWindow (screen, _("Upgrade Partition"),
- _("Upgrading the Red Hat Linux "
+ _("Upgrading the %s "
"installation on partition "
- "/dev/%s") % (drive,),
+ "/dev/%s") % (productName, drive,),
buttons = [ TEXT_OK_BUTTON,
TEXT_BACK_BUTTON ])
if rc == TEXT_BACK_CHECK: