diff options
author | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-22 08:28:47 +0000 |
---|---|---|
committer | Steven Wittens <steven@10.no-reply.drupal.org> | 2006-10-22 08:28:47 +0000 |
commit | 36d44fbfb07e4682f219368e1424c58fc61315a1 (patch) | |
tree | d6a5363c6ec34a5b81aac6fee283ee7479d45ea4 /modules/watchdog | |
parent | c93c0fc7000f5cbb78ac2715ace58c28b789dc81 (diff) | |
download | brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.gz brdo-36d44fbfb07e4682f219368e1424c58fc61315a1.tar.bz2 |
#84146: Use 'Sentence capitalization' for menu items, page titles, form items, etc
Diffstat (limited to 'modules/watchdog')
-rw-r--r-- | modules/watchdog/watchdog.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 806bc7b97..b3312b0de 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -40,19 +40,19 @@ function watchdog_menu($may_cache) { $items = array(); if ($may_cache) { - $items[] = array('path' => 'admin/logs/watchdog', 'title' => t('recent log entries'), + $items[] = array('path' => 'admin/logs/watchdog', 'title' => t('Recent log entries'), 'description' => t('View events that have recently been logged.'), 'callback' => 'watchdog_overview', 'weight' => -1); - $items[] = array('path' => 'admin/logs/page-not-found', 'title' => t("top 'page not found' errors"), + $items[] = array('path' => 'admin/logs/page-not-found', 'title' => t("Top 'page not found' errors"), 'description' => t("View 'page not found' errors (404s)."), 'callback' => 'watchdog_top', 'callback arguments' => array('page not found')); - $items[] = array('path' => 'admin/logs/access-denied', 'title' => t("top 'access denied' errors"), + $items[] = array('path' => 'admin/logs/access-denied', 'title' => t("Top 'access denied' errors"), 'description' => t("View 'access denied' errors (403s)."), 'callback' => 'watchdog_top', 'callback arguments' => array('access denied')); - $items[] = array('path' => 'admin/logs/event', 'title' => t('details'), + $items[] = array('path' => 'admin/logs/event', 'title' => t('Details'), 'callback' => 'watchdog_event', 'type' => MENU_CALLBACK); } |