summaryrefslogtreecommitdiff
path: root/modules/contact
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-12-27 18:11:27 +0000
committerDries Buytaert <dries@buytaert.net>2005-12-27 18:11:27 +0000
commiteaa244d347977ec2c40a29af16a7bc7952372b84 (patch)
tree81d0ba74c5a03320a65cdffb40ec242865f2295d /modules/contact
parent387b47ec2bb700776162086882ed66db9a2e7626 (diff)
downloadbrdo-eaa244d347977ec2c40a29af16a7bc7952372b84.tar.gz
brdo-eaa244d347977ec2c40a29af16a7bc7952372b84.tar.bz2
- 'Contact us' -> 'Contact'
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.module4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index 244acad7c..c07a014c7 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(