summaryrefslogtreecommitdiffstats
path: root/iw/pixmapRadioButtonGroup_gui.py
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2003-12-16 16:51:01 +0000
committerBill Nottingham <notting@redhat.com>2003-12-16 16:51:01 +0000
commit521dbe80148a5e5301c8494592032c475c9be2e0 (patch)
tree673e4369f7b841a861efd97a14d6982b173c9098 /iw/pixmapRadioButtonGroup_gui.py
parent7ca8fa80202cdc514659eac64a51fafaf66dbbbe (diff)
downloadanaconda-521dbe80148a5e5301c8494592032c475c9be2e0.tar.gz
anaconda-521dbe80148a5e5301c8494592032c475c9be2e0.tar.xz
anaconda-521dbe80148a5e5301c8494592032c475c9be2e0.zip
remove some Red Hat-isms
Diffstat (limited to 'iw/pixmapRadioButtonGroup_gui.py')
-rw-r--r--iw/pixmapRadioButtonGroup_gui.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/iw/pixmapRadioButtonGroup_gui.py b/iw/pixmapRadioButtonGroup_gui.py
index e7fe23205..cbd8797a8 100644
--- a/iw/pixmapRadioButtonGroup_gui.py
+++ b/iw/pixmapRadioButtonGroup_gui.py
@@ -14,7 +14,7 @@
import gtk
from rhpl.translate import _, N_
-
+from constants import *
class pixmapRadioButtonGroup:
@@ -194,7 +194,7 @@ if __name__ == "__main__":
else:
opts = ['Red Hat 8.0 - /dev/hda1']
- label = _("The following Red Hat product will be upgraded:")
+ label = _("The following installed system will be upgraded:")
upgradeoption = gtk.OptionMenu()
upgradeoptionmenu = gtk.Menu()
for lev in opts:
@@ -221,9 +221,9 @@ if __name__ == "__main__":
upbox.pack_start(upboxtmp, gtk.TRUE, gtk.TRUE)
r = pixmapRadioButtonGroup()
- r.addEntry("upgrade", "_Upgrade Existing Installation", pixmap=readPixmap("/usr/share/anaconda/pixmaps/upgrade.png"), descr="Choose this option if you would like to upgrade your existing Red Hat Linux system. This option will preserve the data on your driver.", userdata="data")
+ r.addEntry("upgrade", "_Upgrade Existing Installation", pixmap=readPixmap("/usr/share/anaconda/pixmaps/upgrade.png"), descr="Choose this option if you would like to upgrade your existing %s system. This option will preserve the data on your drive" % (productName,), userdata="data")
- r.addEntry("install", "_Reinstall Red Hat Linux", pixmap=readPixmap("../pixmaps/install.png"),
+ r.addEntry("install", "_Reinstall %s" %(productName,), pixmap=readPixmap("../pixmaps/install.png"),
descr="Choose this option to reinstall your system. Depending on how you partition your system your previous data may or may not be lost.", userdata="data2")
b = r.render()
r.setCurrent("Don't Upgrade")