summaryrefslogtreecommitdiffstats
path: root/loader2
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2008-01-11 15:43:29 -0500
committerChris Lumens <clumens@redhat.com>2008-01-11 15:43:29 -0500
commit24af904117b233b097e6a747c71d05f0dd51e5e9 (patch)
tree84a1c5dcbeab6a6b88d975fdbe153be23795c56a /loader2
parent27cee978e58ced7919f515387847210dbbfb80ef (diff)
downloadanaconda-24af904117b233b097e6a747c71d05f0dd51e5e9.tar.gz
anaconda-24af904117b233b097e6a747c71d05f0dd51e5e9.tar.xz
anaconda-24af904117b233b097e6a747c71d05f0dd51e5e9.zip
Add the arch to the top line everywhere else.
Diffstat (limited to 'loader2')
-rw-r--r--loader2/lang.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/loader2/lang.c b/loader2/lang.c
index 3cd8b6217..b799fef90 100644
--- a/loader2/lang.c
+++ b/loader2/lang.c
@@ -59,8 +59,8 @@ int numStrings = 0, allocedStrings = 0;
static int english = 0;
-static char * topLineWelcome = N_("Welcome to %s");
-static char * topLineWelcomeRescue = N_("Welcome to %s - Rescue Mode");
+static char * topLineWelcome = N_("Welcome to %s for %s");
+static char * topLineWelcomeRescue = N_("Welcome to %s for %s - Rescue Mode");
static char * bottomHelpLine = N_(" <Tab>/<Alt-Tab> between elements | <Space> selects | <F12> next screen ");
static int aStringCmp(const void * a, const void * b) {
@@ -261,7 +261,7 @@ static int setupLanguage(int choice) {
newtDrawRootText(0, 0, buf);
char *fmt = FL_RESCUE(flags) ? _(topLineWelcomeRescue) : _(topLineWelcome);
- i = asprintf(&buf, fmt, getProductName());
+ i = asprintf(&buf, fmt, getProductName(), getProductArch());
newtDrawRootText(0, 0, buf);
free(buf);