diff options
author | Brion Vibber <brion@pobox.com> | 2010-03-03 12:08:07 -0800 |
---|---|---|
committer | Brion Vibber <brion@pobox.com> | 2010-03-03 12:10:43 -0800 |
commit | 0881eba80eabfea65919be2f3d65235ccd0b5eb6 (patch) | |
tree | fb35ebd6ac9f762720fa48c85436b1b0d6d1142e /actions | |
parent | c82efb7fd8ba28b854020821246878fc0a8cec2b (diff) |
Language setting fixes:
- switch 'en_US' to 'en', fixes the "admin panel switches to Arabic" bug
- tweak setting descriptions to clarify that most of the time we'll be using browser language
- add a backend switch to disable language detection (should this be exposed to ui?)
Diffstat (limited to 'actions')
-rw-r--r-- | actions/siteadminpanel.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index 8c8f8b374..4b29819b7 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -277,8 +277,8 @@ class SiteAdminPanelForm extends AdminForm $this->unli(); $this->li(); - $this->out->dropdown('language', _('Language'), - get_nice_language_list(), _('Default site language'), + $this->out->dropdown('language', _('Default language'), + get_nice_language_list(), _('Site language when autodetection from browser settings is not available'), false, $this->value('language')); $this->unli(); |