Index: content.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/cck/content.module,v
retrieving revision 1.301.2.19
diff -u -r1.301.2.19 content.module
--- content.module	5 Jul 2008 14:32:47 -0000	1.301.2.19
+++ content.module	5 Jul 2008 19:47:55 -0000
@@ -1974,14 +1974,14 @@
   if ($type->has_title) {
     $extra['title'] = array(
       'label' => $type->title_label,
-//      'description' => t('TODO: DESCRIPTION PENDING'),
+      'description' => t('Node module textfield.'),
       'weight' => -5
     );
   }
   if ($type->has_body) {
     $extra['body_field'] = array(
       'label' => $type->body_label,
-//      'description' => t('TODO: DESCRIPTION PENDING'),
+      'description' => t('Node module textarea.'),
       'weight' => 0,
       'view' => 'body'
     );
@@ -1989,28 +1989,28 @@
   if (module_exists('locale') && variable_get("language_$type_name", 0)) {
     $extra['language'] = array(
       'label' => t('Language'),
-//      'description' => t('TODO: DESCRIPTION PENDING'),
+      'description' => t('Locale module selection widget.'),
       'weight' => 0
     );
   }
   if (module_exists('menu')) {
     $extra['menu'] = array(
-      'label' => t('Menu settings (admin)'),
-//      'description' => t('TODO: DESCRIPTION PENDING'),
+      'label' => t('Menu settings'),
+      'description' => t('Menu module selection widget.'),
       'weight' => -2
     );
   }
   if (module_exists('taxonomy') && taxonomy_get_vocabularies($type_name)) {
     $extra['taxonomy'] = array(
       'label' => t('Taxonomy'),
-//      'description' => t('TODO: DESCRIPTION PENDING'),
+      'description' => t('Taxonomy module selection widget.'),
       'weight' => -3
     );
   }
   if (module_exists('upload') && variable_get("upload_$type_name", TRUE)) {
     $extra['attachments'] = array(
       'label' => t('File attachments'),
-//      'description' => t('TODO: DESCRIPTION PENDING'),
+      'description' => t('Upload module attachment widget.'),
       'weight' => 30,
       'view' => 'files'
     );

