diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-02-08 02:52:39 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-02-08 02:52:39 +0000 |
commit | 97a739e14c13dc4a8a29dad1866caa5df58da697 (patch) | |
tree | 8569b12e420893acc4d96f0dd01c4bce75bde2ec /modules | |
parent | 3e7fe972f655eed3c7a34a52fbe5966eb1105c29 (diff) | |
download | brdo-97a739e14c13dc4a8a29dad1866caa5df58da697.tar.gz brdo-97a739e14c13dc4a8a29dad1866caa5df58da697.tar.bz2 |
- Patch #217508 by keith et al: fixed writing style of output messags.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/taxonomy/taxonomy.admin.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc index 0a73a1e62..1631d30b4 100644 --- a/modules/taxonomy/taxonomy.admin.inc +++ b/modules/taxonomy/taxonomy.admin.inc @@ -122,7 +122,7 @@ function taxonomy_form_vocabulary(&$form_state, $edit = array()) { '#title' => t('Vocabulary name'), '#default_value' => $edit['name'], '#maxlength' => 255, - '#description' => t('The name for this vocabulary. i.e. <em>"Tags"</em>.'), + '#description' => t('The name for this vocabulary, e.g., <em>"Tags"</em>.'), '#required' => TRUE, ); $form['identification']['description'] = array('#type' => 'textarea', @@ -134,7 +134,7 @@ function taxonomy_form_vocabulary(&$form_state, $edit = array()) { '#title' => t('Help text'), '#maxlength' => 255, '#default_value' => $edit['help'], - '#description' => t('Instructions to present to the user when selecting terms. i.e. <em>"Enter a comma separated list of words".</em>'), + '#description' => t('Instructions to present to the user when selecting terms, e.g., <em>"Enter a comma separated list of words"</em>.'), ); $form['content_types'] = array( '#type' => 'fieldset', |