From f96a1c769094228d0ff3fb84a01e6c368d79a2f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= Date: Wed, 2 Jan 2008 12:04:17 +0000 Subject: #205334 by hass: if more then 5 languages are available, use a dropdown not a radio button list (usability) --- includes/locale.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/locale.inc b/includes/locale.inc index 5cf2a9894..aeb114878 100644 --- a/includes/locale.inc +++ b/includes/locale.inc @@ -550,7 +550,8 @@ function locale_translate_seek_form() { '#default_value' => @$query['string'], '#description' => t('Leave blank to show all strings. The search is case sensitive.'), ); - $form['search']['language'] = array('#type' => 'radios', + $form['search']['language'] = array( + '#type' => (count($languages) <= 5 ? '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), -- cgit v1.2.3