From c98cff88e7bea5bc0dd81bfb3b021ad094a0096b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roger=20L=C3=B3pez?= Date: Sun, 12 Oct 2008 22:44:40 +0000 Subject: [PATCH] - #247373: found untranslatable strings, by Takafumi --- simplemenu.module | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/simplemenu.module b/simplemenu.module index d6d35ad2..ed10f2d6 100644 --- a/simplemenu.module +++ b/simplemenu.module @@ -114,8 +114,11 @@ function simplemenu_admin_settings() { $form['default_menu']['advanced']['simplemenu_element_method'] = array( '#type' => 'radios', '#title' => t('Attach method'), - '#options' => drupal_map_assoc(array('prepend', 'append')), - '#default_value' => variable_get('simplemenu_element_method', 'prepend'), + '#options' => array( + 'prepend' => t('Prepend'), + 'append' => t('Append'), + ), + '#default_value' => variable_get('simplemenu_element_method', 'prepend'), '#description' => t('Choose how the menu should be attached to the above selector.'), '#required' => TRUE );