aboutsummaryrefslogtreecommitdiff
path: root/views/installation
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-06 10:55:27 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-10-06 10:55:27 +0000
commita907805911bc678c6d3f5e0fb71c7189866b5e06 (patch)
treeceb0feb2cf00fb2289bad0e884f941ab429c64d9 /views/installation
parentd52ced80bcd6281b3bd22b5ee83edb818c2d72e2 (diff)
downloadelgg-a907805911bc678c6d3f5e0fb71c7189866b5e06.tar.gz
elgg-a907805911bc678c6d3f5e0fb71c7189866b5e06.tar.bz2
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
Diffstat (limited to 'views/installation')
-rw-r--r--views/installation/install/forms/template.php4
-rw-r--r--views/installation/page_shells/default.php5
2 files changed, 6 insertions, 3 deletions
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 .= '<p>';
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);
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
- <title>Elgg Install : <?php echo $vars['title']; ?></title>
+ <title><?php echo $title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="SHORTCUT ICON" href="<?php echo $vars['url']; ?>_graphics/favicon.ico" />
<link rel="stylesheet" href="<?php echo $vars['url']; ?>install/install.css" type="text/css" />