summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2009-06-28 12:04:56 +0000
committerDries Buytaert <dries@buytaert.net>2009-06-28 12:04:56 +0000
commit59339ea1f49f4bed1797d02a7f80750989cebd0f (patch)
treebe1a49a12e0d6c620e065b6282b5fd88a4fbb7cf /modules
parentee7d9bb2c08603a60fa4b4c29dad4d11f849c050 (diff)
downloadbrdo-59339ea1f49f4bed1797d02a7f80750989cebd0f.tar.gz
brdo-59339ea1f49f4bed1797d02a7f80750989cebd0f.tar.bz2
- Patch #504390 by Xano: taxonomy form UI improvements.
Diffstat (limited to 'modules')
-rw-r--r--modules/taxonomy/taxonomy.admin.inc7
1 files changed, 2 insertions, 5 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 300ff72b2..014b7152c 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -126,10 +126,9 @@ function taxonomy_form_vocabulary(&$form_state, $edit = array()) {
}
$form['name'] = array(
'#type' => 'textfield',
- '#title' => t('Vocabulary name'),
+ '#title' => t('Name'),
'#default_value' => $edit['name'],
'#maxlength' => 255,
- '#description' => t('The name for this vocabulary, e.g., <em>"Tags"</em>.'),
'#required' => TRUE,
'#field_suffix' => ' <small id="vocabulary-name-suffix">&nbsp;</small>',
);
@@ -152,14 +151,12 @@ function taxonomy_form_vocabulary(&$form_state, $edit = array()) {
'#type' => 'textfield',
'#title' => t('Description'),
'#default_value' => $edit['description'],
- '#description' => t('Description of the vocabulary; can be used by modules.'),
);
$form['nodes'] = array(
'#type' => 'checkboxes',
- '#title' => t('Content types'),
+ '#title' => t('Apply to content types'),
'#default_value' => $edit['nodes'],
'#options' => array_map('check_plain', node_type_get_names()),
- '#description' => t('Select content types to categorize using this vocabulary.'),
);
$form['settings'] = array(
'#type' => 'fieldset',