- #247373: found untranslatable strings, by Takafumi

This commit is contained in:
Roger López 2008-10-12 22:44:40 +00:00
parent c3abc04ce2
commit c98cff88e7

View File

@ -114,8 +114,11 @@ function simplemenu_admin_settings() {
$form['default_menu']['advanced']['simplemenu_element_method'] = array( $form['default_menu']['advanced']['simplemenu_element_method'] = array(
'#type' => 'radios', '#type' => 'radios',
'#title' => t('Attach method'), '#title' => t('Attach method'),
'#options' => drupal_map_assoc(array('prepend', 'append')), '#options' => array(
'#default_value' => variable_get('simplemenu_element_method', 'prepend'), '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.'), '#description' => t('Choose how the menu should be attached to the above selector.'),
'#required' => TRUE '#required' => TRUE
); );