From 84b5fd5eebc230932f690958931c5e1f2d75d9da Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?G=C3=A1bor=20Hojtsy?= <gabor@hojtsy.hu>
Date: Mon, 19 Nov 2007 18:26:11 +0000
Subject: [PATCH] #192209 by catch, webchick et al: use the 'taxonomy' word
 instead of the more confusing 'categories'

---
 modules/taxonomy/taxonomy.module | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module
index 7475ae66568c..ec3952f95fd7 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.')
         ),
       ),
     ),
-- 
GitLab