diff options
-rw-r--r-- | modules/taxonomy/taxonomy.module | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 7475ae665..ec3952f95 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -104,8 +104,8 @@ function taxonomy_term_path($term) { */ function taxonomy_menu() { $items['admin/content/taxonomy'] = array( - 'title' => 'Categories', - 'description' => 'Create vocabularies and terms to categorize your content.', + 'title' => 'Taxonomy', + 'description' => 'Manage tagging, categorization, and classification of your content.', 'page callback' => 'taxonomy_overview_vocabularies', 'access arguments' => array('administer taxonomy'), 'file' => 'taxonomy.admin.inc', @@ -491,7 +491,7 @@ function taxonomy_form_alter(&$form, $form_state, $form_id) { // Add fieldset only if form has more than 1 element. $form['taxonomy'] += array( '#type' => 'fieldset', - '#title' => t('Categories'), + '#title' => t('Vocabularies'), '#collapsible' => TRUE, '#collapsed' => FALSE, ); @@ -1213,13 +1213,13 @@ function taxonomy_hook_info() { 'taxonomy' => array( 'taxonomy' => array( 'insert' => array( - 'runs when' => t('After saving a new category to the database'), + 'runs when' => t('After saving a new term to the database.'), ), 'update' => array( - 'runs when' => t('After saving an updated category to the database'), + 'runs when' => t('After saving an updated term to the database.'), ), 'delete' => array( - 'runs when' => t('After deleting a category') + 'runs when' => t('After deleting a term.') ), ), ), |