summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-12-27 14:13:13 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-12-27 14:13:13 +0000
commit4441334133fc4dddf442e4fbd7c106cb289f3372 (patch)
treea7abfce1d09857aa6689b84f24b69f1262e49a40 /includes
parent34afaf8f2892d5188a72e200b198fa8b9a2ef247 (diff)
downloadbrdo-4441334133fc4dddf442e4fbd7c106cb289f3372.tar.gz
brdo-4441334133fc4dddf442e4fbd7c106cb289f3372.tar.bz2
Reported at http://groups.drupal.org/node/7843 : language direction was not translated in the overview (it is in the form, so no new string for translators)
Diffstat (limited to 'includes')
-rw-r--r--includes/locale.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index 549ae6f72..5cf2a9894 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -45,7 +45,7 @@ function locale_languages_overview_form() {
);
$form['name'][$langcode] = array('#value' => check_plain($language->name));
$form['native'][$langcode] = array('#value' => check_plain($language->native));
- $form['direction'][$langcode] = array('#value' => ($language->direction == LANGUAGE_RTL ? 'Right to left' : 'Left to right'));
+ $form['direction'][$langcode] = array('#value' => ($language->direction == LANGUAGE_RTL ? t('Right to left') : t('Left to right')));
}
$form['enabled'] = array('#type' => 'checkboxes',
'#options' => $options,