Index: modules/watchdog/watchdog.module =================================================================== RCS file: /cvs/drupal/drupal/modules/watchdog/watchdog.module,v retrieving revision 1.157 diff -u -r1.157 watchdog.module --- modules/watchdog/watchdog.module 8 Sep 2006 23:07:25 -0000 1.157 +++ modules/watchdog/watchdog.module 14 Sep 2006 22:01:57 -0000 @@ -22,8 +22,8 @@ $output .= '
'. t('The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. Administrators should check the watchdog report on a regular basis to ensure their site is working properly.') .'
'; $output .= t('You can
'. t('For more information please read the configuration and customization handbook Watchdog page.', array('@watchdog' => 'http://drupal.org/handbook/modules/watchdog/')) .'
'; @@ -40,19 +40,19 @@ $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); }