aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcash <cash.costello@gmail.com>2012-01-30 19:39:11 -0500
committercash <cash.costello@gmail.com>2012-01-30 19:39:11 -0500
commita534577f6eacbacdc75fd6871b7d955c7a4f8ebf (patch)
tree54276f3a53a22178ffc7bcb4b60e253ecbdda1c7
parent88fbeddabf6d07b1dc30517a20c08cd97197721a (diff)
downloadelgg-a534577f6eacbacdc75fd6871b7d955c7a4f8ebf.tar.gz
elgg-a534577f6eacbacdc75fd6871b7d955c7a4f8ebf.tar.bz2
added language strings to installer for refresh and next
-rw-r--r--install/languages/en.php3
-rw-r--r--views/installation/install/nav.php4
2 files changed, 5 insertions, 2 deletions
diff --git a/install/languages/en.php b/install/languages/en.php
index bbcd72d20..c452fc793 100644
--- a/install/languages/en.php
+++ b/install/languages/en.php
@@ -15,6 +15,9 @@ $english = array(
'install:admin' => 'Create admin account',
'install:complete' => 'Finished',
+ 'install:next' => 'Next',
+ 'install:refresh' => 'Refresh',
+
'install:welcome:instructions' => "Installing Elgg has 6 simple steps and reading this welcome is the first one!
If you haven't already, read through the installation instructions included with Elgg (or click the instructions link at the bottom of the page).
diff --git a/views/installation/install/nav.php b/views/installation/install/nav.php
index 76bd2ac50..c150cb2cb 100644
--- a/views/installation/install/nav.php
+++ b/views/installation/install/nav.php
@@ -12,12 +12,12 @@
// has a refresh button been requested
$refresh = '';
if (isset($vars['refresh']) && $vars['refresh']) {
- $refresh_text = elgg_echo('Refresh');
+ $refresh_text = elgg_echo('install:refresh');
$refresh = "<a href=\"\">$refresh_text</a>";
}
// create next button and selectively disable
-$next_text = elgg_echo('next');
+$next_text = elgg_echo('install:next');
$next_link = elgg_get_site_url()."install.php?step={$vars['next_step']}";
$next = "<a href=\"$next_link\">$next_text</a>";
if (isset($vars['advance']) && !$vars['advance']) {