summaryrefslogtreecommitdiff
path: root/install.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2006-11-24 09:01:57 +0000
committerDries Buytaert <dries@buytaert.net>2006-11-24 09:01:57 +0000
commitd721a4f0d974f93d04db19c8d1c107b9d24dd3f5 (patch)
tree33a479695c635ff1d17037e545278ec680f6451b /install.php
parenta895b149327ab4c905fc73d87199bc8268c63916 (diff)
downloadbrdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.gz
brdo-d721a4f0d974f93d04db19c8d1c107b9d24dd3f5.tar.bz2
- Patch #98365 by webchick and RobRoy: added missing t() functions.
Diffstat (limited to 'install.php')
-rw-r--r--install.php6
1 files changed, 3 insertions, 3 deletions
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;
}