From a907805911bc678c6d3f5e0fb71c7189866b5e06 Mon Sep 17 00:00:00 2001 From: cash Date: Wed, 6 Oct 2010 10:55:27 +0000 Subject: Pulled installation language strings out of core language file into installer git-svn-id: http://code.elgg.org/elgg/trunk@7019 36083f99-b078-4883-b0ff-0f9b5a30f544 --- views/installation/install/forms/template.php | 4 ++-- views/installation/page_shells/default.php | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'views') diff --git a/views/installation/install/forms/template.php b/views/installation/install/forms/template.php index a2d93f42e..98cdcadab 100644 --- a/views/installation/install/forms/template.php +++ b/views/installation/install/forms/template.php @@ -11,8 +11,8 @@ $type = $vars['type']; $form_body = ''; foreach ($variables as $field => $params) { - $label = elgg_echo("installation:$type:label:$field"); - $help = elgg_echo("installation:$type:help:$field"); + $label = elgg_echo("install:$type:label:$field"); + $help = elgg_echo("install:$type:help:$field"); $params['internalname'] = $field; $form_body .= '

'; diff --git a/views/installation/page_shells/default.php b/views/installation/page_shells/default.php index b023197fa..e19f90390 100644 --- a/views/installation/page_shells/default.php +++ b/views/installation/page_shells/default.php @@ -12,6 +12,9 @@ * @uses $vars['sysmessages'] Array of system status messages */ +$title = elgg_echo('install:title'); +$title .= " : {$vars['title']}"; + // we won't trust server configuration but specify utf-8 header('Content-type: text/html; charset=utf-8'); @@ -24,7 +27,7 @@ header('Expires: Fri, 05 Feb 1982 00:00:00 -0500', TRUE); - Elgg Install : <?php echo $vars['title']; ?> + <?php echo $title; ?> -- cgit v1.2.3