summaryrefslogtreecommitdiffstats
path: root/apps/comments/lib
diff options
context:
space:
mode:
Diffstat (limited to 'apps/comments/lib')
-rw-r--r--apps/comments/lib/Notification/Notifier.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/comments/lib/Notification/Notifier.php b/apps/comments/lib/Notification/Notifier.php
index df05f297301..3838a18f9f1 100644
--- a/apps/comments/lib/Notification/Notifier.php
+++ b/apps/comments/lib/Notification/Notifier.php
@@ -93,13 +93,13 @@ class Notifier implements INotifier {
$fileName = $nodes[0]->getName();
if($isDeletedActor) {
$subject = (string) $l->t(
- 'You were mentioned in a comment on "%s" by a now deleted user.',
+ 'A (now) deleted user mentioned you in a comment on "%s".',
[ $fileName ]
);
} else {
$subject = (string) $l->t(
- 'You were mentioned in a comment on "%s" by %s.',
- [ $fileName, $displayName ]
+ '%s mentioned you in a comment on "%s".',
+ [ $displayName, $fileName ]
);
}
$notification->setParsedSubject($subject);