summaryrefslogtreecommitdiffstats
path: root/iw/confirm_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/confirm_gui.py
parent25aa4e721dd42943ec415cea8701a58f409cb018 (diff)
downloadanaconda-e012322dabe150cb08c785777f6e3c1333faa081.tar.gz
anaconda-e012322dabe150cb08c785777f6e3c1333faa081.tar.xz
anaconda-e012322dabe150cb08c785777f6e3c1333faa081.zip
more merging
Diffstat (limited to 'iw/confirm_gui.py')
-rw-r--r--iw/confirm_gui.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/iw/confirm_gui.py b/iw/confirm_gui.py
index 0c5a20229..b5fee41b2 100644
--- a/iw/confirm_gui.py
+++ b/iw/confirm_gui.py
@@ -14,6 +14,7 @@
import gtk
from iw_gui import *
from translate import _, N_
+from constants import *
from package_gui import queryUpgradeContinue
import gui
@@ -56,9 +57,9 @@ class InstallConfirmWindow (ConfirmWindow):
def getScreen(self):
return ConfirmWindow.getScreen(self,
- _("Click next to begin installation of Red Hat Linux."),
+ _("Click next to begin installation of %s.") % (productName,),
_("A complete log of your installation will be in "
- "/tmp/install.log after rebooting your system. You "
+ "/root/install.log after rebooting your system. You "
"may want to keep this file for later reference. "
"A kickstart file representing the choices you have made "
"will be in /root/anaconda-ks.cfg."))
@@ -69,8 +70,8 @@ class UpgradeConfirmWindow (ConfirmWindow):
def getScreen(self):
return ConfirmWindow.getScreen(self,
- _("Click next to begin upgrade of Red Hat Linux."),
+ _("Click next to begin upgrade of %s.") % (productName,),
_("A complete log of your upgrade will be in "
- "/tmp/upgrade.log after rebooting your system. You "
+ "/root/upgrade.log after rebooting your system. You "
"may want to keep this file for later reference."))