Index: modules/node/content_types.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/node/content_types.inc,v
retrieving revision 1.81
diff -u -p -r1.81 content_types.inc
--- modules/node/content_types.inc	16 Jul 2009 10:44:20 -0000	1.81
+++ modules/node/content_types.inc	18 Jul 2009 10:10:03 -0000
@@ -69,7 +69,6 @@ function node_type_form(&$form_state, $t
     '#title' => t('Name'),
     '#type' => 'textfield',
     '#default_value' => $type->name,
-    '#description' => t('The human-readable name of this content type. This text will be displayed as part of the list on the <em>add new content</em> page. It is recommended that this name begin with a capital letter and contain only letters, numbers, and <strong>spaces</strong>. This name must be unique.'),
     '#required' => TRUE,
     '#size' => 30,
     '#field_suffix' => ' <small id="node-type-name-suffix">&nbsp;</small>',
@@ -102,7 +101,6 @@ function node_type_form(&$form_state, $t
     '#title' => t('Description'),
     '#type' => 'textarea',
     '#default_value' => $type->description,
-    '#description' => t('A brief description of this content type. This text will be displayed as part of the list on the <em>add new content</em> page.'),
     );
 
   $form['submission'] = array(
@@ -127,7 +125,7 @@ function node_type_form(&$form_state, $t
     '#title' => t('Body field label'),
     '#type' => 'textfield',
     '#default_value' => isset($type->body_label) ? $type->body_label : '',
-    '#description' => t('To omit the body field for this content type, remove any text and leave this field blank.'),
+    '#description' => t('Leave blank to remove the body field.'),
   );
   $form['submission']['min_word_count'] = array(
     '#type' => 'select',
@@ -138,14 +136,13 @@ function node_type_form(&$form_state, $t
   );
   $form['submission']['node_preview'] = array(
     '#type' => 'radios',
-    '#title' => t('Preview post'),
+    '#title' => t('Preview post before submitting'),
     '#default_value' => variable_get('node_preview_' . $type->type, DRUPAL_OPTIONAL),
     '#options' => array(
       DRUPAL_DISABLED => t('Disabled'),
       DRUPAL_OPTIONAL => t('Optional'),
       DRUPAL_REQUIRED => t('Required'),
     ),
-    '#description' => t('Should users preview posts before submitting?'),
     );
   $form['submission']['help']  = array(
     '#type' => 'textarea',
