summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2009-07-10 14:43:00 -0400
committerPeter Jones <pjones@vroomfondel.internal.datastacks.com>2009-07-13 10:39:18 -0400
commit0c951cfba63a967f6b67d9b112bd26fb42a1abe0 (patch)
treeb8cd11bd240574bcc90d081d5ffe9c1a67f56b68 /kickstart.py
parent2961ad07899b582f349cf45e318ef7daab3c4f07 (diff)
downloadanaconda-0c951cfba63a967f6b67d9b112bd26fb42a1abe0.tar.gz
anaconda-0c951cfba63a967f6b67d9b112bd26fb42a1abe0.tar.xz
anaconda-0c951cfba63a967f6b67d9b112bd26fb42a1abe0.zip
Edit user-visible dialogs for style.
We have lots of strings that we display to users which are unclear or contain poor usage and grammar. That's bad.
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/kickstart.py b/kickstart.py
index bf61333be..ca20068de 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1239,8 +1239,8 @@ def runPostScripts(anaconda):
log.info("Running kickstart %%post script(s)")
if anaconda.intf is not None:
- w = anaconda.intf.waitWindow(_("Running..."),
- _("Running post-install scripts"))
+ w = anaconda.intf.waitWindow(_("Post-Installation"),
+ _("Running post-installation scripts"))
map (lambda s: s.run(anaconda.rootPath, flags.serial, anaconda.intf), postScripts)
@@ -1256,8 +1256,8 @@ def runPreScripts(anaconda, scripts):
log.info("Running kickstart %%pre script(s)")
if anaconda.intf is not None:
- w = anaconda.intf.waitWindow(_("Running..."),
- _("Running pre-install scripts"))
+ w = anaconda.intf.waitWindow(_("Pre-Installation"),
+ _("Running pre-installation scripts"))
map (lambda s: s.run("/", flags.serial, anaconda.intf), preScripts)