diff --git a/gallery.module b/gallery.module index 77524c0cae98105b4796031e5b904e7c6cc36942..88a871e0f0b830e5cb63179a0af35a3f759745c9 100644 --- a/gallery.module +++ b/gallery.module @@ -15,21 +15,22 @@ function gallery_menu($may_cache) { if ($may_cache) { $items[] = array( 'path' => 'gallery', - 'title' => t('gallery'), + 'title' => t('Gallery'), 'callback' => 'gallery_page', 'access' => user_access('access gallery'), 'type' => MENU_NORMAL_ITEM, ); $items[] = array( - 'path' => 'admin/user/gallery', 'title' => t('gallery'), + 'path' => 'admin/user/gallery', + 'title' => t('Gallery'), + 'description' => t('Show user sync status between Gallery2 and Drupal.'), 'callback' => 'gallery_users', 'access' => user_access('administer users'), - 'type' => MENU_LOCAL_TASK, ); $items[] = array( 'path' => 'admin/settings/gallery', - 'title' => t('gallery'), - 'description' => t('Settings for embedded Gallery2.'), + 'title' => t('Gallery'), + 'description' => t('Configure settings for embedding Gallery2 into Drupal.'), 'callback' => 'drupal_get_form', 'callback arguments' => 'gallery_admin_settings', 'access' => user_access('administer site configuration'),