Index: modules/taxonomy/taxonomy.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.admin.inc,v retrieving revision 1.90 diff -u -p -r1.90 taxonomy.admin.inc --- modules/taxonomy/taxonomy.admin.inc 8 Jan 2010 16:54:06 -0000 1.90 +++ modules/taxonomy/taxonomy.admin.inc 9 Jan 2010 00:29:58 -0000 @@ -640,7 +640,7 @@ function taxonomy_form_term($form, &$for $form['name'] = array( '#type' => 'textfield', - '#title' => t('Term name'), + '#title' => t('Name'), '#default_value' => $edit['name'], '#maxlength' => 255, '#required' => TRUE); @@ -648,7 +648,6 @@ function taxonomy_form_term($form, &$for '#type' => 'textarea', '#title' => t('Description'), '#default_value' => $edit['description'], - '#description' => t('A description of the term. To be displayed on taxonomy/term pages and RSS feeds.'), '#text_format' => $edit['format'], ); @@ -660,9 +659,9 @@ function taxonomy_form_term($form, &$for field_attach_form('taxonomy_term', (object) $edit, $form, $form_state); - $form['advanced'] = array( + $form['relations'] = array( '#type' => 'fieldset', - '#title' => t('Advanced options'), + '#title' => t('Relations'), '#collapsible' => TRUE, '#collapsed' => $vocabulary->hierarchy < 2, ); @@ -688,7 +687,7 @@ function taxonomy_form_term($form, &$for $options[$term->tid] = str_repeat('-', $term->depth) . $term->name; } } - $form['advanced']['parent'] = array( + $form['relations']['parent'] = array( '#type' => 'select', '#title' => t('Parent terms'), '#options' => $options, @@ -697,7 +696,7 @@ function taxonomy_form_term($form, &$for ); } - $form['advanced']['weight'] = array( + $form['relations']['weight'] = array( '#type' => 'textfield', '#title' => t('Weight'), '#size' => 6,