? content.capitalize.patch
Index: content.module
===================================================================
RCS file: /cvs/drupal/contributions/modules/cck/content.module,v
retrieving revision 1.87
diff -u -p -r1.87 content.module
--- content.module	3 Nov 2006 23:41:53 -0000	1.87
+++ content.module	18 Nov 2006 16:14:23 -0000
@@ -42,7 +42,7 @@ function content_menu($may_cache) {
   if ($may_cache) {
       $items[] = array(
         'path' => 'admin/content/types/fields',
-        'title' => t('fields'),
+        'title' => t('Fields'),
         'callback' => '_content_admin_type_fields',
         'access' => $access,
         'type' => MENU_LOCAL_TASK,
@@ -58,14 +58,14 @@ function content_menu($may_cache) {
       if (!empty($type) && arg(3) && arg(3) == $content_type['url_str']) {
         $items[] = array(
           'path' => 'admin/content/types/'. $content_type['url_str'] .'/edit',
-          'title' => t('edit'),
+          'title' => t('Edit'),
           'callback' => 'drupal_get_form',
           'callback arguments' => array('node_type_form', $type),
           'type' => MENU_DEFAULT_LOCAL_TASK,
         );
         $items[] = array(
           'path' => 'admin/content/types/'. $content_type['url_str'] .'/fields',
-          'title' => t('manage fields'),
+          'title' => t('Manage fields'),
           'callback' => '_content_admin_field_overview',
           'access' => $access,
           'callback arguments' => array($content_type['type']),
@@ -74,7 +74,7 @@ function content_menu($may_cache) {
         );
         $items[] = array(
           'path' => 'admin/content/types/'. $content_type['url_str'] .'/add_field',
-          'title' => t('add field'),
+          'title' => t('Add field'),
           'callback' => '_content_admin_field_add',
           'access' => $access,
           'callback arguments' => array($content_type['type']),
@@ -93,7 +93,7 @@ function content_menu($may_cache) {
           );
           $items[] = array(
             'path' => 'admin/content/types/'. $content_type['url_str'] .'/fields/'. arg(5) .'/remove',
-            'title' => t('remove field'),
+            'title' => t('Remove field'),
             'callback' => 'drupal_get_form',
             'access' => $access,
             'callback arguments' => array('_content_admin_field_remove', $content_type['type'], arg(5)),
