瀏覽代碼

- #247373: found untranslatable strings, by Takafumi

Roger López 16 年之前
父節點
當前提交
c98cff88e7
共有 1 個文件被更改,包括 5 次插入2 次删除
  1. 5 2
      simplemenu.module

+ 5 - 2
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
   );