diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-08 16:54:06 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-08 16:54:06 +0000 |
commit | efcbfc3e9e9145d55dbd98400c3910c4f9b37bb1 (patch) | |
tree | cc5d92719a2dda817aa2070f80f4983c3cdc8e6f /modules/taxonomy/taxonomy.module | |
parent | 0707ce5472641080a4765c343f300f5834d5d498 (diff) | |
download | brdo-efcbfc3e9e9145d55dbd98400c3910c4f9b37bb1.tar.gz brdo-efcbfc3e9e9145d55dbd98400c3910c4f9b37bb1.tar.bz2 |
- Patch #678586 by jhodgdon: help text improvements.
Diffstat (limited to 'modules/taxonomy/taxonomy.module')
-rw-r--r-- | modules/taxonomy/taxonomy.module | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/modules/taxonomy/taxonomy.module b/modules/taxonomy/taxonomy.module index 24d8fcfdf..226008e2e 100644 --- a/modules/taxonomy/taxonomy.module +++ b/modules/taxonomy/taxonomy.module @@ -45,14 +45,12 @@ function taxonomy_help($path, $arg) { $vocabulary = taxonomy_vocabulary_load($arg[3]); switch ($vocabulary->hierarchy) { case 0: - return '<p>' . t('You can reorganize the terms in %capital_name using their drag and drop handles, and group terms under a parent term by sliding them under and to the right of the parent.', array('%capital_name' => drupal_ucfirst($vocabulary->name), '%name' => $vocabulary->name)) . '</p>'; + return '<p>' . t('You can reorganize the terms in %capital_name using their drag-and-drop handles, and group terms under a parent term by sliding them under and to the right of the parent.', array('%capital_name' => drupal_ucfirst($vocabulary->name), '%name' => $vocabulary->name)) . '</p>'; case 1: - return '<p>' . t('%capital_name contains terms grouped with parent terms. You can reorganize the terms in %capital_name using their drag and drop handles.', array('%capital_name' => drupal_ucfirst($vocabulary->name), '%name' => $vocabulary->name)) . '</p>'; + return '<p>' . t('%capital_name contains terms grouped under parent terms. You can reorganize the terms in %capital_name using their drag-and-drop handles.', array('%capital_name' => drupal_ucfirst($vocabulary->name), '%name' => $vocabulary->name)) . '</p>'; case 2: - return '<p>' . t('%capital_name contains terms with multiple parents. Drag and drop of terms with multiple parents is not supported, but you can re-enable drag and drop support by editing each term to include only a single parent.', array('%capital_name' => drupal_ucfirst($vocabulary->name))) . '</p>'; + return '<p>' . t('%capital_name contains terms with multiple parents. Drag and drop of terms with multiple parents is not supported, but you can re-enable drag-and-drop support by editing each term to include only a single parent.', array('%capital_name' => drupal_ucfirst($vocabulary->name))) . '</p>'; } - case 'admin/structure/taxonomy/add': - return '<p>' . t('To create a new taxonomy vocabulary, type in a name and a description.') . '</p>'; } } |