From 97a739e14c13dc4a8a29dad1866caa5df58da697 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Fri, 8 Feb 2008 02:52:39 +0000
Subject: [PATCH] - Patch #217508 by keith et al: fixed writing style of output
 messags.

---
 INSTALL.txt                         | 2 +-
 modules/taxonomy/taxonomy.admin.inc | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/INSTALL.txt b/INSTALL.txt
index 37dcdb673586..480b2eb1092c 100644
--- a/INSTALL.txt
+++ b/INSTALL.txt
@@ -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
diff --git a/modules/taxonomy/taxonomy.admin.inc b/modules/taxonomy/taxonomy.admin.inc
index 0a73a1e62eaa..1631d30b4251 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',
-- 
GitLab