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 .= '<p>'. 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.') .'</p>';
       $output .= t('<p>You can</p>
 <ul>
-<li>view watchdog logs at <a href="@admin-watchdog">administer &gt;&gt; logs &gt;&gt; watchdog</a>.</li>
-<li>view watchdog event logs at <a href="@admin-watchdog-events">administer &gt;&gt; logs &gt;&gt; watchdog &gt;&gt; events</a>.</li>
+<li>view watchdog logs at <a href="@admin-watchdog">Administer &gt;&gt; Logs &gt;&gt; Watchdog</a>.</li>
+<li>view watchdog event logs at <a href="@admin-watchdog-events">Administer &gt;&gt; Logs &gt;&gt; Watchdog &gt;&gt; Events</a>.</li>
 </ul>
 ', array('@admin-watchdog' => url('admin/logs/watchdog'), '@admin-watchdog-events' => url('admin/logs/watchdog/events')));
       $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@watchdog">Watchdog page</a>.', array('@watchdog' => 'http://drupal.org/handbook/modules/watchdog/')) .'</p>';
@@ -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);
   }

