]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
added language strings to installer for refresh and next
authorcash <cash.costello@gmail.com>
Tue, 31 Jan 2012 00:39:11 +0000 (19:39 -0500)
committercash <cash.costello@gmail.com>
Tue, 31 Jan 2012 00:39:11 +0000 (19:39 -0500)
install/languages/en.php
views/installation/install/nav.php

index bbcd72d201bfc4c9d947ebf3952ad897088fc288..c452fc793c1cba03ea519818f0d5fd492fad8e88 100644 (file)
@@ -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).
index 76bd2ac50118b9411ed2f4e7431ba5799c099e10..c150cb2cb3842c31c7f581ae32499033bdcaf284 100644 (file)
 // 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']) {