summaryrefslogtreecommitdiff
path: root/modules/contact
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-01-22 22:56:54 +0000
committerDries Buytaert <dries@buytaert.net>2010-01-22 22:56:54 +0000
commit4a10bf28dd381b10b44af18e00bc8bc9aa2d46b4 (patch)
tree1158d128816a5350d4b1e32cb3b44d0b27c22fe9 /modules/contact
parent5c057dfe6dcae6cdf29a22124264342122f99c58 (diff)
downloadbrdo-4a10bf28dd381b10b44af18e00bc8bc9aa2d46b4.tar.gz
brdo-4a10bf28dd381b10b44af18e00bc8bc9aa2d46b4.tar.bz2
- Patch #417244 by Dave Reid, arnd: contact mail greeting should be friendly and translatable.
Diffstat (limited to 'modules/contact')
-rw-r--r--modules/contact/contact.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/contact/contact.module b/modules/contact/contact.module
index a388e9c78..ff3cf164e 100644
--- a/modules/contact/contact.module
+++ b/modules/contact/contact.module
@@ -198,7 +198,7 @@ function contact_mail($key, &$message, $params) {
'!recipient-edit-url' => url('user/' . $params['recipient']->uid . '/edit', array('absolute' => TRUE, 'language' => $language)),
);
$message['subject'] .= t('[!site-name] !subject', $variables, array('langcode' => $language->language));
- $message['body'][] = t('!recipient-name,', $variables, array('langcode' => $language->language));
+ $message['body'][] = t('Hello !recipient-name,', $variables, array('langcode' => $language->language));
$message['body'][] = t("!sender-name (!sender-url) has sent you a message via your contact form (!form-url) at !site-name.", $variables, array('langcode' => $language->language));
$message['body'][] = t("If you don't want to receive such e-mails, you can change your settings at !recipient-edit-url.", $variables, array('langcode' => $language->language));
$message['body'][] = t('Message:', array(), array('langcode' => $language->language));