From a534577f6eacbacdc75fd6871b7d955c7a4f8ebf Mon Sep 17 00:00:00 2001 From: cash Date: Mon, 30 Jan 2012 19:39:11 -0500 Subject: added language strings to installer for refresh and next --- install/languages/en.php | 3 +++ views/installation/install/nav.php | 4 ++-- 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 = "$refresh_text"; } // 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 = "$next_text"; if (isset($vars['advance']) && !$vars['advance']) { -- cgit v1.2.3