diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 97069031a6ad56407b883d9acae014e93a3d6a21..74723113c11834a631d23dada89fcc1c9eede1f1 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -47,7 +47,7 @@ Drupal 6.0, xxxx-xx-xx (development version) * Dynamically check password strength and confirmation. * Refactored poll administration. * Implemented drag-and-drop positioning for blocks, menu items, taxonomy - terms, forums, profile fields, and input format filters. + vocabularies and terms, forums, profile fields, and input format filters. - Theme system: * Added .info files to themes and made it easier to specify regions and features. diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 25d01b7112252061c3f5a78a9f1f36cf563a8a8e..af40899a5b2a3ceace47b8627b28710142d30c3e 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -1243,7 +1243,9 @@ function taxonomy_help($path, $arg) { $output .= '

'. t('For more information, see the online handbook entry for Taxonomy module.', array('@taxonomy' => 'http://drupal.org/handbook/modules/taxonomy/')) .'

'; return $output; case 'admin/content/taxonomy': - return '

'. t("The taxonomy module allows you to categorize your content using both tags and administrator defined terms. It is a flexible tool for classifying content with many advanced features. To begin, create a 'Vocabulary' to hold one set of terms or tags. You can create one free-tagging vocabulary for everything, or separate controlled vocabularies to define the various properties of your content, for example 'Countries' or 'Colors'.") .'

'; + $output = '

'. t("The taxonomy module allows you to categorize your content using both tags and administrator defined terms. It is a flexible tool for classifying content with many advanced features. To begin, create a 'Vocabulary' to hold one set of terms or tags. You can create one free-tagging vocabulary for everything, or separate controlled vocabularies to define the various properties of your content, for example 'Countries' or 'Colors'.") .'

'; + $output .= '

'. t('Use the list below to configure and review the vocabularies defined on your site, or to list and manage the terms (tags) they contain. A vocabulary may (optionally) be tied to specific content types as shown in the Type column and, if so, will be displayed when creating or editing posts of that type. Multiple vocabularies tied to the same content type will be displayed in the order shown below. To change the order of a vocabulary, grab a drag-and-drop handle under the Name column and drag it to a new location in the list. (Grab a handle by clicking and holding the mouse while hovering over a handle icon.) Remember that your changes will not be saved until you click the Save button at the bottom of the page.') .'

'; + return $output; case 'admin/content/taxonomy/%': $vocabulary = taxonomy_vocabulary_load($arg[3]); if ($vocabulary->tags) {