diff --git a/modules/contact.module b/modules/contact.module
index 244acad7c82174be87a2e54ffced69ca4f94d4b0..c07a014c768d3597c3db73b5345227663667a554 100644
--- a/modules/contact.module
+++ b/modules/contact.module
@@ -37,7 +37,7 @@ function contact_menu($may_cache) {
   $items = array();
 
   if ($may_cache) {
-    $items[] = array('path' => 'contact', 'title' => t('contact us'),
+    $items[] = array('path' => 'contact', 'title' => t('contact'),
       'callback' => 'contact_mail_page', 'access' => user_access('access content'),
       'type' => MENU_SUGGESTED_ITEM);
     $items[] = array('path' => 'admin/contact', 'title' => t('contact form'),
@@ -68,7 +68,7 @@ function contact_menu($may_cache) {
 function contact_settings() {
   $form['contact_form_information'] = array(
     '#type' => 'textarea', '#title' => t('Additional information'),
-    '#default_value' => variable_get('contact_form_information', t('You can leave us a message using the contact form below.')),
+    '#default_value' => variable_get('contact_form_information', t('You can leave a message using the contact form below.')),
     '#description' => t('Information to show on the <a href="%form">contact page</a>.  Can be anything from submission guidelines to your postal address or telephone number.', array('%form' => url('contact')))
   );
   $form['contact_hourly_threshold'] = array(
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index 244acad7c82174be87a2e54ffced69ca4f94d4b0..c07a014c768d3597c3db73b5345227663667a554 100644
--- a/modules/contact/contact.module
+++ b/modules/contact/contact.module
@@ -37,7 +37,7 @@ function contact_menu($may_cache) {
   $items = array();
 
   if ($may_cache) {
-    $items[] = array('path' => 'contact', 'title' => t('contact us'),
+    $items[] = array('path' => 'contact', 'title' => t('contact'),
       'callback' => 'contact_mail_page', 'access' => user_access('access content'),
       'type' => MENU_SUGGESTED_ITEM);
     $items[] = array('path' => 'admin/contact', 'title' => t('contact form'),
@@ -68,7 +68,7 @@ function contact_menu($may_cache) {
 function contact_settings() {
   $form['contact_form_information'] = array(
     '#type' => 'textarea', '#title' => t('Additional information'),
-    '#default_value' => variable_get('contact_form_information', t('You can leave us a message using the contact form below.')),
+    '#default_value' => variable_get('contact_form_information', t('You can leave a message using the contact form below.')),
     '#description' => t('Information to show on the <a href="%form">contact page</a>.  Can be anything from submission guidelines to your postal address or telephone number.', array('%form' => url('contact')))
   );
   $form['contact_hourly_threshold'] = array(