? .htaccess
? capitalise_combine.patch
? capitalise_combine_0.patch
? capitalise_combine_1.patch
? capitalise_combine_1.patch.1
? capitalise_combine_2.patch
? logpatch_0.txt
Index: modules/aggregator/aggregator.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.module,v
retrieving revision 1.307
diff -u -F^f -r1.307 aggregator.module
--- modules/aggregator/aggregator.module	3 Oct 2006 21:06:27 -0000	1.307
+++ modules/aggregator/aggregator.module	3 Oct 2006 22:47:39 -0000
@@ -46,38 +46,38 @@ function aggregator_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array('path' => 'admin/content/aggregator',
-      'title' => t('RSS aggregator'),
+      'title' => t('RSS Aggregator'),
       'description' => t('Configure which content your site aggregates from other sites, how often it polls them, and how they\'re categorized.'),
       'callback' => 'aggregator_admin_overview',
       'access' => $edit);
     $items[] = array('path' => 'admin/content/aggregator/add/feed',
-      'title' => t('add feed'),
+      'title' => t('Add Feed'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('aggregator_form_feed'),
       'access' => $edit,
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/content/aggregator/add/category',
-      'title' => t('add category'),
+      'title' => t('Add Category'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('aggregator_form_category'),
       'access' => $edit,
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/content/aggregator/remove',
-      'title' => t('remove items'),
+      'title' => t('Remove Items'),
       'callback' => 'aggregator_admin_remove_feed',
       'access' => $edit,
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/content/aggregator/update',
-      'title' => t('update items'),
+      'title' => t('Update Items'),
       'callback' => 'aggregator_admin_refresh_feed',
       'access' => $edit,
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/content/aggregator/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK,
       'weight' => -10);
     $items[] = array('path' => 'admin/content/aggregator/settings',
-      'title' => t('settings'),
+      'title' => t('Settings'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('aggregator_admin_settings'),
       'type' => MENU_LOCAL_TASK,
@@ -85,26 +85,26 @@ function aggregator_menu($may_cache) {
       'access' => $edit);
 
     $items[] = array('path' => 'aggregator',
-      'title' => t('news aggregator'),
+      'title' => t('News Aggregator'),
       'callback' => 'aggregator_page_last',
       'access' => $view,
       'weight' => 5);
     $items[] = array('path' => 'aggregator/sources',
-      'title' => t('sources'),
+      'title' => t('Sources'),
       'callback' => 'aggregator_page_sources',
       'access' => $view);
     $items[] = array('path' => 'aggregator/categories',
-      'title' => t('categories'),
+      'title' => t('Categories'),
       'callback' => 'aggregator_page_categories',
       'access' => $view,
       'type' => MENU_ITEM_GROUPING);
     $items[] = array('path' => 'aggregator/rss',
-      'title' => t('RSS feed'),
+      'title' => t('RSS Feed'),
       'callback' => 'aggregator_page_rss',
       'access' => $view,
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'aggregator/opml',
-      'title' => t('OPML feed'),
+      'title' => t('OPML Feed'),
       'callback' => 'aggregator_page_opml',
       'access' => $view,
       'type' => MENU_CALLBACK);
@@ -132,17 +132,17 @@ function aggregator_menu($may_cache) {
             'access' => $view,
             'type' => MENU_CALLBACK);
           $items[] = array('path' => 'aggregator/sources/'. $feed['fid'] .'/view',
-            'title' => t('view'),
+            'title' => t('View'),
             'type' => MENU_DEFAULT_LOCAL_TASK,
             'weight' => -10);
           $items[] = array('path' => 'aggregator/sources/'. $feed['fid'] .'/categorize',
-            'title' => t('categorize'),
+            'title' => t('Categorize'),
             'callback' => 'drupal_get_form',
             'callback arguments' => array('aggregator_page_source'),
             'access' => $edit,
             'type' => MENU_LOCAL_TASK);
           $items[] = array('path' => 'aggregator/sources/'. $feed['fid'] .'/configure',
-            'title' => t('configure'),
+            'title' => t('Configure'),
             'callback' => 'drupal_get_form',
             'callback arguments' => array('aggregator_form_feed', $feed),
             'access' => $edit,
@@ -154,17 +154,17 @@ function aggregator_menu($may_cache) {
         $category = aggregator_get_category(arg(2));
         if ($category) {
           $items[] = array('path' => 'aggregator/categories/'. $category['cid'] .'/view',
-            'title' => t('view'),
+            'title' => t('View'),
             'type' => MENU_DEFAULT_LOCAL_TASK,
             'weight' => -10);
           $items[] = array('path' => 'aggregator/categories/'. $category['cid'] .'/categorize',
-            'title' => t('categorize'),
+            'title' => t('Categorize'),
             'callback' => 'drupal_get_form',
             'callback arguments' => array('aggregator_page_category'),
             'access' => $edit,
             'type' => MENU_LOCAL_TASK);
           $items[] = array('path' => 'aggregator/categories/'. $category['cid'] .'/configure',
-            'title' => t('configure'),
+            'title' => t('Configure'),
             'callback' => 'drupal_get_form',
             'callback arguments' => array('aggregator_form_category', $category),
             'access' => $edit,
@@ -178,7 +178,7 @@ function aggregator_menu($may_cache) {
         $feed = aggregator_get_feed(arg(5));
         if ($feed) {
           $items[] = array('path' => 'admin/content/aggregator/edit/feed/'. $feed['fid'],
-            'title' => t('edit feed'),
+            'title' => t('Edit Feed'),
             'callback' => 'drupal_get_form',
             'callback arguments' => array('aggregator_form_feed', $feed),
             'access' => $edit,
@@ -189,7 +189,7 @@ function aggregator_menu($may_cache) {
         $category = aggregator_get_category(arg(5));
         if ($category) {
           $items[] = array('path' => 'admin/content/aggregator/edit/category/'. $category['cid'],
-            'title' => t('edit category'),
+            'title' => t('Edit Category'),
             'callback' => 'drupal_get_form',
             'callback arguments' => array('aggregator_form_category', $category),
             'access' => $edit,
Index: modules/block/block.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.module,v
retrieving revision 1.228
diff -u -F^f -r1.228 block.module
--- modules/block/block.module	5 Sep 2006 02:53:01 -0000	1.228
+++ modules/block/block.module	3 Oct 2006 22:47:39 -0000
@@ -66,24 +66,24 @@ function block_menu($may_cache) {
   if ($may_cache) {
     $items[] = array(
       'path' => 'admin/build/block',
-      'title' => t('blocks'),
+      'title' => t('Blocks'),
       'access' => user_access('administer blocks'),
       'description' => t('Configure what block content appears in your site\'s sidebars and other regions.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('block_admin_display'));
-    $items[] = array('path' => 'admin/build/block/list', 'title' => t('list'),
+    $items[] = array('path' => 'admin/build/block/list', 'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
-    $items[] = array('path' => 'admin/build/block/configure', 'title' => t('configure block'),
+    $items[] = array('path' => 'admin/build/block/configure', 'title' => t('Configure Block'),
       'access' => user_access('administer blocks'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('block_admin_configure'),
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/build/block/delete', 'title' => t('delete block'),
+    $items[] = array('path' => 'admin/build/block/delete', 'title' => t('Delete Block'),
       'access' => user_access('administer blocks'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('block_box_delete'),
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/build/block/add', 'title' => t('add block'),
+    $items[] = array('path' => 'admin/build/block/add', 'title' => t('Add Block'),
       'access' => user_access('administer blocks'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('block_box_form'),
Index: modules/blog/blog.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blog/blog.module,v
retrieving revision 1.265
diff -u -F^f -r1.265 blog.module
--- modules/blog/blog.module	31 Aug 2006 20:22:34 -0000	1.265
+++ modules/blog/blog.module	3 Oct 2006 22:47:39 -0000
@@ -263,13 +263,13 @@ function blog_menu($may_cache) {
   $items = array();
 
   if ($may_cache) {
-    $items[] = array('path' => 'node/add/blog', 'title' => t('blog entry'),
+    $items[] = array('path' => 'node/add/blog', 'title' => t('Blog Entry'),
       'access' => user_access('edit own blog'));
-    $items[] = array('path' => 'blog', 'title' => t('blogs'),
+    $items[] = array('path' => 'blog', 'title' => t('Blogs'),
       'callback' => 'blog_page',
       'access' => user_access('access content'),
       'type' => MENU_SUGGESTED_ITEM);
-    $items[] = array('path' => 'blog/'. $user->uid, 'title' => t('my blog'),
+    $items[] = array('path' => 'blog/'. $user->uid, 'title' => t('My Blog'),
       'access' => user_access('edit own blog'),
       'type' => MENU_DYNAMIC_ITEM);
   }
Index: modules/blogapi/blogapi.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blogapi/blogapi.module,v
retrieving revision 1.95
diff -u -F^f -r1.95 blogapi.module
--- modules/blogapi/blogapi.module	31 Aug 2006 20:22:34 -0000	1.95
+++ modules/blogapi/blogapi.module	3 Oct 2006 22:47:39 -0000
@@ -576,7 +576,7 @@ function blogapi_menu($may_cache) {
       'type' => MENU_CALLBACK);
     $items[] = array(
       'path' => 'admin/settings/blogapi',
-      'title' => t('blog APIs'),
+      'title' => t('Blog APIs'),
       'description' => t('Configure which content types and engines external blog clients can use.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('blogapi_admin_settings'),
Index: modules/book/book.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/book/book.module,v
retrieving revision 1.393
diff -u -F^f -r1.393 book.module
--- modules/book/book.module	26 Sep 2006 14:14:30 -0000	1.393
+++ modules/book/book.module	3 Oct 2006 22:47:39 -0000
@@ -91,24 +91,24 @@ function book_menu($may_cache) {
   if ($may_cache) {
     $items[] = array(
       'path' => 'admin/content/book',
-      'title' => t('books'),
+      'title' => t('Books'),
       'description' => t('Manage site\'s books and orphaned book pages.'),
       'callback' => 'book_admin',
       'access' => user_access('administer nodes'));
     $items[] = array(
       'path' => 'admin/content/book/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK);
     $items[] = array(
       'path' => 'admin/content/book/orphan',
-      'title' => t('orphan pages'),
+      'title' => t('Orphan Pages'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('book_admin_orphan'),
       'type' => MENU_LOCAL_TASK,
       'weight' => 8);
     $items[] = array(
       'path' => 'book',
-      'title' => t('books'),
+      'title' => t('Books'),
       'callback' => 'book_render',
       'access' => user_access('access content'),
       'type' => MENU_SUGGESTED_ITEM);
Index: modules/comment/comment.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/comment/comment.module,v
retrieving revision 1.488
diff -u -F^f -r1.488 comment.module
--- modules/comment/comment.module	17 Sep 2006 19:09:34 -0000	1.488
+++ modules/comment/comment.module	3 Oct 2006 22:47:39 -0000
@@ -100,20 +100,20 @@ function comment_menu($may_cache) {
     $access = user_access('administer comments');
     $items[] = array(
       'path' => 'admin/content/comment',
-      'title' => t('comments'),
+      'title' => t('Comments'),
       'description' => t('List and edit site comments and the comment moderation queue.'),
       'callback' => 'comment_admin',
       'access' => $access
     );
 
     // Tabs:
-    $items[] = array('path' => 'admin/content/comment/list', 'title' => t('list'),
+    $items[] = array('path' => 'admin/content/comment/list', 'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
 
     // Subtabs:
-    $items[] = array('path' => 'admin/content/comment/list/new', 'title' => t('published comments'),
+    $items[] = array('path' => 'admin/content/comment/list/new', 'title' => t('Published Comments'),
       'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
-    $items[] = array('path' => 'admin/content/comment/list/approval', 'title' => t('approval queue'),
+    $items[] = array('path' => 'admin/content/comment/list/approval', 'title' => t('Approval Queue'),
       'callback' => 'comment_admin',
       'callback arguments' => array('approval'),
       'access' => $access,
@@ -121,18 +121,18 @@ function comment_menu($may_cache) {
 
     $items[] = array(
       'path' => 'admin/content/comment/settings',
-      'title' => t('settings'),
+      'title' => t('Settings'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('comment_admin_settings'),
       'access' => $access,
       'weight' => 10,
       'type' => MENU_LOCAL_TASK);
 
-    $items[] = array('path' => 'comment/delete', 'title' => t('delete comment'),
+    $items[] = array('path' => 'comment/delete', 'title' => t('Delete Comment'),
       'callback' => 'comment_delete', 'access' => $access, 'type' => MENU_CALLBACK);
 
     $access = user_access('post comments');
-    $items[] = array('path' => 'comment/edit', 'title' => t('edit comment'),
+    $items[] = array('path' => 'comment/edit', 'title' => t('Edit Comment'),
       'callback' => 'comment_edit',
       'access' => $access, 'type' => MENU_CALLBACK);
   }
@@ -140,12 +140,12 @@ function comment_menu($may_cache) {
     if (arg(0) == 'comment' && arg(1) == 'reply' && is_numeric(arg(2))) {
       $node = node_load(arg(2));
       if ($node->nid) {
-        $items[] = array('path' => 'comment/reply', 'title' => t('reply to comment'),
+        $items[] = array('path' => 'comment/reply', 'title' => t('Reply to Comment'),
           'callback' => 'comment_reply', 'access' => node_access('view', $node), 'type' => MENU_CALLBACK);
       }
     }
     if ((arg(0) == 'node') && is_numeric(arg(1)) && is_numeric(arg(2))) {
-      $items[] = array('path' => ('node/'. arg(1) .'/'. arg(2)), 'title' => t('view'),
+      $items[] = array('path' => ('node/'. arg(1) .'/'. arg(2)), 'title' => t('View'),
         'callback' => 'node_page',
         'type' => MENU_CALLBACK);
     }
Index: modules/contact/contact.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/contact/contact.module,v
retrieving revision 1.65
diff -u -F^f -r1.65 contact.module
--- modules/contact/contact.module	8 Sep 2006 16:33:02 -0000	1.65
+++ modules/contact/contact.module	3 Oct 2006 22:47:39 -0000
@@ -49,19 +49,19 @@ function contact_menu($may_cache) {
   $items = array();
   if ($may_cache) {
     $items[] = array('path' => 'admin/build/contact',
-      'title' => t('contact form'),
+      'title' => t('Contact Form'),
       'description' => t('Create a system contact form and set up categories for the form to use.'),
       'callback' => 'contact_admin_categories',
       'access' => user_access('administer site configuration'),
     );
     $items[] = array('path' => 'admin/build/contact/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'callback' => 'contact_admin_categories',
       'access' => user_access('administer site configuration'),
       'type' => MENU_DEFAULT_LOCAL_TASK,
     );
     $items[] = array('path' => 'admin/build/contact/add',
-      'title' => t('add category'),
+      'title' => t('Add Category'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('contact_admin_edit'),
       'access' => user_access('administer site configuration'),
@@ -69,21 +69,21 @@ function contact_menu($may_cache) {
       'weight' => 1,
     );
     $items[] = array('path' => 'admin/build/contact/edit',
-      'title' => t('edit contact category'),
+      'title' => t('Edit Contact Category'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('contact_admin_edit'),
       'access' => user_access('administer site configuration'),
       'type' => MENU_CALLBACK,
     );
     $items[] = array('path' => 'admin/build/contact/delete',
-      'title' => t('delete contact'),
+      'title' => t('Delete Contact'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('contact_admin_delete'),
       'access' => user_access('administer site configuration'),
       'type' => MENU_CALLBACK,
     );
     $items[] = array('path' => 'admin/build/contact/settings',
-      'title' => t('settings'),
+      'title' => t('Settings'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('contact_admin_settings'),
       'access' => user_access('administer site configuration'),
@@ -91,7 +91,7 @@ function contact_menu($may_cache) {
       'weight' => 2,
     );
     $items[] = array('path' => 'contact',
-      'title' => t('contact'),
+      'title' => t('Contact'),
       'callback' => 'contact_site_page',
       'access' => user_access('access site-wide contact form'),
       'type' => MENU_SUGGESTED_ITEM,
@@ -103,7 +103,7 @@ function contact_menu($may_cache) {
       $account = user_load(array('uid' => arg(1)));
       if (($user->uid != $account->uid && $account->contact) || user_access('administer users')) {
         $items[] = array('path' => 'user/'. arg(1) .'/contact',
-          'title' => t('contact'),
+          'title' => t('Contact'),
           'callback' => 'contact_user_page',
           'type' => MENU_LOCAL_TASK,
           'access' => ($user->uid && user_access('access personal contact forms')),
Index: modules/drupal/drupal.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/drupal/drupal.module,v
retrieving revision 1.128
diff -u -F^f -r1.128 drupal.module
--- modules/drupal/drupal.module	31 Aug 2006 20:22:35 -0000	1.128
+++ modules/drupal/drupal.module	3 Oct 2006 22:47:39 -0000
@@ -346,13 +346,13 @@ function drupal_menu($may_cache) {
   $items = array();
   if ($may_cache) {
     $items[] = array('path' => 'admin/settings/sites-registry',
-      'title' => t('sites registry'),
+      'title' => t('Sites Registry'),
       'description' => t('Register with another Drupal site (drupal.org by default) for statistics sharing, or set up your server to be a central server for registrations.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('drupal_sites_registry_settings'),
       'access' => user_access('administer site configuration'));
     $items[] = array('path' => 'admin/settings/distributed-authentication',
-      'title' => t('distributed authentication'),
+      'title' => t('Distributed Authentication'),
       'description' => t('Allow your site to accept logins from other Drupal sites such as drupal.org.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('drupal_distributed_authentication_settings'),
Index: modules/filter/filter.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v
retrieving revision 1.144
diff -u -F^f -r1.144 filter.module
--- modules/filter/filter.module	9 Sep 2006 08:25:23 -0000	1.144
+++ modules/filter/filter.module	3 Oct 2006 22:47:39 -0000
@@ -62,20 +62,20 @@ function filter_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array('path' => 'admin/settings/filters',
-      'title' => t('input formats'),
+      'title' => t('Input Formats'),
       'description' => t('Configure how content input by users is filtered, including allowed HTML tags, PHP code tags. Also allows enabling of module-provided filters.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('filter_admin_overview'),
       'access' => user_access('administer filters'),
     );
     $items[] = array('path' => 'admin/settings/filters/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'callback' => 'filter_admin_overview',
       'type' => MENU_DEFAULT_LOCAL_TASK,
       'access' => user_access('administer filters'),
     );
     $items[] = array('path' => 'admin/settings/filters/add',
-      'title' => t('add input format'),
+      'title' => t('Add Input Format'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('filter_admin_format_form'),
       'type' => MENU_LOCAL_TASK,
@@ -83,14 +83,14 @@ function filter_menu($may_cache) {
       'access' => user_access('administer filters'),
     );
     $items[] = array('path' => 'admin/settings/filters/delete',
-      'title' => t('delete input format'),
+      'title' => t('Delete Input Format'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('filter_admin_delete'),
       'type' => MENU_CALLBACK,
       'access' => user_access('administer filters'),
     );
     $items[] = array('path' => 'filter/tips',
-      'title' => t('compose tips'),
+      'title' => t('Compose Tips'),
       'callback' => 'filter_tips_long',
       'access' => TRUE,
       'type' => MENU_SUGGESTED_ITEM,
@@ -109,7 +109,7 @@ function filter_menu($may_cache) {
           'access' => user_access('administer filters'),
         );
         $items[] = array('path' => 'admin/settings/filters/'. arg(3) .'/list',
-          'title' => t('view'),
+          'title' => t('View'),
           'callback' => 'drupal_get_form',
           'callback arguments' => array('filter_admin_format_form', $formats[arg(3)]),
           'type' => MENU_DEFAULT_LOCAL_TASK,
@@ -117,7 +117,7 @@ function filter_menu($may_cache) {
           'access' => user_access('administer filters'),
         );
         $items[] = array('path' => 'admin/settings/filters/'. arg(3) .'/configure',
-          'title' => t('configure'),
+          'title' => t('Configure'),
           'callback' => 'drupal_get_form',
           'callback arguments' => array('filter_admin_configure'),
           'type' => MENU_LOCAL_TASK,
@@ -125,7 +125,7 @@ function filter_menu($may_cache) {
           'access' => user_access('administer filters'),
         );
         $items[] = array('path' => 'admin/settings/filters/'. arg(3) .'/order',
-          'title' => t('rearrange'),
+          'title' => t('Rearrange'),
           'callback' => 'drupal_get_form',
           'callback arguments' => array('filter_admin_order', 'format' => $formats[arg(3)]),
           'type' => MENU_LOCAL_TASK,
Index: modules/forum/forum.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/forum/forum.module,v
retrieving revision 1.361
diff -u -F^f -r1.361 forum.module
--- modules/forum/forum.module	23 Sep 2006 08:10:40 -0000	1.361
+++ modules/forum/forum.module	3 Oct 2006 22:47:39 -0000
@@ -42,38 +42,38 @@ function forum_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array('path' => 'node/add/forum',
-      'title' => t('forum topic'),
+      'title' => t('Forum Topic'),
       'access' => user_access('create forum topics'));
     $items[] = array('path' => 'forum',
-      'title' => t('forums'),
+      'title' => t('Forums'),
       'callback' => 'forum_page',
       'access' => user_access('access content'),
       'type' => MENU_SUGGESTED_ITEM);
     $items[] = array('path' => 'admin/content/forum',
-      'title' => t('forums'),
+      'title' => t('Forums'),
       'description' => t('Control forums and their hierarchy and change forum settings.'),
       'callback' => 'forum_overview',
       'access' => user_access('administer forums'),
       'type' => MENU_NORMAL_ITEM);
     $items[] = array('path' => 'admin/content/forum/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'access' => user_access('administer forums'),
       'type' => MENU_DEFAULT_LOCAL_TASK,
       'weight' => -10);
     $items[] = array('path' => 'admin/content/forum/add/container',
-      'title' => t('add container'),
+      'title' => t('Add Container'),
       'callback' => 'forum_form_main',
       'callback arguments' => array('container'),
       'access' => user_access('administer forums'),
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/content/forum/add/forum',
-      'title' => t('add forum'),
+      'title' => t('Add Forum'),
       'callback' => 'forum_form_main',
       'callback arguments' => array('forum'),
       'access' => user_access('administer forums'),
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/content/forum/settings',
-      'title' => t('settings'),
+      'title' => t('Settings'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('forum_admin_settings'),
       'weight' => 5,
@@ -85,13 +85,13 @@ function forum_menu($may_cache) {
     // Check if this is a valid term.
     if ($term) {
       $items[] = array('path' => 'admin/content/forum/edit/container',
-        'title' => t('edit container'),
+        'title' => t('Edit Container'),
         'callback' => 'forum_form_main',
         'callback arguments' => array('container', (array)$term),
         'access' => user_access('administer forums'),
         'type' => MENU_CALLBACK);
       $items[] = array('path' => 'admin/content/forum/edit/forum',
-        'title' => t('edit forum'),
+        'title' => t('Edit Forum'),
         'callback' => 'forum_form_main',
         'callback arguments' => array('forum', (array)$term),
         'access' => user_access('administer forums'),
Index: modules/help/help.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/help/help.module,v
retrieving revision 1.59
diff -u -F^f -r1.59 help.module
--- modules/help/help.module	1 Sep 2006 07:32:57 -0000	1.59
+++ modules/help/help.module	3 Oct 2006 22:47:39 -0000
@@ -15,7 +15,7 @@ function help_menu($may_cache) {
   if ($may_cache) {
     $admin_access = user_access('access administration pages');
 
-    $items[] = array('path' => 'admin/help', 'title' => t('help'),
+    $items[] = array('path' => 'admin/help', 'title' => t('Help'),
       'callback' => 'help_main',
       'access' => $admin_access,
       'weight' => 9);
Index: modules/legacy/legacy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/legacy/legacy.module,v
retrieving revision 1.13
diff -u -F^f -r1.13 legacy.module
--- modules/legacy/legacy.module	31 Aug 2006 20:22:35 -0000	1.13
+++ modules/legacy/legacy.module	3 Oct 2006 22:47:39 -0000
@@ -40,35 +40,35 @@ function legacy_menu($may_cache) {
 
   if ($may_cache) {
     // Map "taxonomy/page/or/52,97" to "taxonomy/term/52+97".
-    $items[] = array('path' => 'taxonomy/page', 'title' => t('taxonomy'),
+    $items[] = array('path' => 'taxonomy/page', 'title' => t('Taxonomy'),
       'callback' => 'legacy_taxonomy_page',
       'access' => TRUE, 'type' => MENU_CALLBACK);
 
     // Map "taxonomy/feed/or/52,97" to "taxonomy/term/52+97/0/feed".
-    $items[] = array('path' => 'taxonomy/feed', 'title' => t('taxonomy'),
+    $items[] = array('path' => 'taxonomy/feed', 'title' => t('Taxonomy'),
       'callback' => 'legacy_taxonomy_feed',
       'access' => TRUE, 'type' => MENU_CALLBACK);
 
     // Map "blog/feed/52" to "blog/52/feed".
-    $items[] = array('path' => 'blog/feed', 'title' => t('blog'),
+    $items[] = array('path' => 'blog/feed', 'title' => t('Blog'),
       'callback' => 'legacy_blog_feed',
       'access' => TRUE, 'type' => MENU_CALLBACK);
   }
   else {
     // Map "node/view/52" to "node/52".
-    $items[] = array('path' => 'node/view', 'title' => t('view'),
+    $items[] = array('path' => 'node/view', 'title' => t('View'),
       'callback' => 'drupal_goto',
       'callback arguments' => array('node/'. arg(2), NULL, NULL),
       'access' => TRUE, 'type' => MENU_CALLBACK);
 
     // Map "book/view/52" to "node/52".
-    $items[] = array('path' => 'book/view', 'title' => t('view'),
+    $items[] = array('path' => 'book/view', 'title' => t('View'),
       'callback' => 'drupal_goto',
       'callback arguments' => array('node/'. arg(2), NULL, NULL),
       'access' => TRUE, 'type' => MENU_CALLBACK);
 
     // Map "user/view/52" to "user/52".
-    $items[] = array('path' => 'user/view', 'title' => t('view'),
+    $items[] = array('path' => 'user/view', 'title' => t('View'),
       'callback' => 'drupal_goto',
       'callback arguments' => array('user/'. arg(2), NULL, NULL),
       'access' => TRUE, 'type' => MENU_CALLBACK);
Index: modules/locale/locale.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/locale/locale.module,v
retrieving revision 1.145
diff -u -F^f -r1.145 locale.module
--- modules/locale/locale.module	31 Aug 2006 20:22:35 -0000	1.145
+++ modules/locale/locale.module	3 Oct 2006 22:47:39 -0000
@@ -57,19 +57,19 @@ function locale_menu($may_cache) {
   if ($may_cache) {
     // Main admin menu item
     $items[] = array('path' => 'admin/settings/locale',
-      'title' => t('localization'),
+      'title' => t('Localization'),
       'description' => t('Configure site localization and user interface translation.'),
       'callback' => 'locale_admin_manage',
       'access' => $access);
 
     // Top level tabs
     $items[] = array('path' => 'admin/settings/locale/language',
-      'title' => t('manage languages'),
+      'title' => t('Manage Languages'),
       'access' => $access,
       'weight' => -10,
       'type' => MENU_DEFAULT_LOCAL_TASK);
     $items[] = array('path' => 'admin/settings/locale/string/search',
-      'title' => t('manage strings'),
+      'title' => t('Manage Strings'),
       'callback' => 'locale_string_search',
       'access' => $access,
       'weight' => 10,
@@ -77,25 +77,25 @@ function locale_menu($may_cache) {
 
     // Manage languages subtabs
     $items[] = array('path' => 'admin/settings/locale/language/overview',
-      'title' => t('list'),
+      'title' => t('List'),
       'callback' => 'locale_admin_manage',
       'access' => $access,
       'weight' => 0,
       'type' => MENU_DEFAULT_LOCAL_TASK);
     $items[] = array('path' => 'admin/settings/locale/language/add',
-      'title' => t('add language'),
+      'title' => t('Add Language'),
       'callback' => 'locale_admin_manage_add',
       'access' => $access,
       'weight' => 5,
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/settings/locale/language/import',
-      'title' => t('import'),
+      'title' => t('Import'),
       'callback' => 'locale_admin_import',
       'access' => $access,
       'weight' => 10,
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/settings/locale/language/export',
-      'title' => t('export'),
+      'title' => t('Export'),
       'callback' => 'locale_admin_export',
       'access' => $access,
       'weight' => 20,
@@ -103,7 +103,7 @@ function locale_menu($may_cache) {
 
     // Language related callbacks
     $items[] = array('path' => 'admin/settings/locale/language/delete',
-      'title' => t('confirm'),
+      'title' => t('Confirm'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('locale_admin_manage_delete_form'),
       'access' => $access,
@@ -117,13 +117,13 @@ function locale_menu($may_cache) {
     if (is_numeric(arg(4))) {
       // String related callbacks
       $items[] = array('path' => 'admin/settings/locale/string/edit/'. arg(4),
-        'title' => t('edit string'),
+        'title' => t('Edit String'),
         'callback' => 'locale_admin_string_edit',
         'callback arguments' => arg(4),
         'access' => $access,
         'type' => MENU_CALLBACK);
       $items[] = array('path' => 'admin/settings/locale/string/delete/'. arg(4),
-        'title' => t('delete string'),
+        'title' => t('Delete String'),
         'callback' => 'locale_admin_string_delete',
         'callback arguments' => arg(4),
         'access' => $access,
Index: modules/menu/menu.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/menu/menu.module,v
retrieving revision 1.90
diff -u -F^f -r1.90 menu.module
--- modules/menu/menu.module	17 Sep 2006 19:17:24 -0000	1.90
+++ modules/menu/menu.module	3 Oct 2006 22:47:39 -0000
@@ -48,66 +48,66 @@ function menu_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array('path' => 'admin/build/menu',
-      'title' => t('menus'),
+      'title' => t('Menus'),
       'description' => t('Control your site\'s navigation menu, create menu blocks, as well as rename and reorganize menu items.'),
       'callback' => 'menu_overview',
       'access' => user_access('administer menu'));
     $items[] = array('path' => 'admin/build/menu/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK,
       'weight' => -10);
 
     $items[] = array('path' => 'admin/build/menu/item/add',
-      'title' => t('add menu item'),
+      'title' => t('Add Menu Item'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_edit_item_form', 'add'),
       'access' => user_access('administer menu'),
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/build/menu/item/edit',
-      'title' => t('edit menu item'),
+      'title' => t('Edit Menu Item'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_edit_item_form', 'edit'),
       'access' => user_access('administer menu'),
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/build/menu/item/reset',
-      'title' => t('reset menu item'),
+      'title' => t('Reset Menu Item'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_reset_item'),
       'access' => user_access('administer menu'),
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/build/menu/item/disable',
-      'title' => t('disable menu item'),
+      'title' => t('Disable Menu Item'),
       'callback' => 'menu_disable_item',
       'access' => user_access('administer menu'),
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/build/menu/item/delete',
-      'title' => t('delete menu item'),
+      'title' => t('Delete Menu Item'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_item_delete_form'),
       'access' => user_access('administer menu'),
       'type' => MENU_CALLBACK);
 
     $items[] = array('path' => 'admin/build/menu/menu/add',
-      'title' => t('add menu'),
+      'title' => t('Add Menu'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_edit_menu_form', 'add'),
       'access' => user_access('administer menu'),
       'type' => MENU_LOCAL_TASK);
     $items[] = array('path' => 'admin/build/menu/menu/edit',
-      'title' => t('edit menu'),
+      'title' => t('Edit Menu'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_edit_menu_form', 'edit'),
       'access' => user_access('administer menu'),
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/build/menu/menu/delete',
-      'title' => t('delete menu'),
+      'title' => t('Delete Menu'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_item_delete_form'),
       'access' => user_access('administer menu'),
       'type' => MENU_CALLBACK);
 
     $items[] = array('path' => 'admin/build/menu/settings',
-      'title' => t('settings'),
+      'title' => t('Settings'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('menu_configure'),
       'type' => MENU_LOCAL_TASK,
Index: modules/node/node.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/node.module,v
retrieving revision 1.701
diff -u -F^f -r1.701 node.module
--- modules/node/node.module	16 Sep 2006 05:35:57 -0000	1.701
+++ modules/node/node.module	3 Oct 2006 22:47:40 -0000
@@ -71,7 +71,7 @@ function node_cron() {
  */
 function node_title_list($result, $title = NULL) {
   while ($node = db_fetch_object($result)) {
-    $items[] = l($node->title, 'node/'. $node->nid, $node->comment_count ? array('title' => format_plural($node->comment_count, '1 comment', '@count comments')) : '');
+    $items[] = l($node->title, 'node/'. $node->nid, $node->comment_count ? array('title' => format_plural($node->comment_count, '1 Comment', '@count Comments')) : '');
   }
 
   return theme('node_list', $items, $title);
@@ -970,7 +970,7 @@ function node_link($type, $node = NULL, 
   if ($type == 'node') {
     if ($teaser == 1 && $node->teaser && $node->readmore) {
       $links['node_read_more'] = array(
-        'title' => t('read more'),
+        'title' => t('Read More'),
         'href' => "node/$node->nid",
         'attributes' => array('title' => t('Read the rest of this posting.'))
       );
@@ -987,7 +987,7 @@ function node_menu($may_cache) {
   $items = array();
   if ($may_cache) {
     $items[] = array('path' => 'admin/content',
-      'title' => t('content management'),
+      'title' => t('Content Management'),
       'description' => t('Manage your site\'s content.'),
       'position' => 'left',
       'weight' => -10,
@@ -997,17 +997,17 @@ function node_menu($may_cache) {
 
     $items[] = array(
       'path' => 'admin/content/node',
-      'title' => t('posts'),
+      'title' => t('Posts'),
       'description' => t('View, edit, and delete your site\'s content.'),
       'callback' => 'node_admin_content',
       'access' => user_access('administer nodes')
     );
 
-    $items[] = array('path' => 'admin/content/node/overview', 'title' => t('list'),
+    $items[] = array('path' => 'admin/content/node/overview', 'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
 
     if (module_exists('search')) {
-      $items[] = array('path' => 'admin/content/search', 'title' => t('search posts'),
+      $items[] = array('path' => 'admin/content/search', 'title' => t('Search Posts'),
         'description' => t('Search posts by keyword.'),
         'callback' => 'node_admin_search',
         'access' => user_access('administer nodes'),
@@ -1016,7 +1016,7 @@ function node_menu($may_cache) {
 
     $items[] = array(
       'path' => 'admin/content/node-settings',
-      'title' => t('post settings'),
+      'title' => t('Post Settings'),
       'description' => t('Control posting behavior, such as teaser length, requiring previews before posting, and the number of posts on the front page.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('node_configure'),
@@ -1025,36 +1025,36 @@ function node_menu($may_cache) {
 
     $items[] = array(
       'path' => 'admin/content/types',
-      'title' => t('content types'),
+      'title' => t('Content Types'),
       'description' => t('Manage posts by content type, including default status, front page promotion, etc.'),
       'callback' => 'node_overview_types',
       'access' => user_access('administer nodes'),
     );
     $items[] = array(
       'path' => 'admin/content/types/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK,
       'weight' => -10,
     );
     $items[] = array(
       'path' => 'admin/content/types/add',
-      'title' => t('add content type'),
+      'title' => t('Add Content Type'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('node_type_form'),
       'type' => MENU_LOCAL_TASK,
     );
     $items[] = array('path' => 'node',
-      'title' => t('content'),
+      'title' => t('Content'),
       'callback' => 'node_page_default',
       'access' => user_access('access content'),
       'type' => MENU_MODIFIABLE_BY_ADMIN);
     $items[] = array('path' => 'node/add',
-      'title' => t('create content'),
+      'title' => t('Create Content'),
       'callback' => 'node_add',
       'access' => user_access('access content'),
       'type' => MENU_ITEM_GROUPING,
       'weight' => 1);
-    $items[] = array('path' => 'rss.xml', 'title' => t('rss feed'),
+    $items[] = array('path' => 'rss.xml', 'title' => t('RSS Feed'),
       'callback' => 'node_feed',
       'access' => user_access('access content'),
       'type' => MENU_CALLBACK);
@@ -1079,28 +1079,28 @@ function node_menu($may_cache) {
     if (arg(0) == 'node' && is_numeric(arg(1))) {
       $node = node_load(arg(1));
       if ($node->nid) {
-        $items[] = array('path' => 'node/'. arg(1), 'title' => t('view'),
+        $items[] = array('path' => 'node/'. arg(1), 'title' => t('View'),
           'callback' => 'node_page_view',
           'callback arguments' => array($node),
           'access' => node_access('view', $node),
           'type' => MENU_CALLBACK);
-        $items[] = array('path' => 'node/'. arg(1) .'/view', 'title' => t('view'),
+        $items[] = array('path' => 'node/'. arg(1) .'/view', 'title' => t('View'),
           'type' => MENU_DEFAULT_LOCAL_TASK,
           'weight' => -10);
-        $items[] = array('path' => 'node/'. arg(1) .'/edit', 'title' => t('edit'),
+        $items[] = array('path' => 'node/'. arg(1) .'/edit', 'title' => t('Edit'),
           'callback' => 'node_page_edit',
           'callback arguments' => array($node),
           'access' => node_access('update', $node),
           'weight' => 1,
           'type' => MENU_LOCAL_TASK);
-        $items[] = array('path' => 'node/'. arg(1) .'/delete', 'title' => t('delete'),
+        $items[] = array('path' => 'node/'. arg(1) .'/delete', 'title' => t('Delete'),
           'callback' => 'drupal_get_form',
           'callback arguments' => array('node_delete_confirm'),
           'access' => node_access('delete', $node),
           'weight' => 1,
           'type' => MENU_CALLBACK);
         $revisions_access = ((user_access('view revisions') || user_access('administer nodes')) && node_access('view', $node) && db_result(db_query('SELECT COUNT(vid) FROM {node_revisions} WHERE nid = %d', arg(1))) > 1);
-        $items[] = array('path' => 'node/'. arg(1) .'/revisions', 'title' => t('revisions'),
+        $items[] = array('path' => 'node/'. arg(1) .'/revisions', 'title' => t('Revisions'),
           'callback' => 'node_revisions',
           'access' => $revisions_access,
           'weight' => 2,
@@ -1130,7 +1130,7 @@ function node_menu($may_cache) {
           );
           $items[] = array(
             'path' => 'admin/content/types/'. $type_url_str .'/delete',
-            'title' => t('delete'),
+            'title' => t('Delete'),
             'callback' => 'drupal_get_form',
             'callback arguments' => array('node_type_delete_confirm', $type),
             'type' => MENU_CALLBACK,
@@ -1141,7 +1141,7 @@ function node_menu($may_cache) {
 
     // There is no need to rebuild node_access if there is only 1 record in the table (the default configuration).
     if (db_result(db_query('SELECT COUNT(*) FROM {node_access}')) > 1) {
-      $items[] = array('path' => 'admin/settings/node-access', 'title' => t('node access'),
+      $items[] = array('path' => 'admin/settings/node-access', 'title' => t('Node Access'),
         'callback' => 'node_access_rebuild',
         'access' => user_access('administer nodes'));
     }
@@ -1227,14 +1227,14 @@ function node_operations_unpublish($node
  */
 function node_filters() {
   // Regular filters
-  $filters['status'] = array('title' => t('status'),
+  $filters['status'] = array('title' => t('Status'),
     'options' => array('status-1'   => t('published'),     'status-0' => t('not published'),
                        'promote-1'  => t('promoted'),      'promote-0' => t('not promoted'),
                        'sticky-1'   => t('sticky'),        'sticky-0' => t('not sticky')));
-  $filters['type'] = array('title' => t('type'), 'options' => node_get_types('names'));
+  $filters['type'] = array('title' => t('Type'), 'options' => node_get_types('names'));
   // The taxonomy filter
   if ($taxonomy = module_invoke('taxonomy', 'form_all', 1)) {
-    $filters['category'] = array('title' => t('category'), 'options' => $taxonomy);
+    $filters['category'] = array('title' => t('Category'), 'options' => $taxonomy);
   }
 
   return $filters;
Index: modules/path/path.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/path/path.module,v
retrieving revision 1.96
diff -u -F^f -r1.96 path.module
--- modules/path/path.module	8 Sep 2006 16:33:02 -0000	1.96
+++ modules/path/path.module	3 Oct 2006 22:47:40 -0000
@@ -48,23 +48,23 @@ function path_menu($may_cache) {
   $items = array();
 
   if ($may_cache) {
-    $items[] = array('path' => 'admin/build/path', 'title' => t('url aliases'),
+    $items[] = array('path' => 'admin/build/path', 'title' => t('Url Aliases'),
       'description' => t('Change your site\'s URL paths by aliasing them.'),
       'callback' => 'path_admin',
       'access' => user_access('administer url aliases'));
-    $items[] = array('path' => 'admin/build/path/edit', 'title' => t('edit alias'),
+    $items[] = array('path' => 'admin/build/path/edit', 'title' => t('Edit Alias'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('path_admin_edit'),
       'access' => user_access('administer url aliases'),
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/build/path/delete', 'title' => t('delete alias'),
+    $items[] = array('path' => 'admin/build/path/delete', 'title' => t('Delete Alias'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('path_admin_delete_confirm'),
       'access' => user_access('administer url aliases'),
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/build/path/list', 'title' => t('list'),
+    $items[] = array('path' => 'admin/build/path/list', 'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
-    $items[] = array('path' => 'admin/build/path/add', 'title' => t('add alias'),
+    $items[] = array('path' => 'admin/build/path/add', 'title' => t('Add Alias'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('path_admin_edit'),
       'access' => user_access('administer url aliases'),
Index: modules/poll/poll.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.module,v
retrieving revision 1.217
diff -u -F^f -r1.217 poll.module
--- modules/poll/poll.module	23 Sep 2006 07:43:30 -0000	1.217
+++ modules/poll/poll.module	3 Oct 2006 22:47:40 -0000
@@ -237,21 +237,21 @@ function poll_menu($may_cache) {
   $items = array();
 
   if ($may_cache) {
-    $items[] = array('path' => 'node/add/poll', 'title' => t('poll'),
+    $items[] = array('path' => 'node/add/poll', 'title' => t('Poll'),
       'access' => user_access('create polls'));
-    $items[] = array('path' => 'poll', 'title' => t('polls'),
+    $items[] = array('path' => 'poll', 'title' => t('Polls'),
       'callback' => 'poll_page',
       'access' => user_access('access content'),
       'type' => MENU_SUGGESTED_ITEM);
 
     $items[] = array('path' => 'poll/vote',
-      'title' => t('vote'),
+      'title' => t('Vote'),
       'callback' => 'poll_vote',
       'access' => user_access('vote on polls'),
       'type' => MENU_CALLBACK);
 
     $items[] = array('path' => 'poll/cancel',
-      'title' => t('cancel'),
+      'title' => t('Cancel'),
       'callback' => 'poll_cancel',
       'access' => user_access('cancel own vote'),
       'type' => MENU_CALLBACK);
@@ -265,7 +265,7 @@ function poll_menu($may_cache) {
       $node = node_load(arg(1));
       if ($node->type == 'poll') {
         $items[] = array('path' => 'node/'. arg(1) .'/votes',
-          'title' => t('votes'),
+          'title' => t('Votes'),
           'callback' => 'poll_votes',
           'access' => user_access('inspect all votes'),
           'weight' => 3,
@@ -273,7 +273,7 @@ function poll_menu($may_cache) {
       }
       if ($node->type == 'poll' && $node->allowvotes) {
         $items[] = array('path' => 'node/'. arg(1) .'/results',
-          'title' => t('results'),
+          'title' => t('Results'),
           'callback' => 'poll_results',
           'access' => user_access('access content'),
           'weight' => 3,
Index: modules/profile/profile.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/profile/profile.module,v
retrieving revision 1.170
diff -u -F^f -r1.170 profile.module
--- modules/profile/profile.module	9 Sep 2006 08:25:24 -0000	1.170
+++ modules/profile/profile.module	3 Oct 2006 22:47:40 -0000
@@ -53,35 +53,35 @@ function profile_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array('path' => 'profile',
-      'title' => t('user list'),
+      'title' => t('User List'),
       'callback' => 'profile_browse',
       'access' => user_access('access user profiles'),
       'type' => MENU_SUGGESTED_ITEM);
     $items[] = array('path' => 'admin/user/profile',
-      'title' => t('profiles'),
+      'title' => t('Profiles'),
       'description' => t('Create customizable fields for your users.'),
       'callback' => 'profile_admin_overview');
     $items[] = array('path' => 'admin/user/profile/add',
-      'title' => t('add field'),
+      'title' => t('Add Field'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('profile_field_form'),
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/user/profile/autocomplete',
-      'title' => t('profile category autocomplete'),
+      'title' => t('Profile Category Autocomplete'),
       'callback' => 'profile_admin_settings_autocomplete',
       'access' => user_access('administer users'),
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/user/profile/edit',
-      'title' => t('edit field'),
+      'title' => t('Edit Field'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('profile_field_form'),
       'type' => MENU_CALLBACK);
     $items[] = array('path' => 'admin/user/profile/delete',
-      'title' => t('delete field'),
+      'title' => t('Delete Field'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('profile_field_delete'),
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'profile/autocomplete', 'title' => t('profile autocomplete'),
+    $items[] = array('path' => 'profile/autocomplete', 'title' => t('Profile Autocomplete'),
       'callback' => 'profile_autocomplete',
       'access' => 1,
       'type' => MENU_CALLBACK);
Index: modules/search/search.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/search/search.module,v
retrieving revision 1.198
diff -u -F^f -r1.198 search.module
--- modules/search/search.module	17 Sep 2006 19:14:15 -0000	1.198
+++ modules/search/search.module	3 Oct 2006 22:47:40 -0000
@@ -150,25 +150,25 @@ function search_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array('path' => 'search',
-      'title' => t('search settings'),
+      'title' => t('Search Settings'),
       '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'),
+      'title' => t('Search'),
       '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'));
Index: modules/statistics/statistics.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/statistics/statistics.module,v
retrieving revision 1.241
diff -u -F^f -r1.241 statistics.module
--- modules/statistics/statistics.module	31 Aug 2006 21:58:36 -0000	1.241
+++ modules/statistics/statistics.module	3 Oct 2006 22:47:40 -0000
@@ -114,40 +114,40 @@ function statistics_menu($may_cache) {
   if ($may_cache) {
     $items[] = array(
       'path' => 'admin/logs/hits',
-      'title' => t('recent hits'),
+      'title' => t('Recent Hits'),
       'description' => t('View pages that have recently been visited.'),
       'callback' => 'statistics_recent_hits',
       'access' => $access);
     $items[] = array(
       'path' => 'admin/logs/pages',
-      'title' => t('top pages'),
+      'title' => t('Top Pages'),
       'description' => t('View pages that have been hit frequently.'),
       'callback' => 'statistics_top_pages',
       'access' => $access,
       'weight' => 1);
     $items[] = array(
       'path' => 'admin/logs/visitors',
-      'title' => t('top visitors'),
+      'title' => t('Top Visitors'),
       'description' => t('View visitors that hit many pages.'),
       'callback' => 'statistics_top_visitors',
       'access' => $access,
       'weight' => 2);
     $items[] = array(
       'path' => 'admin/logs/referrers',
-      'title' => t('top referrers'),
+      'title' => t('Top Referrers'),
       'description' => t('View top referrers.'),
       'callback' => 'statistics_top_referrers',
       'access' => $access);
     $items[] = array(
       'path' => 'admin/logs/access',
-      'title' => t('details'),
+      'title' => t('Details'),
       'description' => t('View access log.'),
       'callback' => 'statistics_access_log',
       'access' => $access,
       'type' => MENU_CALLBACK);
     $items[] = array(
       'path' => 'admin/logs/settings',
-      'title' => t('access log settings'),
+      'title' => t('Access Log Settings'),
       'description' => t('Control details about what and how your site logs.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('statistics_access_logging_settings'),
@@ -159,7 +159,7 @@ function statistics_menu($may_cache) {
     if (arg(0) == 'user' && is_numeric(arg(1)) && variable_get('statistics_enable_access_log', 0)) {
       $items[] = array(
         'path' => 'user/'. arg(1) .'/track/navigation',
-        'title' => t('track page visits'),
+        'title' => t('Track Page Visits'),
         'callback' => 'statistics_user_tracker',
         'access' => $access,
         'type' => MENU_LOCAL_TASK,
@@ -168,7 +168,7 @@ function statistics_menu($may_cache) {
     if (arg(0) == 'node' && is_numeric(arg(1)) && variable_get('statistics_enable_access_log', 0)) {
       $items[] = array(
         'path' => 'node/'. arg(1) .'/track',
-        'title' => t('track'),
+        'title' => t('Track'),
         'callback' => 'statistics_node_tracker',
         'access' => $access,
         'type' => MENU_LOCAL_TASK,
Index: modules/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.373
diff -u -F^f -r1.373 system.module
--- modules/system/system.module	3 Oct 2006 20:38:07 -0000	1.373
+++ modules/system/system.module	3 Oct 2006 22:47:40 -0000
@@ -101,25 +101,25 @@ function system_menu($may_cache) {
   $items = array();
 
   if ($may_cache) {
-    $items[] = array('path' => 'system/files', 'title' => t('file download'),
+    $items[] = array('path' => 'system/files', 'title' => t('File Download'),
       'callback' => 'file_download',
       'access' => TRUE,
       'type' => MENU_CALLBACK);
 
     $access = user_access('administer site configuration');
 
-    $items[] = array('path' => 'admin', 'title' => t('administer'),
+    $items[] = array('path' => 'admin', 'title' => t('Administer'),
       'access' => user_access('access administration pages'),
       'callback' => 'system_main_admin_page',
       'weight' => 9);
-    $items[] = array('path' => 'admin/compact', 'title' => t('compact mode'),
+    $items[] = array('path' => 'admin/compact', 'title' => t('Compact Mode'),
       'access' => user_access('access administration pages'),
       'callback' => 'system_admin_compact_page',
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/by-task', 'title' => t('by task'),
+    $items[] = array('path' => 'admin/by-task', 'title' => t('By Task'),
       'callback' => 'system_main_admin_page',
       'type' => MENU_DEFAULT_LOCAL_TASK);
-    $items[] = array('path' => 'admin/by-module', 'title' => t('by module'),
+    $items[] = array('path' => 'admin/by-module', 'title' => t('By Module'),
       'callback' => 'system_admin_by_module',
       'type' => MENU_LOCAL_TASK,
       'weight' => 2);
@@ -127,7 +127,7 @@ function system_menu($may_cache) {
     // menu items that are basically just menu blocks
     $items[] = array(
       'path' => 'admin/settings',
-      'title' => t('site configuration'),
+      'title' => t('Site Configuration'),
       'description' => t('Adjust basic site configuration options.'),
       'position' => 'right',
       'weight' => -5,
@@ -135,7 +135,7 @@ function system_menu($may_cache) {
       'access' => $access);
 
     $items[] = array('path' => 'admin/build',
-      'title' => t('site building'),
+      'title' => t('Site Building'),
       'description' => t('Control how your site looks and feels.'),
       'position' => 'right',
       'weight' => -10,
@@ -144,7 +144,7 @@ function system_menu($may_cache) {
 
     $items[] = array(
       'path' => 'admin/settings/admin',
-      'title' => t('administration theme'),
+      'title' => t('Administration Theme'),
       'description' => t('Settings for how your administrative pages should look.'),
       'position' => 'left',
       'callback' => 'drupal_get_form',
@@ -155,7 +155,7 @@ function system_menu($may_cache) {
     // Themes:
     $items[] = array(
       'path' => 'admin/build/themes',
-      'title' => t('themes'),
+      'title' => t('Themes'),
       'description' => t('Change which theme your site uses or allows users to set.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_themes'),
@@ -163,7 +163,7 @@ function system_menu($may_cache) {
 
     $items[] = array(
       'path' => 'admin/build/themes/select',
-      'title' => t('list'),
+      'title' => t('List'),
       'description' => t('Select the default theme.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_themes'),
@@ -172,14 +172,14 @@ function system_menu($may_cache) {
       'weight' => -1);
 
     $items[] = array('path' => 'admin/build/themes/settings',
-      'title' => t('configure'),
+      'title' => t('Configure'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_theme_settings'),
       'access' => $access,
       'type' => MENU_LOCAL_TASK);
 
     // Theme configuration subtabs
-    $items[] = array('path' => 'admin/build/themes/settings/global', 'title' => t('global settings'),
+    $items[] = array('path' => 'admin/build/themes/settings/global', 'title' => t('Global Settings'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_theme_settings'),
       'access' => $access,
@@ -196,7 +196,7 @@ function system_menu($may_cache) {
 
     // Modules:
     $items[] = array('path' => 'admin/build/modules',
-      'title' => t('modules'),
+      'title' => t('Modules'),
       'description' => t('Enable or disable add-on modules for your site.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_modules'),
@@ -205,55 +205,55 @@ function system_menu($may_cache) {
     // Settings:
     $items[] = array(
       'path' => 'admin/settings/site-information',
-      'title' => t('site information'),
+      'title' => t('Site Information'),
       'description' => t('Change basic site information, such as the site name, slogan, e-mail address, mission, front page and more.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_site_information_settings'));
     $items[] = array(
       'path' => 'admin/settings/error-reporting',
-      'title' => t('error reporting'),
+      'title' => t('Error Reporting'),
       'description' => t('Control how Drupal deals with errors including 403/404 errors as well as PHP error reporting.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_error_reporting_settings'));
     $items[] = array(
       'path' => 'admin/settings/page-caching',
-      'title' => t('page caching'),
+      'title' => t('Page Caching'),
       'description' => t('Enable or disable page caching for anonymous users.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_page_caching_settings'));
     $items[] = array(
       'path' => 'admin/settings/file-system',
-      'title' => t('file system'),
+      'title' => t('File System'),
       'description' => t('Tell Drupal where to store uploaded files and how they are accessed.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_file_system_settings'));
     $items[] = array(
       'path' => 'admin/settings/image-toolkit',
-      'title' => t('image toolkit'),
+      'title' => t('Image Toolkit'),
       'description' => t('Choose which image toolkit to use if you have installed optional toolkits.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_image_toolkit_settings'));
     $items[] = array(
       'path' => 'admin/content/rss-feed',
-      'title' => t('RSS feeds'),
+      'title' => t('RSS Feeds'),
       'description' => t('Configure the number of items per feed and whether feeds should be titles/teasers/full-text.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_rss_feeds_settings'));
     $items[] = array(
       'path' => 'admin/settings/date-time',
-      'title' => t('date and time'),
+      'title' => t('Date and Time'),
       'description' => t('Settings for how Drupal displays date and time, as well as the system\'s default timezone.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_date_time_settings'));
     $items[] = array(
       'path' => 'admin/settings/site-maintenance',
-      'title' => t('site maintenance'),
+      'title' => t('Site Maintenance'),
       'description' => t('Take the site off-line for maintenance or bring it back online.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_site_maintenance_settings'));
     $items[] = array(
       'path' => 'admin/settings/clean-urls',
-      'title' => t('clean URLs'),
+      'title' => t('Clean URLs'),
       'description' => t('Enable or disable clean URLs for your site.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('system_clean_url_settings'));
@@ -262,21 +262,21 @@ function system_menu($may_cache) {
     // Logs:
     $items[] = array(
       'path' => 'admin/logs',
-      'title' => t('logs'),
+      'title' => t('Logs'),
       'description' => t('View system logs and other status information.'),
       'callback' => 'system_admin_menu_block_page',
       'weight' => 5,
       'position' => 'left');
     $items[] = array(
       'path' => 'admin/logs/status',
-      'title' => t('status report'),
+      'title' => t('Status Report'),
       'description' => t('Get a status report about your site\'s operation and any detected problems.'),
       'callback' => 'system_status',
       'weight' => 10,
       'access' => $access);
     $items[] = array(
       'path' => 'admin/logs/status/run-cron',
-      'title' => t('run cron'),
+      'title' => t('Run Cron'),
       'callback' => 'system_run_cron',
       'type' => MENU_CALLBACK);
     $items[] = array(
@@ -320,9 +320,9 @@ function system_user($type, $edit, &$use
 
     if (variable_get('configurable_timezones', 1)) {
       $zones = _system_zonelist();
-      $form['timezone'] = array('#type'=>'fieldset', '#title' => t('Locale settings'), '#weight' => 6);
+      $form['timezone'] = array('#type'=>'fieldset', '#title' => t('Locale Settings'), '#weight' => 6);
       $form['timezone']['timezone'] = array(
-        '#type' => 'select', '#title' => t('Time zone'), '#default_value' => strlen($edit['timezone']) ? $edit['timezone'] : variable_get('date_default_timezone', 0),
+        '#type' => 'select', '#title' => t('Time Zone'), '#default_value' => strlen($edit['timezone']) ? $edit['timezone'] : variable_get('date_default_timezone', 0),
         '#options' => $zones, '#description' => t('Select your current local time. Dates and times throughout this site will be displayed using this time zone.')
       );
     }
Index: modules/taxonomy/taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.module,v
retrieving revision 1.317
diff -u -F^f -r1.317 taxonomy.module
--- modules/taxonomy/taxonomy.module	21 Sep 2006 15:31:24 -0000	1.317
+++ modules/taxonomy/taxonomy.module	3 Oct 2006 22:47:40 -0000
@@ -63,43 +63,43 @@ function taxonomy_menu($may_cache) {
 
   if ($may_cache) {
     $items[] = array('path' => 'admin/content/taxonomy',
-      'title' => t('categories'),
+      'title' => t('Categories'),
       'description' => t('Create vocabularies and terms to categorize your content.'),
       'callback' => 'taxonomy_overview_vocabularies',
       'access' => user_access('administer taxonomy'));
 
     $items[] = array('path' => 'admin/content/taxonomy/list',
-      'title' => t('list'),
+      'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK,
       'weight' => -10);
 
     $items[] = array('path' => 'admin/content/taxonomy/add/vocabulary',
-      'title' => t('add vocabulary'),
+      'title' => t('Add Vocabulary'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('taxonomy_form_vocabulary'),
       'access' => user_access('administer taxonomy'),
       'type' => MENU_LOCAL_TASK);
 
     $items[] = array('path' => 'admin/content/taxonomy/edit/vocabulary',
-      'title' => t('edit vocabulary'),
+      'title' => t('Edit Vocabulary'),
       'callback' => 'taxonomy_admin_vocabulary_edit',
       'access' => user_access('administer taxonomy'),
       'type' => MENU_CALLBACK);
 
     $items[] = array('path' => 'admin/content/taxonomy/edit/term',
-      'title' => t('edit term'),
+      'title' => t('Edit Term'),
       'callback' => 'taxonomy_admin_term_edit',
       'access' => user_access('administer taxonomy'),
       'type' => MENU_CALLBACK);
 
     $items[] = array('path' => 'taxonomy/term',
-      'title' => t('taxonomy term'),
+      'title' => t('Taxonomy Term'),
       'callback' => 'taxonomy_term_page',
       'access' => user_access('access content'),
       'type' => MENU_CALLBACK);
 
     $items[] = array('path' => 'taxonomy/autocomplete',
-      'title' => t('autocomplete taxonomy'),
+      'title' => t('Autocomplete Taxonomy'),
       'callback' => 'taxonomy_autocomplete',
       'access' => user_access('access content'),
       'type' => MENU_CALLBACK);
@@ -108,19 +108,19 @@ function taxonomy_menu($may_cache) {
     if (is_numeric(arg(3))) {
       $vid = arg(3);
       $items[] = array('path' => 'admin/content/taxonomy/'. $vid,
-        'title' => t('list terms'),
+        'title' => t('List Terms'),
         'callback' => 'taxonomy_overview_terms',
         'callback arguments' => array($vid),
         'access' => user_access('administer taxonomy'),
         'type' => MENU_CALLBACK);
 
       $items[] = array('path' => 'admin/content/taxonomy/'. $vid .'/list',
-        'title' => t('list'),
+        'title' => t('List'),
         'type' => MENU_DEFAULT_LOCAL_TASK,
         'weight' => -10);
 
       $items[] = array('path' => 'admin/content/taxonomy/'. $vid .'/add/term',
-        'title' => t('add term'),
+        'title' => t('Add Term'),
         'callback' => 'drupal_get_form',
         'callback arguments' => array('taxonomy_form_term', $vid),
         'access' => user_access('administer taxonomy'),
Index: modules/tracker/tracker.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/tracker/tracker.module,v
retrieving revision 1.136
diff -u -F^f -r1.136 tracker.module
--- modules/tracker/tracker.module	31 Aug 2006 20:22:36 -0000	1.136
+++ modules/tracker/tracker.module	3 Oct 2006 22:47:40 -0000
@@ -34,14 +34,14 @@ function tracker_menu($may_cache) {
   $items = array();
 
   if ($may_cache) {
-    $items[] = array('path' => 'tracker', 'title' => t('recent posts'),
+    $items[] = array('path' => 'tracker', 'title' => t('Recent Posts'),
       'callback' => 'tracker_page', 'access' => user_access('access content'),
       'weight' => 1);
 
     if ($user->uid) {
-      $items[] = array('path' => 'tracker/all', 'title' => t('all recent posts'),
+      $items[] = array('path' => 'tracker/all', 'title' => t('All Recent Posts'),
         'type' => MENU_DEFAULT_LOCAL_TASK);
-      $items[] = array('path' => 'tracker/'. $user->uid, 'title' => t('my recent posts'),
+      $items[] = array('path' => 'tracker/'. $user->uid, 'title' => t('My Recent Posts'),
         'type' => MENU_LOCAL_TASK);
     }
   }
@@ -51,10 +51,10 @@ function tracker_menu($may_cache) {
     drupal_add_css(drupal_get_path('module', 'tracker') .'/tracker.css');
 
     if (arg(0) == 'user' && is_numeric(arg(1))) {
-      $items[] = array('path' => 'user/'. arg(1) .'/track', 'title' => t('track'),
+      $items[] = array('path' => 'user/'. arg(1) .'/track', 'title' => t('Track'),
           'callback' => 'tracker_track_user', 'access' => user_access('access content'),
           'type' => MENU_IS_LOCAL_TASK);
-      $items[] = array('path' => 'user/'. arg(1) .'/track/posts', 'title' => t('track posts'),
+      $items[] = array('path' => 'user/'. arg(1) .'/track/posts', 'title' => t('Track Posts'),
           'type' => MENU_DEFAULT_LOCAL_TASK);
     }
   }
Index: modules/upload/upload.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/upload/upload.module,v
retrieving revision 1.132
diff -u -F^f -r1.132 upload.module
--- modules/upload/upload.module	26 Sep 2006 14:11:58 -0000	1.132
+++ modules/upload/upload.module	3 Oct 2006 22:47:40 -0000
@@ -77,7 +77,7 @@ function upload_menu($may_cache) {
       'type' => MENU_CALLBACK
     );
     $items[] = array('path' => 'admin/settings/uploads',
-      'title' => t('file uploads'),
+      'title' => t('File Uploads'),
       'description' => t('Control how files may be attached to content.'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('upload_admin_settings'),
@@ -98,7 +98,7 @@ function upload_menu($may_cache) {
         }
 
         $items[] = array(
-          'path' => $filename, 'title' => t('file download'),
+          'path' => $filename, 'title' => t('File Download'),
           'callback' => 'upload_download',
           'access' => user_access('view uploaded files'),
           'type' => MENU_CALLBACK
Index: modules/user/user.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/user/user.module,v
retrieving revision 1.684
diff -u -F^f -r1.684 user.module
--- modules/user/user.module	3 Oct 2006 14:09:48 -0000	1.684
+++ modules/user/user.module	3 Oct 2006 22:47:40 -0000
@@ -689,75 +689,75 @@ function user_menu($may_cache) {
   $view_access = user_access('access user profiles');
 
   if ($may_cache) {
-    $items[] = array('path' => 'user', 'title' => t('user account'),
+    $items[] = array('path' => 'user', 'title' => t('User Account'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_login'), 'access' => TRUE, 'type' => MENU_CALLBACK);
 
-    $items[] = array('path' => 'user/autocomplete', 'title' => t('user autocomplete'),
+    $items[] = array('path' => 'user/autocomplete', 'title' => t('User Autocomplete'),
       'callback' => 'user_autocomplete', 'access' => $view_access, 'type' => MENU_CALLBACK);
 
     // Registration and login pages.
     $items[] = array('path' => 'user/login', 'title' => t('log in'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_login'), 'type' => MENU_DEFAULT_LOCAL_TASK);
-    $items[] = array('path' => 'user/register', 'title' => t('create new account'),
+    $items[] = array('path' => 'user/register', 'title' => t('Create New Account'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_register'), 'access' => $user->uid == 0 && variable_get('user_register', 1), 'type' => MENU_LOCAL_TASK);
-    $items[] = array('path' => 'user/password', 'title' => t('request new password'),
+    $items[] = array('path' => 'user/password', 'title' => t('Request New {assword'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_pass'), 'access' => $user->uid == 0, 'type' => MENU_LOCAL_TASK);
-    $items[] = array('path' => 'user/reset', 'title' => t('reset password'),
+    $items[] = array('path' => 'user/reset', 'title' => t('Reset Password'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_pass_reset'), 'access' => TRUE, 'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'user/help', 'title' => t('help'),
+    $items[] = array('path' => 'user/help', 'title' => t('Help'),
       'callback' => 'user_help_page', 'type' => MENU_CALLBACK);
 
     // Admin user pages
     $items[] = array('path' => 'admin/user',
-      'title' => t('user management'),
+      'title' => t('User Management'),
       'description' => t('Manage your site\'s users, groups and access to site features.'),
       'position' => 'left',
       'callback' => 'system_admin_menu_block_page',
       'access' => user_access('access configuration pages'),
     );
-    $items[] = array('path' => 'admin/user/user', 'title' => t('users'),
-      'description' => t('List, add, and edit users.'),
+    $items[] = array('path' => 'admin/user/user', 'title' => t('Users'),
+      'description' => t('List, Add, and Edit Users.'),
       'callback' => 'user_admin', 'callback arguments' => array('list'), 'access' => $admin_access);
-    $items[] = array('path' => 'admin/user/user/list', 'title' => t('list'),
+    $items[] = array('path' => 'admin/user/user/list', 'title' => t('List'),
       'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
-    $items[] = array('path' => 'admin/user/user/create', 'title' => t('add user'),
+    $items[] = array('path' => 'admin/user/user/create', 'title' => t('Add User'),
       'callback' => 'user_admin', 'callback arguments' => array('create'), 'access' => $admin_access,
       'type' => MENU_LOCAL_TASK);
-    $items[] = array('path' => 'admin/user/settings', 'title' => t('user settings'),
+    $items[] = array('path' => 'admin/user/settings', 'title' => t('User Settings'),
       'description' => t('Configure default behavior of users, including registration requirements, e-mails, and user pictures.'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_admin_settings'));
 
     // Admin access pages
-    $items[] = array('path' => 'admin/user/access', 'title' => t('access control'),
+    $items[] = array('path' => 'admin/user/access', 'title' => t('Access Control'),
       'description' => t('Determine access to features by selecting permissions for roles.'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_admin_perm'), 'access' => $access_access);
-    $items[] = array('path' => 'admin/user/roles', 'title' => t('roles'),
+    $items[] = array('path' => 'admin/user/roles', 'title' => t('Roles'),
       'description' => t('List, edit, or add user roles.'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_admin_new_role'), 'access' => $access_access,
       'type' => MENU_NORMAL_ITEM);
-    $items[] = array('path' => 'admin/user/roles/edit', 'title' => t('edit role'),
+    $items[] = array('path' => 'admin/user/roles/edit', 'title' => t('Edit Role'),
        'callback' => 'drupal_get_form', 'callback arguments' => array('user_admin_role'), 'access' => $access_access,
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/user/rules', 'title' => t('access rules'),
+    $items[] = array('path' => 'admin/user/rules', 'title' => t('Access Rules'),
       'description' => t('List and create rules to disallow usernames, e-mail addresses, and IP addresses.'),
       'callback' => 'user_admin_access', 'access' => $access_access);
-    $items[] = array('path' => 'admin/user/rules/list', 'title' => t('list'),
+    $items[] = array('path' => 'admin/user/rules/list', 'title' => t('List'),
       'access' => $access_access, 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
-    $items[] = array('path' => 'admin/user/rules/add', 'title' => t('add rule'),
+    $items[] = array('path' => 'admin/user/rules/add', 'title' => t('Add Rule'),
       'callback' => 'user_admin_access_add', 'access' => $access_access,
       'type' => MENU_LOCAL_TASK);
-    $items[] = array('path' => 'admin/user/rules/check', 'title' => t('check rules'),
+    $items[] = array('path' => 'admin/user/rules/check', 'title' => t('Check Rules'),
       'callback' => 'user_admin_access_check', 'access' => $access_access,
       'type' => MENU_LOCAL_TASK);
-    $items[] = array('path' => 'admin/user/rules/edit', 'title' => t('edit rule'),
+    $items[] = array('path' => 'admin/user/rules/edit', 'title' => t('Edit Rule'),
       'callback' => 'user_admin_access_edit', 'access' => $access_access,
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/user/rules/delete', 'title' => t('delete rule'),
+    $items[] = array('path' => 'admin/user/rules/delete', 'title' => t('Delete Rule'),
       'callback' => 'drupal_get_form', 'callback arguments' => array('user_admin_access_delete_confirm'),
       'access' => $access_access, 'type' => MENU_CALLBACK);
 
     if (module_exists('search')) {
-      $items[] = array('path' => 'admin/user/search', 'title' => t('search users'),
+      $items[] = array('path' => 'admin/user/search', 'title' => t('Search Users'),
         'description' => t('Search users by name.'),
         'callback' => 'user_admin', 'callback arguments' => array('search'), 'access' => $admin_access,
         'type' => MENU_NORMAL_ITEM);
@@ -765,12 +765,12 @@ function user_menu($may_cache) {
 
     // Your personal page
     if ($user->uid) {
-      $items[] = array('path' => 'user/'. $user->uid, 'title' => t('my account'),
+      $items[] = array('path' => 'user/'. $user->uid, 'title' => t('My Account'),
         'callback' => 'user_view', 'callback arguments' => array(arg(1)), 'access' => TRUE,
         'type' => MENU_DYNAMIC_ITEM);
     }
 
-    $items[] = array('path' => 'logout', 'title' => t('log out'),
+    $items[] = array('path' => 'logout', 'title' => t('Log Out'),
       'access' => $user->uid != 0,
       'callback' => 'user_logout',
       'weight' => 10);
@@ -789,17 +789,17 @@ function user_menu($may_cache) {
         // Only admins can view blocked accounts
         $view_access &= $account->status || $admin_access;
 
-        $items[] = array('path' => 'user/'. arg(1), 'title' => t('user'),
+        $items[] = array('path' => 'user/'. arg(1), 'title' => t('User'),
           'type' => MENU_CALLBACK, 'callback' => 'user_view',
           'callback arguments' => array(arg(1)), 'access' => $view_access);
 
-        $items[] = array('path' => 'user/'. arg(1) .'/view', 'title' => t('view'),
+        $items[] = array('path' => 'user/'. arg(1) .'/view', 'title' => t('View'),
           'access' => $view_access, 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10);
 
-        $items[] = array('path' => 'user/'. arg(1) .'/edit', 'title' => t('edit'),
+        $items[] = array('path' => 'user/'. arg(1) .'/edit', 'title' => t('Edit'),
           'callback' => 'drupal_get_form', 'callback arguments' => array('user_edit'),
           'access' => $admin_access || $user->uid == arg(1), 'type' => MENU_LOCAL_TASK);
-        $items[] = array('path' => 'user/'. arg(1) .'/delete', 'title' => t('delete'),
+        $items[] = array('path' => 'user/'. arg(1) .'/delete', 'title' => t('Delete'),
           'callback' => 'user_edit', 'access' => $admin_access,
           'type' => MENU_CALLBACK);
 
Index: modules/watchdog/watchdog.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/watchdog/watchdog.module,v
retrieving revision 1.157
diff -u -F^f -r1.157 watchdog.module
--- modules/watchdog/watchdog.module	8 Sep 2006 23:07:25 -0000	1.157
+++ modules/watchdog/watchdog.module	3 Oct 2006 22:47:40 -0000
@@ -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);
   }

