summaryrefslogtreecommitdiff
path: root/modules/taxonomy/taxonomy.admin.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-08 16:54:06 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-08 16:54:06 +0000
commitefcbfc3e9e9145d55dbd98400c3910c4f9b37bb1 (patch)
treecc5d92719a2dda817aa2070f80f4983c3cdc8e6f /modules/taxonomy/taxonomy.admin.inc
parent0707ce5472641080a4765c343f300f5834d5d498 (diff)
downloadbrdo-efcbfc3e9e9145d55dbd98400c3910c4f9b37bb1.tar.gz
brdo-efcbfc3e9e9145d55dbd98400c3910c4f9b37bb1.tar.bz2
- Patch #678586 by jhodgdon: help text improvements.
Diffstat (limited to 'modules/taxonomy/taxonomy.admin.inc')
-rw-r--r--modules/taxonomy/taxonomy.admin.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 77c5d74bd..b045d8e5b 100644
--- a/modules/taxonomy/taxonomy.admin.inc
+++ b/modules/taxonomy/taxonomy.admin.inc
@@ -133,10 +133,10 @@ function taxonomy_form_vocabulary($form, &$form_state, $edit = array()) {
);
$form['machine_name'] = array(
'#type' => 'textfield',
- '#title' => t('Machine readable name'),
+ '#title' => t('Machine-readable name'),
'#default_value' => $edit['machine_name'],
'#maxlength' => 255,
- '#description' => t('The unique machine readable name for this vocabulary, used for theme templates, can only contain lowercase letters, numbers and underscores.'),
+ '#description' => t('The unique machine-readable name for this vocabulary, used for theme templates. Can only contain lowercase letters, numbers, and underscores.'),
'#required' => TRUE,
'#attached' => array(
'js' => array(drupal_get_path('module', 'system') . '/system.js', $js_settings),