From d721a4f0d974f93d04db19c8d1c107b9d24dd3f5 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 24 Nov 2006 09:01:57 +0000 Subject: - Patch #98365 by webchick and RobRoy: added missing t() functions. --- install.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'install.php') diff --git a/install.php b/install.php index b45ad40c6..3087da778 100644 --- a/install.php +++ b/install.php @@ -464,13 +464,13 @@ function install_select_locale_form($locales) { // Try to use verbose locale name $name = $locale->name; if (isset($languages[$name])) { - $name = $languages[$name][0] . (isset($languages[$name][1]) ? ' (' . $languages[$name][1] . ')' : ''); + $name = $languages[$name][0] . (isset($languages[$name][1]) ? ' '. st('(@language)', array('@language' => $languages[$name][1])) : ''); } $form['locale'][$locale->name] = array( '#type' => 'radio', '#return_value' => $locale->name, '#default_value' => ($locale->name == 'en' ? TRUE : FALSE), - '#title' => $name . ($locale->name == 'en' ? ' (built-in)' : ''), + '#title' => $name . ($locale->name == 'en' ? ' '. st('(built-in)') : ''), '#parents' => array('locale') ); } @@ -565,7 +565,7 @@ function install_check_requirements($profile) { } } - drupal_set_title('Incompatible environment'); + drupal_set_title(st('Incompatible environment')); print theme('install_page', ''); exit; } -- cgit v1.2.3