summaryrefslogtreecommitdiffstats
path: root/iw
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2003-01-15 20:05:26 +0000
committerMatt Wilson <msw@redhat.com>2003-01-15 20:05:26 +0000
commit6ddf21238ea6d52c0d7ad7d7f6ddd04679c74d6b (patch)
treeb314eb01429f74f827846377dbc2d37ba0d7a14f /iw
parent82ce532141a5e780b8148b7cb3d367093b4c8d8f (diff)
downloadanaconda-6ddf21238ea6d52c0d7ad7d7f6ddd04679c74d6b.tar.gz
anaconda-6ddf21238ea6d52c0d7ad7d7f6ddd04679c74d6b.tar.xz
anaconda-6ddf21238ea6d52c0d7ad7d7f6ddd04679c74d6b.zip
change the wording slightly
Diffstat (limited to 'iw')
-rw-r--r--iw/examine_gui.py24
1 files changed, 14 insertions, 10 deletions
diff --git a/iw/examine_gui.py b/iw/examine_gui.py
index 09faa7171..e3d2a1e28 100644
--- a/iw/examine_gui.py
+++ b/iw/examine_gui.py
@@ -55,18 +55,22 @@ class UpgradeExamineWindow (InstallWindow):
def createUpgradeOption(self):
r = pixmapRadioButtonGroup()
- r.addEntry(UPGRADE_STR, N_("Upgrade an existing installation"),
+ r.addEntry(UPGRADE_STR,
+ N_("Perform an upgrade of an existing installation"),
pixmap=self.ics.readPixmap("upgrade.png"),
- descr=_("Choose this option if you would like to upgrade your "
- "existing Red Hat Linux system. This option will preserve the "
- "existing data on your drives."))
-
- r.addEntry(REINSTALL_STR, N_("Perform a fresh install of %s") % (productName,),
+ descr=_("Choose this option if you would like "
+ "to upgrade your existing %s system. "
+ "This option will preserve the "
+ "existing data on your drives.") %(productName,))
+
+ r.addEntry(REINSTALL_STR,
+ N_("Perform a new %s installation") %(productName,),
pixmap=self.ics.readPixmap("install.png"),
- descr=_("Choose this option to install your system from scratch. "
- "Depending on how you choose to partition your system the existing data "
- "on your drives may or may not be preserved."))
-
+ descr=_("Choose this option to install your system "
+ "from scratch. Depending on how you choose "
+ "to partition your system the existing data "
+ "on your drives may or may not be preserved."))
+
return r
def upgradeOptionsSetSensitivity(self, state):