From eaa244d347977ec2c40a29af16a7bc7952372b84 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Tue, 27 Dec 2005 18:11:27 +0000
Subject: [PATCH] - 'Contact us' -> 'Contact'

---
 modules/contact.module         | 4 ++--
 modules/contact/contact.module | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/modules/contact.module b/modules/contact.module
index 244acad7c821..c07a014c768d 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 244acad7c821..c07a014c768d 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(
-- 
GitLab