summaryrefslogtreecommitdiff
path: root/includes/helper
diff options
context:
space:
mode:
authorIgor Scheller <igor.scheller@igorshp.de>2018-09-15 14:58:31 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-09-15 14:58:31 +0200
commitd0abc27c079f058c40a74b89e54bd21ba4aad53e (patch)
tree2d42f2a3c99d4a01930832c4e257bd550cbe9ac5 /includes/helper
parent13d2786b7b51df927c8976dc767cc27e88bc8e84 (diff)
parent5456fea5031000a6325cdcae5f1e9d4c16b6ed50 (diff)
Merge remote-tracking branch 'MyIgel/translations'
Diffstat (limited to 'includes/helper')
-rw-r--r--includes/helper/email_helper.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/includes/helper/email_helper.php b/includes/helper/email_helper.php
index 8d1cb794..a0631550 100644
--- a/includes/helper/email_helper.php
+++ b/includes/helper/email_helper.php
@@ -20,10 +20,10 @@ function engelsystem_email_to_user($recipient_user, $title, $message, $not_if_it
$locale = $translator->getLocale();
$translator->setLocale($recipient_user['Sprache']);
- $message = sprintf(_('Hi %s,'), $recipient_user['Nick']) . "\n\n"
- . _('here is a message for you from the engelsystem:') . "\n\n"
+ $message = sprintf(__('Hi %s,'), $recipient_user['Nick']) . "\n\n"
+ . __('here is a message for you from the engelsystem:') . "\n\n"
. $message . "\n\n"
- . _('This email is autogenerated and has not been signed. You got this email because you are registered in the engelsystem.');
+ . __('This email is autogenerated and has not been signed. You got this email because you are registered in the engelsystem.');
$translator->setLocale($locale);
return engelsystem_email($recipient_user['email'], $title, $message);