cvs diff -u -p -r1.9.2.11.2.1 simplemenu.module Index: simplemenu.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/simplemenu/simplemenu.module,v retrieving revision 1.9.2.11.2.1 diff -u -p -r1.9.2.11.2.1 simplemenu.module --- simplemenu.module 28 Feb 2008 21:47:17 -0000 1.9.2.11.2.1 +++ simplemenu.module 16 Apr 2008 12:31:36 -0000 @@ -78,7 +78,7 @@ function simplemenu_admin_settings() { $form['default_menu']['simplemenu_theme'] = array( '#type' => 'select', '#title' => t('Theme'), - '#options' => array('original' => 'original', 'blackblue' => 'black & blue', 'custom' => 'custom'), + '#options' => array('original' => t('Original'), 'blackblue' => t('Black & Blue'), 'custom' => t('Custom')), '#default_value' => variable_get('simplemenu_theme', 'original'), '#description' => t('Select which theme to use. If you specify custom, you need to define CSS in your theme.') ); @@ -101,7 +101,7 @@ 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')), + '#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