? taxonomy.admin.patch ? sites/default/files ? sites/default/settings.php Index: modules/taxonomy/taxonomy.admin.inc =================================================================== RCS file: /cvs/drupal/drupal/modules/taxonomy/taxonomy.admin.inc,v retrieving revision 1.47 diff -u -p -r1.47 taxonomy.admin.inc --- modules/taxonomy/taxonomy.admin.inc 14 Mar 2009 20:13:27 -0000 1.47 +++ modules/taxonomy/taxonomy.admin.inc 16 Mar 2009 03:41:37 -0000 @@ -672,14 +672,14 @@ function taxonomy_form_term(&$form_state } $exclude[] = $edit['tid']; - $form['advanced']['parent'] = _taxonomy_term_select(t('Parents'), 'parent', $parent, $vocabulary->vid, t('Parent terms') . '.', 1, '<' . t('root') . '>', $exclude); - $form['advanced']['relations'] = _taxonomy_term_select(t('Related terms'), 'relations', array_keys(taxonomy_get_related($edit['tid'])), $vocabulary->vid, NULL, 1, '<' . t('none') . '>', array($edit['tid'])); + $form['advanced']['parent'] = _taxonomy_term_select(t('Parents.'), 'parent', $parent, $vocabulary->vid, t('Parent terms indicate a hierartical relationship between two terms. For example "red" might be a parent of "burgandy". Parents will show as a hierarchy in term select lists, and the relationship can be used by other modules') . '.', 1, '<' . t('root') . '>', $exclude); + $form['advanced']['relations'] = _taxonomy_term_select(t('Related terms'), 'relations', array_keys(taxonomy_get_related($edit['tid'])), $vocabulary->vid, t('Related terms indicate a relationship between two or more terms. Related terms do not have any default functionality, but the relationship can be used by other modules.'), 1, '<' . t('none') . '>', array($edit['tid'])); } $form['advanced']['synonyms'] = array( '#type' => 'textarea', '#title' => t('Synonyms'), '#default_value' => implode("\n", taxonomy_get_synonyms($edit['tid'])), - '#description' => t('Synonyms of this term, one synonym per line.')); + '#description' => t('Synonyms are aliases for this term. For example, "human" may be a synonym of "person." Synonyms do not have any default functionality, but can be used by other modules. Enter one synonym per line.')); $form['advanced']['weight'] = array( '#type' => 'textfield', '#title' => t('Weight'),