Skip to content

Commit

Permalink
- Patch #217508 by keith et al: fixed writing style of output messags.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbuytaert committed Feb 8, 2008
1 parent 3e7fe97 commit 97a739e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion INSTALL.txt
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ INSTALLATION
4. RUN THE INSTALL SCRIPT

To run the install script point your browser to the base URL of your website
(i.e. http://www.example.com).
(e.g., http://www.example.com).

You will be guided through several screens to set up the database,
create tables, add the first user account and provide basic web
Expand Down
4 changes: 2 additions & 2 deletions modules/taxonomy/taxonomy.admin.inc
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down

0 comments on commit 97a739e

Please sign in to comment.