diff options
Diffstat (limited to 'modules/taxonomy.module')
-rw-r--r-- | modules/taxonomy.module | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/taxonomy.module b/modules/taxonomy.module index 825a3734f..38be1cb1c 100644 --- a/modules/taxonomy.module +++ b/modules/taxonomy.module @@ -210,7 +210,7 @@ function taxonomy_form_vocabulary($edit = array()) { '#title' => t('Vocabulary name'), '#default_value' => $edit['name'], '#maxlength' => 64, - '#description' => t('The name for this vocabulary. Example: "Topic".'), + '#description' => t('The name for this vocabulary. Example: "Topic".'), '#required' => TRUE, ); $form['description'] = array('#type' => 'textarea', @@ -369,7 +369,7 @@ function taxonomy_form_term($edit = array()) { $vocabulary_id = isset($edit['vid']) ? $edit['vid'] : arg(4); $vocabulary = taxonomy_get_vocabulary($vocabulary_id); - $form['name'] = array('#type' => 'textfield', '#title' => t('Term name'), '#default_value' => $edit['name'], '#maxlength' => 64, '#description' => t('The name for this term. Example: "Linux".'), '#required' => TRUE); + $form['name'] = array('#type' => 'textfield', '#title' => t('Term name'), '#default_value' => $edit['name'], '#maxlength' => 64, '#description' => t('The name for this term. Example: "Linux".'), '#required' => TRUE); $form['description'] = array('#type' => 'textarea', '#title' => t('Description'), '#default_value' => $edit['description'], '#description' => t('A description of the term.')); @@ -656,7 +656,7 @@ function taxonomy_form_alter($form_id, &$form) { $help = $vocabulary->help; } else { - $help = t('A comma-separated list of terms describing this content. Example: funny, bungie jumping, "Company, Inc.".'); + $help = t('A comma-separated list of terms describing this content. Example: funny, bungie jumping, "Company, Inc.".'); } $form['taxonomy']['tags'][$vocabulary->vid] = array('#type' => 'textfield', '#title' => $vocabulary->name, @@ -1344,7 +1344,7 @@ function taxonomy_help($section) { case 'admin/taxonomy': return t('<p>The taxonomy module allows you to classify content into categories and subcategories; it allows multiple lists of categories for classification (controlled vocabularies) and offers the possibility of creating thesauri (controlled vocabularies that indicate the relationship of terms), taxonomies (controlled vocabularies where relationships are indicated hierarchically), and free vocabularies where terms, or tags, are defined during content creation. To view and manage the terms of each vocabulary, click on the associated <em>list terms</em> link. To delete a vocabulary and all its terms, choose "edit vocabulary".</p>'); case 'admin/taxonomy/add/vocabulary': - return t("<p>When you create a controlled vocabulary you are creating a set of terms to use for describing content (known as descriptors in indexing lingo). Drupal allows you to describe each piece of content (blog, story, etc.) using one or many of these terms. For simple implementations, you might create a set of categories without subcategories, similar to Slashdot.org's or Kuro5hin.org's sections. For more complex implementations, you might create a hierarchical list of categories.</p>"); + return t("<p>When you create a controlled vocabulary you are creating a set of terms to use for describing content (known as descriptors in indexing lingo). Drupal allows you to describe each piece of content (blog, story, etc.) using one or many of these terms. For simple implementations, you might create a set of categories without subcategories, similar to Slashdot.org's or Kuro5hin.org's sections. For more complex implementations, you might create a hierarchical list of categories.</p>"); } } |