summaryrefslogtreecommitdiff
path: root/includes/mailer/users_mailer.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2018-08-29 21:55:32 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-29 23:46:32 +0200
commite8f8fc7f5f5eba315290bc8d45348c3a4d4bee79 (patch)
treef882e29ee1ca436ee98a93a4f8a489630a71b9c1 /includes/mailer/users_mailer.php
parent3a1164164791edbe30c7247b98585474867dd968 (diff)
Replaced gettext translation `_()` with `__()` that uses the Translator class
Diffstat (limited to 'includes/mailer/users_mailer.php')
-rw-r--r--includes/mailer/users_mailer.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/mailer/users_mailer.php b/includes/mailer/users_mailer.php
index b3f335d7..5f1e6e79 100644
--- a/includes/mailer/users_mailer.php
+++ b/includes/mailer/users_mailer.php
@@ -8,7 +8,7 @@ function mail_user_delete($user)
{
return engelsystem_email_to_user(
$user,
- '[engelsystem] ' . _('Your account has been deleted'),
- _('Your angelsystem account has been deleted. If you have any questions regarding your account deletion, please contact heaven.')
+ '[engelsystem] ' . __('Your account has been deleted'),
+ __('Your angelsystem account has been deleted. If you have any questions regarding your account deletion, please contact heaven.')
);
}