From e02ac4d14bab8d3d16275e06100d4220ebeb0c6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakob=20R=C3=B6hrl?= Date: Tue, 27 Oct 2020 11:06:35 +0100 Subject: [PATCH] Polite call notification for private calls MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakob Röhrl --- lib/Notification/Notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php index 2c5bd965bd7..e959c5123e6 100644 --- a/lib/Notification/Notifier.php +++ b/lib/Notification/Notifier.php @@ -563,7 +563,7 @@ protected function parseCall(INotification $notification, Room $room, IL10N $l): if ($user instanceof IUser) { if ($this->notificationManager->isPreparingPushNotification() || $room->hasSessionsInCall()) { $notification = $this->addActionButton($notification, $l->t('Answer call')); - $subject = $l->t('{user} wants to talk with you'); + $subject = $l->t('{user} would like to talk with you'); } else { $notification = $this->addActionButton($notification, $l->t('Call back')); $subject = $l->t('You missed a call from {user}');