diff options
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', |