summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGábor Hojtsy <gabor@hojtsy.hu>2007-11-19 18:26:11 +0000
committerGábor Hojtsy <gabor@hojtsy.hu>2007-11-19 18:26:11 +0000
commit84b5fd5eebc230932f690958931c5e1f2d75d9da (patch)
tree084a6576879d8d80d12ced0e8bc62f0651543dc9 /modules
parenta557dd4738fc940fd8e82f8c75f7b685cbae95fc (diff)
downloadbrdo-84b5fd5eebc230932f690958931c5e1f2d75d9da.tar.gz
brdo-84b5fd5eebc230932f690958931c5e1f2d75d9da.tar.bz2
#192209 by catch, webchick et al: use the 'taxonomy' word instead of the more confusing 'categories'
Diffstat (limited to 'modules')
-rw-r--r--modules/taxonomy/taxonomy.module12
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.')
),
),
),