diff options
Diffstat (limited to 'modules/search')
-rw-r--r-- | modules/search/search.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/search/search.module b/modules/search/search.module index 3a5ae4435..ef99f07d2 100644 --- a/modules/search/search.module +++ b/modules/search/search.module @@ -150,25 +150,25 @@ function search_menu($may_cache) { if ($may_cache) { $items[] = array('path' => 'search', - 'title' => t('search'), + 'title' => t('Search'), 'callback' => 'drupal_get_form', 'callback arguments' => array('search_view'), 'access' => user_access('search content'), 'type' => MENU_SUGGESTED_ITEM); $items[] = array('path' => 'admin/settings/search', - 'title' => t('search settings'), + 'title' => t('Search settings'), 'description' => t('Configure relevance settings for search and other indexing options'), 'callback' => 'drupal_get_form', 'callback arguments' => array('search_admin_settings'), 'access' => user_access('administer search'), 'type' => MENU_NORMAL_ITEM); $items[] = array('path' => 'admin/settings/search/wipe', - 'title' => t('clear index'), + 'title' => t('Clear index'), 'callback' => 'drupal_get_form', 'callback arguments' => array('search_wipe_confirm'), 'access' => user_access('administer search'), 'type' => MENU_CALLBACK); - $items[] = array('path' => 'admin/logs/search', 'title' => t('top search phrases'), + $items[] = array('path' => 'admin/logs/search', 'title' => t('Top search phrases'), 'description' => t('View most popular search phrases.'), 'callback' => 'watchdog_top', 'callback arguments' => array('search')); |