From 71f74b55653a6155ac824963abdce1b27da52b6a Mon Sep 17 00:00:00 2001 From: Ted Serbinski Date: Thu, 22 Nov 2007 05:07:07 +0000 Subject: [PATCH] #180106 - fix missing translatable strings --- simplemenu.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simplemenu.module b/simplemenu.module index 0461e10a..3c70809f 100644 --- a/simplemenu.module +++ b/simplemenu.module @@ -107,7 +107,7 @@ function simplemenu_admin_settings() { $form['default_menu']['advanced']['simplemenu_element_method'] = array( '#type' => 'radios', - '#title' => 'Attach method', + '#title' => t('Attach method'), '#options' => drupal_map_assoc(array('prepend', 'append')), '#default_value' => variable_get('simplemenu_element_method', 'prepend'), '#description' => t('Choose how the menu should be attached to the above selector.'), @@ -116,7 +116,7 @@ function simplemenu_admin_settings() { $form['default_menu']['advanced']['simplemenu_exclusions'] = array( '#type' => 'checkboxes', - '#title' => 'Theme exclusions', + '#title' => t('Theme exclusions'), '#options' => drupal_map_assoc(array_keys(list_themes())), '#default_value' => variable_get('simplemenu_exclusions', array()), '#description' => t('Select which themes to not display the menu. Use this when you have a theme that displays its own admin navigation.'),