Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Calviño Sánchez <danxuliu@gmail.com>2018-05-30 19:30:58 +0300
committerDaniel Calviño Sánchez <danxuliu@gmail.com>2018-05-30 19:30:58 +0300
commit64de577a943b84d04ff9a23fe15a3994cb651815 (patch)
tree7267c20398e4f90d9761e39a46ebfaee9701cbec /lib/Notification/Notifier.php
parent323d64eda2a066874722c503103d24375ef5dfe1 (diff)
Simplify notification wording
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Diffstat (limited to 'lib/Notification/Notifier.php')
-rw-r--r--lib/Notification/Notifier.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index b98800019..dc6aa6fbc 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -195,20 +195,20 @@ class Notifier implements INotifier {
} else if (!$richSubjectUser && !$isGuest && $richSubjectCall) {
$notification
->setParsedSubject(
- $l->t('You were mentioned in a group conversation by a user that has since been deleted: %s', [$room->getName()])
+ $l->t('You were mentioned in a group conversation by a deleted user: %s', [$room->getName()])
)
->setRichSubject(
- $l->t('You were mentioned in a group conversation by a user that has since been deleted: {call}'), [
+ $l->t('You were mentioned in a group conversation by a deleted user: {call}'), [
'call' => $richSubjectCall
]
);
} else if (!$richSubjectUser && !$isGuest && !$richSubjectCall) {
$notification
->setParsedSubject(
- $l->t('You were mentioned in a group conversation by a user that has since been deleted')
+ $l->t('You were mentioned in a group conversation by a deleted user')
)
->setRichSubject(
- $l->t('You were mentioned in a group conversation by a user that has since been deleted')
+ $l->t('You were mentioned in a group conversation by a deleted user')
);
} else if (!$richSubjectUser && $isGuest && $richSubjectCall) {
$notification