Index: modules/aggregator/aggregator.module
===================================================================
RCS file: /cvs/drupal/drupal/modules/aggregator/aggregator.module,v
retrieving revision 1.306
diff -u -r1.306 aggregator.module
--- modules/aggregator/aggregator.module	17 Sep 2006 19:14:15 -0000	1.306
+++ modules/aggregator/aggregator.module	20 Sep 2006 17:39:46 -0000
@@ -46,38 +46,38 @@
 
   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 @@
       '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,16 +132,16 @@
             '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' => 'aggregator_page_source',
             'access' => $edit,
             'type' => MENU_LOCAL_TASK);
           $items[] = array('path' => 'aggregator/sources/'. $feed['fid'] .'/configure',
-            'title' => t('configure'),
+            'title' => t('Configure'),
             'callback' => 'aggregator_form_feed',
             'callback arguments' => array($feed),
             'access' => $edit,
@@ -153,16 +153,16 @@
         $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' => 'aggregator_page_category',
             'access' => $edit,
             'type' => MENU_LOCAL_TASK);
           $items[] = array('path' => 'aggregator/categories/'. $category['cid'] .'/configure',
-            'title' => t('configure'),
+            'title' => t('Configure'),
             'callback' => 'aggregator_form_category',
             'callback arguments' => array($category),
             'access' => $edit,
@@ -176,7 +176,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,
@@ -187,7 +187,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,
