summaryrefslogtreecommitdiffstats
path: root/packages.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2003-09-26 18:58:14 +0000
committerJeremy Katz <katzj@redhat.com>2003-09-26 18:58:14 +0000
commit0c793e0a3acdedffb18886ebc9613a87af4cb02b (patch)
tree6266c72022533d9b3a3fde1745db0ca96c3ab686 /packages.py
parentbd7ccc2e34f17e4b681d43ae5f0161633b9aec43 (diff)
downloadanaconda-0c793e0a3acdedffb18886ebc9613a87af4cb02b.tar.gz
anaconda-0c793e0a3acdedffb18886ebc9613a87af4cb02b.tar.xz
anaconda-0c793e0a3acdedffb18886ebc9613a87af4cb02b.zip
don't say beta or test release (#105585)
Diffstat (limited to 'packages.py')
-rw-r--r--packages.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/packages.py b/packages.py
index ea858c0f3..da0ec62a8 100644
--- a/packages.py
+++ b/packages.py
@@ -1326,14 +1326,13 @@ def betaNagScreen(intf, dir):
for (key, val) in publicBetas.items():
if productName.startswith(key):
fileagainst = val
-
if fileagainst is None:
fileagainst = "%s Beta" %(productName,)
while 1:
- rc = intf.messageWindow( _("Warning! This is a beta!"),
+ rc = intf.messageWindow( _("Warning! This is pre-release software!"),
_("Thank you for downloading this "
- "%s Beta release.\n\n"
+ "pre-release of %s.\n\n"
"This is not a final "
"release and is not intended for use "
"on production systems. The purpose of "
@@ -1345,7 +1344,7 @@ def betaNagScreen(intf, dir):
"and file a report against '%s'.\n"
%(productName, fileagainst)),
type="custom", custom_icon="warning",
- custom_buttons=[_("_Exit"), _("_Install BETA")])
+ custom_buttons=[_("_Exit"), _("_Install anyway")])
if not rc:
rc = intf.messageWindow( _("Rebooting System"),