Index: modules/field_ui/field_ui.admin.inc
===================================================================
RCS file: /cvs/drupal/drupal/modules/field_ui/field_ui.admin.inc,v
retrieving revision 1.60
diff -u -p -r1.60 field_ui.admin.inc
--- modules/field_ui/field_ui.admin.inc	10 Aug 2010 17:05:18 -0000	1.60
+++ modules/field_ui/field_ui.admin.inc	17 Aug 2010 14:59:52 -0000
@@ -227,12 +227,16 @@ function field_ui_field_overview_form($f
         '#type' => 'textfield',
         '#default_value' => $weight,
         '#size' => 3,
+        '#title' => t('Weight for !title', array('!title' => $instance['field_name'])),
+        '#title_display' => 'invisible',
         '#attributes' => array('class' => array('field-weight')),
        ),
       'parent_wrapper' => array(
         'parent' => array(
           '#type' => 'select',
           '#options' => $parent_options,
+          '#title' => t('Parent for !title', array('!title' => $instance['field_name'])),
+          '#title_display' => 'invisible',
           '#attributes' => array('class' => array('field-parent')),
           '#parents' => array($name, 'parent'),
         ),
@@ -300,6 +304,8 @@ function field_ui_field_overview_form($f
         'parent' => array(
           '#type' => 'select',
           '#options' => $parent_options,
+          '#title' => t('Parent for @row', array('@row' => $extra_field['label'])),
+          '#title_display' => 'invisible',
           '#attributes' => array('class' => array('field-parent')),
           '#parents' => array($name, 'parent'),
         ),
@@ -339,6 +345,8 @@ function field_ui_field_overview_form($f
       'label' => array(
         '#type' => 'textfield',
         '#size' => 15,
+        '#title' => t('Field label'),
+        '#title_display' => 'invisible',
         '#description' => t('Label'),
         '#prefix' => '<div class="label-input"><div class="add-new-placeholder">' . t('Add new field') .'</div>',
         '#suffix' => '</div>',
@@ -347,8 +355,8 @@ function field_ui_field_overview_form($f
         '#type' => 'textfield',
         '#default_value' => $weight,
         '#size' => 3,
-        '#title_display' => 'invisible',
         '#title' => t('Weight for new field'),
+        '#title_display' => 'invisible',
         '#attributes' => array('class' => array('field-weight')),
         '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
       ),
@@ -356,6 +364,8 @@ function field_ui_field_overview_form($f
         'parent' => array(
           '#type' => 'select',
           '#options' => $parent_options,
+          '#title' => t('Parent for new field'),
+          '#title_display' => 'invisible',
           '#attributes' => array('class' => array('field-parent')),
           '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
           '#parents' => array($name, 'parent'),
@@ -373,12 +383,16 @@ function field_ui_field_overview_form($f
         '#field_suffix' => '</span>&lrm;',
         '#attributes' => array('dir'=>'ltr'),
         '#size' => 15,
+        '#title' => t('Field name'),
+        '#title_display' => 'invisible',
         '#description' => t('Field name (a-z, 0-9, _)'),
         '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
       ),
       'type' => array(
         '#type' => 'select',
         '#options' => $field_type_options,
+        '#title' => t('Date type'),
+        '#title_display' => 'invisible',
         '#description' => t('Type of data to store.'),
         '#attributes' => array('class' => array('field-type-select')),
         '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
@@ -387,6 +401,8 @@ function field_ui_field_overview_form($f
         '#type' => 'select',
         '#options' => $widget_type_options,
         '#description' => t('Form element to edit the data.'),
+        '#title' => t('Form element'),
+        '#title_display' => 'invisible',
         '#attributes' => array('class' => array('widget-type-select')),
         '#cell_attributes' => array('colspan' => 3),
         '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
@@ -407,6 +423,8 @@ function field_ui_field_overview_form($f
         '#type' => 'textfield',
         '#size' => 15,
         '#description' => t('Label'),
+        '#title' => t('Field label'),
+        '#title_display' => 'invisible',
         '#attributes' => array('class' => array('label-textfield')),
         '#prefix' => '<div class="label-input"><div class="add-new-placeholder">' . t('Add existing field') .'</div>',
         '#suffix' => '</div>',
@@ -415,8 +433,8 @@ function field_ui_field_overview_form($f
         '#type' => 'textfield',
         '#default_value' => $weight,
         '#size' => 3,
-        '#title_display' => 'invisible',
         '#title' => t('Weight for added field'),
+        '#title_display' => 'invisible',
         '#attributes' => array('class' => array('field-weight')),
         '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
       ),
@@ -424,6 +442,8 @@ function field_ui_field_overview_form($f
         'parent' => array(
           '#type' => 'select',
           '#options' => $parent_options,
+          '#title' => t('Parent for added field'),
+          '#title_display' => 'invisible',
           '#attributes' => array('class' => array('field-parent')),
           '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
           '#parents' => array($name, 'parent'),
@@ -438,6 +458,8 @@ function field_ui_field_overview_form($f
         '#type' => 'select',
         '#options' => $existing_field_options,
         '#description' => t('Field to share'),
+        '#title' => t('Field to share'),
+        '#title_display' => 'invisible',
         '#attributes' => array('class' => array('field-select')),
         '#cell_attributes' => array('colspan' => 2),
         '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
@@ -446,6 +468,8 @@ function field_ui_field_overview_form($f
         '#type' => 'select',
         '#options' => $widget_type_options,
         '#description' => t('Form element to edit the data.'),
+        '#title' => t('Form element'),
+        '#title_display' => 'invisible',
         '#attributes' => array('class' => array('widget-type-select')),
         '#cell_attributes' => array('colspan' => 3),
         '#prefix' => '<div class="add-new-placeholder">&nbsp;</div>',
@@ -750,6 +774,8 @@ function field_ui_display_overview_form(
       '#type' => 'textfield',
       '#default_value' => $display['weight'],
       '#size' => 3,
+      '#title' => t('Weight for !title', array('!title' => check_plain($instance['label']))),
+      '#title_display' => 'invisible',
     );
     $table[$name]['hidden_name'] = array(
       '#type' => 'hidden',
@@ -759,6 +785,8 @@ function field_ui_display_overview_form(
       '#type' => 'select',
       '#options' => $field_label_options,
       '#default_value' => $display['label'],
+      '#title' => t('Select options for !title', array('!title' => check_plain($instance['label']))),
+      '#title_display' => 'invisible',
     );
     $field = field_info_field($instance['field_name']);
 
@@ -778,6 +806,8 @@ function field_ui_display_overview_form(
       ),
       '#field_name' => $name,
       '#op' => 'change_type',
+      '#title' => t('Select formatter options for !title', array('!title' => check_plain($instance['label']))),
+      '#title_display' => 'invisible',
     );
     // Formatter settings.
 
@@ -888,6 +918,8 @@ function field_ui_display_overview_form(
       '#type' => 'textfield',
       '#default_value' => $display['weight'],
       '#size' => 3,
+      '#title' => t('Weight for !title', array('!title' => check_plain($extra_field['label']))),
+      '#title_display' => 'invisible',
     );
     $table[$name]['hidden_name'] = array(
       '#type' => 'hidden',
@@ -897,6 +929,8 @@ function field_ui_display_overview_form(
       '#type' => 'select',
       '#options' => $extra_visibility_options,
       '#default_value' => $display['visible'] ? 'visible' : 'hidden',
+      '#title' => t('Display for !title', array('!title' => check_plain($extra_field['label']))),
+      '#title_display' => 'invisible',
     );
     $table[$name]['settings_summary'] = array();
     $table[$name]['settings_edit'] = array();
