diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-06 10:55:27 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-10-06 10:55:27 +0000 |
commit | a907805911bc678c6d3f5e0fb71c7189866b5e06 (patch) | |
tree | ceb0feb2cf00fb2289bad0e884f941ab429c64d9 /views/installation/install | |
parent | d52ced80bcd6281b3bd22b5ee83edb818c2d72e2 (diff) | |
download | elgg-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/install')
-rw-r--r-- | views/installation/install/forms/template.php | 4 |
1 files changed, 2 insertions, 2 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>'; |