diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-17 09:04:09 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-08-17 09:04:09 +0000 |
commit | 5bc5413aa892c1a8f7dd9b34b45bf9e29d187315 (patch) | |
tree | 0afcb3c8b21dee6e3cb5c829f95cc38d00964663 /modules | |
parent | 28f7908f8c1e09d678adad06ca6d7d69fe29d2f8 (diff) | |
download | brdo-5bc5413aa892c1a8f7dd9b34b45bf9e29d187315.tar.gz brdo-5bc5413aa892c1a8f7dd9b34b45bf9e29d187315.tar.bz2 |
#78921 by soxofaan. Use consistent pronouns on contact page.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/contact/contact.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module index 9f355b91a..a103db69a 100644 --- a/modules/contact/contact.module +++ b/modules/contact/contact.module @@ -343,7 +343,7 @@ function contact_mail_user() { '#required' => TRUE, ); $form['copy'] = array('#type' => 'checkbox', - '#title' => t('Send me a copy.'), + '#title' => t('Send yourself a copy.'), ); $form['submit'] = array('#type' => 'submit', '#value' => t('Send e-mail'), @@ -474,7 +474,7 @@ function contact_mail_page() { '#required' => TRUE, ); $form['copy'] = array('#type' => 'checkbox', - '#title' => t('Send me a copy.'), + '#title' => t('Send yourself a copy.'), ); $form['submit'] = array('#type' => 'submit', '#value' => t('Send e-mail'), |