summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
Diffstat (limited to 'includes')
-rw-r--r--includes/locale.inc4
1 files changed, 3 insertions, 1 deletions
diff --git a/includes/locale.inc b/includes/locale.inc
index c52a7299b..6676eb1f2 100644
--- a/includes/locale.inc
+++ b/includes/locale.inc
@@ -551,7 +551,9 @@ function locale_translate_seek_form() {
'#description' => t('Leave blank to show all strings. The search is case sensitive.'),
);
$form['search']['language'] = array(
- '#type' => (count($languages) <= 5 ? 'radios' : 'select'),
+ // Change type of form widget if more the 5 options will
+ // be present (2 of the options are added below).
+ '#type' => (count($languages) <= 3 ? 'radios' : 'select'),
'#title' => t('Language'),
'#default_value' => (!empty($query['language']) ? $query['language'] : 'all'),
'#options' => array_merge(array('all' => t('All languages'), 'en' => t('English (provided by Drupal)')), $languages),