summaryrefslogtreecommitdiff
path: root/modules/search
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2006-10-22 08:28:47 +0000
commit36d44fbfb07e4682f219368e1424c58fc61315a1 (patch)
treed6a5363c6ec34a5b81aac6fee283ee7479d45ea4 /modules/search
parentc93c0fc7000f5cbb78ac2715ace58c28b789dc81 (diff)
downloadbrdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.gz
brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.bz2
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc
Diffstat (limited to 'modules/search')
-rw-r--r--modules/search/search.module8
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'));