### Eclipse Workspace Patch 1.0
#P Drupal HEAD #2
Index: modules/book/book.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/book/book.module,v
retrieving revision 1.393
diff -u -r1.393 book.module
--- modules/book/book.module	26 Sep 2006 14:14:30 -0000	1.393
+++ modules/book/book.module	19 Oct 2006 17:31:03 -0000
@@ -12,7 +12,7 @@
 function book_node_info() {
   return array(
     'book' => array(
-      'name' => t('book page'),
+      'name' => t('Book page'),
       'module' => 'book',
       'description' => t("A book is a collaborative writing effort: users can collaborate writing the pages of the book, positioning the pages in the right order, and reviewing or modifying pages previously written. So when you have some information to share or when you read a page of the book and you didn't like it, or if you think a certain page could have been written better, you can do something about it."),
     )
@@ -65,13 +65,13 @@
     if (!$teaser) {
       if (book_access('create', $node)) {
         $links['book_add_child'] = array(
-          'title' => t('add child page'),
+          'title' => t('Add child page'),
           'href' => "node/add/book/parent/$node->nid"
         );
       }
       if (user_access('see printer-friendly version')) {
         $links['book_printer'] = array(
-          'title' => t('printer-friendly version'),
+          'title' => t('Printer-friendly version'),
           'href' => 'book/export/html/'. $node->nid,
           'attributes' => array('title' => t('Show a printer-friendly version of this book page and its sub-pages.'))
         );
@@ -91,24 +91,24 @@
   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);
@@ -131,7 +131,7 @@
       if (db_num_rows($result) > 0) {
         $items[] = array(
           'path' => 'node/'. arg(1) .'/outline',
-          'title' => t('outline'),
+          'title' => t('Outline'),
           'callback' => 'drupal_get_form',
           'callback arguments' => array('book_outline', arg(1)),
           'access' => user_access('outline posts in books'),
Index: modules/path/path.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/path/path.module,v
retrieving revision 1.96
diff -u -r1.96 path.module
--- modules/path/path.module	8 Sep 2006 16:33:02 -0000	1.96
+++ modules/path/path.module	19 Oct 2006 17:31:08 -0000
@@ -48,23 +48,23 @@
   $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/legacy/legacy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/legacy/legacy.module,v
retrieving revision 1.13
diff -u -r1.13 legacy.module
--- modules/legacy/legacy.module	31 Aug 2006 20:22:35 -0000	1.13
+++ modules/legacy/legacy.module	19 Oct 2006 17:31:06 -0000
@@ -40,35 +40,35 @@
 
   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/filter/filter.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/filter/filter.module,v
retrieving revision 1.145
diff -u -r1.145 filter.module
--- modules/filter/filter.module	4 Oct 2006 06:13:33 -0000	1.145
+++ modules/filter/filter.module	19 Oct 2006 17:31:05 -0000
@@ -62,20 +62,20 @@
 
   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 @@
       '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 @@
           '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 @@
           '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 @@
           '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/poll/poll.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/poll/poll.module,v
retrieving revision 1.218
diff -u -r1.218 poll.module
--- modules/poll/poll.module	9 Oct 2006 06:53:25 -0000	1.218
+++ modules/poll/poll.module	19 Oct 2006 17:31:08 -0000
@@ -237,21 +237,21 @@
   $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 @@
       $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 @@
       }
       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,
@@ -325,7 +325,7 @@
 function poll_node_info() {
   return array(
     'poll' => array(
-      'name' => t("poll"),
+      'name' => t('Poll'),
       'module' => 'poll',
       'description' => t("A poll is a multiple-choice question which visitors can vote on."),
       'title_label' => t('Question'),
@@ -605,9 +605,9 @@
     $node->readmore = FALSE;
 
     $links = module_invoke_all('link', 'node', $node, 1);
-    $links[] = array('title' => t('older polls'), 'href' => 'poll', 'attributes' => array('title' => t('View the list of polls on this site.')));
+    $links[] = array('title' => t('Older polls'), 'href' => 'poll', 'attributes' => array('title' => t('View the list of polls on this site.')));
     if ($node->allowvotes && $block) {
-      $links[] = array('title' => t('results'), 'href' => 'node/'. $node->nid .'/results', 'attributes' => array('title' => t('View the current poll results.')));
+      $links[] = array('title' => t('Results'), 'href' => 'node/'. $node->nid .'/results', 'attributes' => array('title' => t('View the current poll results.')));
     }
 
     $node->links = $links;
Index: modules/menu/menu.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/menu/menu.module,v
retrieving revision 1.90
diff -u -r1.90 menu.module
--- modules/menu/menu.module	17 Sep 2006 19:17:24 -0000	1.90
+++ modules/menu/menu.module	19 Oct 2006 17:31:07 -0000
@@ -48,66 +48,66 @@
 
   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/block/block.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/block/block.module,v
retrieving revision 1.229
diff -u -r1.229 block.module
--- modules/block/block.module	8 Oct 2006 06:34:12 -0000	1.229
+++ modules/block/block.module	19 Oct 2006 17:31:01 -0000
@@ -66,24 +66,24 @@
   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/help/help.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/help/help.module,v
retrieving revision 1.60
diff -u -r1.60 help.module
--- modules/help/help.module	14 Oct 2006 06:07:14 -0000	1.60
+++ modules/help/help.module	19 Oct 2006 17:31:06 -0000
@@ -15,7 +15,7 @@
   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/throttle/throttle.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/throttle/throttle.module,v
retrieving revision 1.67
diff -u -r1.67 throttle.module
--- modules/throttle/throttle.module	31 Aug 2006 20:22:36 -0000	1.67
+++ modules/throttle/throttle.module	19 Oct 2006 17:31:16 -0000
@@ -13,7 +13,7 @@
     $items[] = array(
       'path' => 'admin/settings/throttle',
       'description' => t('Control how your site cuts out content during heavy load.'),
-      'title' => t('throttle'),
+      'title' => t('Throttle'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('throttle_admin_settings'),
       'access' => user_access('administer site configuration'),
Index: modules/taxonomy/taxonomy.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.module,v
retrieving revision 1.319
diff -u -r1.319 taxonomy.module
--- modules/taxonomy/taxonomy.module	18 Oct 2006 11:15:51 -0000	1.319
+++ modules/taxonomy/taxonomy.module	19 Oct 2006 17:31:16 -0000
@@ -63,43 +63,43 @@
 
   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 @@
     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/drupal/drupal.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/drupal/drupal.module,v
retrieving revision 1.129
diff -u -r1.129 drupal.module
--- modules/drupal/drupal.module	17 Oct 2006 08:29:55 -0000	1.129
+++ modules/drupal/drupal.module	19 Oct 2006 17:31:04 -0000
@@ -346,13 +346,13 @@
   $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/locale/locale.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/locale/locale.module,v
retrieving revision 1.146
diff -u -r1.146 locale.module
--- modules/locale/locale.module	4 Oct 2006 06:41:24 -0000	1.146
+++ modules/locale/locale.module	19 Oct 2006 17:31:07 -0000
@@ -57,19 +57,19 @@
   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 @@
 
     // 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 @@
 
     // 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 @@
     if (is_numeric(arg(5))) {
       // String related callbacks
       $items[] = array('path' => 'admin/settings/locale/string/edit/'. arg(5),
-        'title' => t('edit string'),
+        'title' => t('Edit string'),
         'callback' => 'drupal_get_form',
         'callback arguments' => array('locale_admin_string_edit', arg(5)),
         'access' => $access,
         'type' => MENU_CALLBACK);
       $items[] = array('path' => 'admin/settings/locale/string/delete/'. arg(5),
-        'title' => t('delete string'),
+        'title' => t('Delete string'),
         'callback' => 'locale_admin_string_delete',
         'callback arguments' => array(arg(5)),
         'access' => $access,
Index: modules/statistics/statistics.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/statistics/statistics.module,v
retrieving revision 1.241
diff -u -r1.241 statistics.module
--- modules/statistics/statistics.module	31 Aug 2006 21:58:36 -0000	1.241
+++ modules/statistics/statistics.module	19 Oct 2006 17:31:11 -0000
@@ -114,40 +114,40 @@
   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 @@
     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 @@
     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/blog/blog.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blog/blog.module,v
retrieving revision 1.265
diff -u -r1.265 blog.module
--- modules/blog/blog.module	31 Aug 2006 20:22:34 -0000	1.265
+++ modules/blog/blog.module	19 Oct 2006 17:31:02 -0000
@@ -12,7 +12,7 @@
 function blog_node_info() {
   return array(
     'blog' => array(
-      'name' => t('blog entry'),
+      'name' => t('Blog entry'),
       'module' => 'blog',
       'description' => t('A blog is a regularly updated journal or diary made up of individual posts shown in reversed chronological order. Each member of the site may create and maintain a blog.'),
     )
@@ -228,7 +228,7 @@
 function blog_view($node, $teaser = FALSE, $page = FALSE) {
   if ($page) {
     // Breadcrumb navigation
-    $breadcrumb[] = array('path' => 'blog', 'title' => t('blogs'));
+    $breadcrumb[] = array('path' => 'blog', 'title' => t('Blogs'));
     $breadcrumb[] = array('path' => 'blog/'. $node->uid, 'title' => t("@name's blog", array('@name' => $node->name)));
     $breadcrumb[] = array('path' => 'node/'. $node->nid);
     menu_set_location($breadcrumb);
@@ -263,13 +263,13 @@
   $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/search/search.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/search/search.module,v
retrieving revision 1.200
diff -u -r1.200 search.module
--- modules/search/search.module	7 Oct 2006 13:39:04 -0000	1.200
+++ modules/search/search.module	19 Oct 2006 17:31:10 -0000
@@ -150,25 +150,25 @@
 
   if ($may_cache) {
     $items[] = array('path' => 'search',
-      'title' => t('search'),
+      'title' => t('Search'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('search_view'),
       'access' => user_access('search content'),
       'type' => MENU_SUGGESTED_ITEM);
     $items[] = array('path' => 'admin/settings/search',
-      'title' => t('search settings'),
+      'title' => t('Search settings'),
       'description' => t('Configure relevance settings for search and other indexing options'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('search_admin_settings'),
       'access' => user_access('administer search'),
       'type' => MENU_NORMAL_ITEM);
     $items[] = array('path' => 'admin/settings/search/wipe',
-      'title' => t('clear index'),
+      'title' => t('Clear index'),
       'callback' => 'drupal_get_form',
       'callback arguments' => array('search_wipe_confirm'),
       'access' => user_access('administer search'),
       'type' => MENU_CALLBACK);
-    $items[] = array('path' => 'admin/logs/search', 'title' => t('top search phrases'),
+    $items[] = array('path' => 'admin/logs/search', 'title' => t('Top search phrases'),
       'description' => t('View most popular search phrases.'),
       'callback' => 'watchdog_top',
       'callback arguments' => array('search'));
Index: modules/upload/upload.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/upload/upload.module,v
retrieving revision 1.134
diff -u -r1.134 upload.module
--- modules/upload/upload.module	17 Oct 2006 08:20:42 -0000	1.134
+++ modules/upload/upload.module	19 Oct 2006 17:31:17 -0000
@@ -77,7 +77,7 @@
       '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 @@
         }
 
         $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/system/system.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.module,v
retrieving revision 1.380
diff -u -r1.380 system.module
--- modules/system/system.module	14 Oct 2006 11:47:12 -0000	1.380
+++ modules/system/system.module	19 Oct 2006 17:31:15 -0000
@@ -101,25 +101,25 @@
   $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 @@
     // 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 @@
       '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 @@
 
     $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 @@
     // 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 @@
 
     $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 @@
       '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 @@
 
     // 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,31 +205,31 @@
     // 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'));
@@ -241,19 +241,19 @@
       '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 @@
     // 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(
@@ -2063,7 +2063,7 @@
 
     // Check for permissions.
     if (module_hook($module, 'perm')) {
-      $admin_tasks[-1] = l(t('configure permissions'), 'admin/user/access');
+      $admin_tasks[-1] = l(t('Configure permissions'), 'admin/user/access');
     }
 
     // Check for menu items that are admin links.
@@ -2079,7 +2079,7 @@
 
     // Check for help links.
     if (module_invoke($module, 'help', "admin/help#$module")) {
-      $admin_tasks[100] = l(t('get help'), "admin/help/$module");
+      $admin_tasks[100] = l(t('Get help'), "admin/help/$module");
     }
 
     // Sort
Index: modules/system/system.install
===================================================================
RCS file: /cvs/drupal/drupal/modules/system/system.install,v
retrieving revision 1.33
diff -u -r1.33 system.install
--- modules/system/system.install	11 Oct 2006 13:14:47 -0000	1.33
+++ modules/system/system.install	19 Oct 2006 17:31:13 -0000
@@ -3217,7 +3217,7 @@
   $types = array(
     array(
       'type' => 'page',
-      'name' => t('page'),
+      'name' => t('Page'),
       'module' => 'node',
       'description' => t('If you want to add a static page, like a contact page or an about page, use a page.'),
       'custom' => TRUE,
@@ -3226,7 +3226,7 @@
     ),
     array(
       'type' => 'story',
-      'name' => t('story'),
+      'name' => t('Story'),
       'module' => 'node',
       'description' => t('Stories are articles in their simplest form: they have a title, a teaser and a body, but can be extendd by other modules. The teaser is part of the body too. Stories may be used as a personal blog or for news articles.'),
       'custom' => TRUE,
Index: modules/profile/profile.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/profile/profile.module,v
retrieving revision 1.174
diff -u -r1.174 profile.module
--- modules/profile/profile.module	18 Oct 2006 11:37:51 -0000	1.174
+++ modules/profile/profile.module	19 Oct 2006 17:31:09 -0000
@@ -53,35 +53,35 @@
 
   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/forum/forum.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/forum/forum.module,v
retrieving revision 1.362
diff -u -r1.362 forum.module
--- modules/forum/forum.module	4 Oct 2006 06:07:05 -0000	1.362
+++ modules/forum/forum.module	19 Oct 2006 17:31:06 -0000
@@ -42,38 +42,38 @@
 
   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 @@
     // 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'),
@@ -113,7 +113,7 @@
 function forum_node_info() {
   return array(
     'forum' => array(
-      'name' => t('forum topic'),
+      'name' => t('Forum topic'),
       'module' => 'forum',
       'description' => t('Create a new topic for discussion in the forums.'),
       'title_label' => t('Subject'),
Index: modules/tracker/tracker.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/tracker/tracker.module,v
retrieving revision 1.136
diff -u -r1.136 tracker.module
--- modules/tracker/tracker.module	31 Aug 2006 20:22:36 -0000	1.136
+++ modules/tracker/tracker.module	19 Oct 2006 17:31:17 -0000
@@ -34,14 +34,14 @@
   $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 @@
     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/contact/contact.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/contact/contact.module,v
retrieving revision 1.67
diff -u -r1.67 contact.module
--- modules/contact/contact.module	18 Oct 2006 17:57:05 -0000	1.67
+++ modules/contact/contact.module	19 Oct 2006 17:31:03 -0000
@@ -49,19 +49,19 @@
   $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 @@
       '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 @@
       '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 @@
       $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,
Index: modules/blogapi/blogapi.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/blogapi/blogapi.module,v
retrieving revision 1.95
diff -u -r1.95 blogapi.module
--- modules/blogapi/blogapi.module	31 Aug 2006 20:22:34 -0000	1.95
+++ modules/blogapi/blogapi.module	19 Oct 2006 17:31:02 -0000
@@ -576,7 +576,7 @@
       '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/aggregator/aggregator.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.module,v
retrieving revision 1.310
diff -u -r1.310 aggregator.module
--- modules/aggregator/aggregator.module	17 Oct 2006 19:15:27 -0000	1.310
+++ modules/aggregator/aggregator.module	19 Oct 2006 17:31:01 -0000
@@ -51,33 +51,33 @@
       '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,16 +85,16 @@
       '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);
@@ -132,17 +132,17 @@
             '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 @@
         $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 @@
         $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 @@
         $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,
@@ -1175,7 +1175,7 @@
     $output .= theme('item_list', $list);
 
     $link['sources'] = array(
-      'title' => t('more'),
+      'title' => t('More'),
       'href' => 'aggregator/sources/'. $feed->fid
     );
 
@@ -1279,7 +1279,7 @@
     }
 
     $link['categories'] = array(
-      'title' => t('more'),
+      'title' => t('More'),
       'href' => 'aggregator/categories/'. $category->cid
     );
 
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	19 Oct 2006 17:31:20 -0000
@@ -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);
   }
