From a49b354e0cd3eb3ab9b36566c58619c876d69caa Mon Sep 17 00:00:00 2001
From: Ben Chavet <ben.chavet@lullabot.com>
Date: Wed, 30 May 2012 10:54:39 -0500
Subject: [PATCH] 1411334

---
 nice_menus.module |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/nice_menus.module b/nice_menus.module
index e49a7a2..74e01b9 100644
--- a/nice_menus.module
+++ b/nice_menus.module
@@ -89,7 +89,7 @@ function nice_menus_admin_settings($form, &$form_state) {
   );
   $form['nice_menus_js'] = array(
     '#type' => 'checkbox',
-    '#title' => t('Use JavaScript'),
+    '#title' => t('Use javaScript'),
     '#description' => t('This will add Superfish Jquery to Nice menus. This is required for Nice menus to work properly in Internet Explorer.'),
     '#default_value' => variable_get('nice_menus_js', 1),
   );
@@ -195,26 +195,26 @@ function nice_menus_block_info() {
 function nice_menus_block_configure($delta) {
   $form['nice_menus_name_' . $delta] = array(
     '#type' => 'textfield',
-    '#title' => t('Menu Name'),
+    '#title' => t('Menu name'),
     '#default_value' => variable_get('nice_menus_name_' . $delta, 'Nice menu ' . $delta),
   );
   $form['nice_menus_menu_' . $delta] = array(
     '#type' => 'select',
-    '#title' => t('Menu Parent'),
+    '#title' => t('Menu parent'),
     '#description' => t('The menu parent from which to show a Nice menu.'),
     '#default_value' => variable_get('nice_menus_menu_' . $delta, 'navigation:0'),
     '#options' => menu_get_menus(),
   );
   $form['nice_menus_depth_' . $delta] = array(
     '#type' => 'select',
-    '#title' => t('Menu Depth'),
+    '#title' => t('Menu depth'),
     '#description' => t('The depth of the menu, i.e. the number of child levels starting with the parent selected above. Leave set to -1 to display all children and use 0 to display no children.'),
     '#default_value' => variable_get('nice_menus_depth_' . $delta, -1),
     '#options' => drupal_map_assoc(range(-1, 5)),
   );
   $form['nice_menus_type_' . $delta] = array(
     '#type' => 'select',
-    '#title' => t('Menu Style'),
+    '#title' => t('Menu style'),
     '#description' => t('right: menu items are listed on top of each other and expand to the right') . '<br />' . t('left: menu items are listed on top of each other and expand to the left') . '<br />' . t('down: menu items are listed side by side and expand down'),
     '#default_value' => variable_get('nice_menus_type_' . $delta, 'right'),
     '#options' => drupal_map_assoc(array('right', 'left', 'down')),
-- 
1.7.9.5

