aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dfrn_notify.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-05-25 03:52:03 -0700
committerFriendika <info@friendika.com>2011-05-25 03:52:03 -0700
commit3ddb077466bea9ad5ed8a2ba279b52d79091f359 (patch)
treeff3cfb03f22d85098bd8fa0aee53edd9e5876bff /mod/dfrn_notify.php
parent2a679b1164207ee983a26cb6d06fef10d4b81bb0 (diff)
parentad2aded25986f423835ce2bafe78169235d374ce (diff)
downloadvolse-hubzilla-3ddb077466bea9ad5ed8a2ba279b52d79091f359.tar.gz
volse-hubzilla-3ddb077466bea9ad5ed8a2ba279b52d79091f359.tar.bz2
volse-hubzilla-3ddb077466bea9ad5ed8a2ba279b52d79091f359.zip
Merge pull request #110 from fabrixxm/master
Small tweak to a copule of translatable strings
Diffstat (limited to 'mod/dfrn_notify.php')
-rw-r--r--mod/dfrn_notify.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php
index 65fd29eb3..7aace856e 100644
--- a/mod/dfrn_notify.php
+++ b/mod/dfrn_notify.php
@@ -440,10 +440,10 @@ function dfrn_notify_post(&$a) {
require_once("include/EmailNotification.php");
EmailNotification::sendTextHtmlEmail(
$msg['notificationfromname'],
- t("Administrator@") . $a->get_hostname(),
+ t("Administrator") . '@' . $a->get_hostname(),
t("noreply") . '@' . $a->get_hostname(),
$importer['email'],
- $from . t(" commented on an item at ") . $a->config['sitename'],
+ sprintf( t('%s commented on an item at %s'), $from , $a->config['sitename']),
$email_html_body_tpl,
$email_text_body_tpl
);