]> git.mxchange.org Git - friendica.git/commitdiff
Update src/Navigation/Notifications/Repository/Notify.php
authorMarekBenjamin <117765478+MarekBenjamin@users.noreply.github.com>
Fri, 23 Dec 2022 10:14:38 +0000 (11:14 +0100)
committerGitHub <noreply@github.com>
Fri, 23 Dec 2022 10:14:38 +0000 (11:14 +0100)
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
src/Navigation/Notifications/Repository/Notify.php

index ff69637c31a78f4260572b0f152b7ce8afc6b003..278451936d701a3839b325cd21e47d920affdaf0 100644 (file)
@@ -786,14 +786,14 @@ class Notify extends BaseRepository
                        if ($params['verb'] = Activity::LIKE) {
                                switch ($Notification->type) {
                                        case Model\Post\UserNotification::TYPE_DIRECT_COMMENT:
-                                               $subject    = $l10n->t('%1$s %2$s liked your post #%3$d', $subjectPrefix, $contact['name'], $item['parent']);
+                                               $subject = $l10n->t('%1$s %2$s liked your post #%3$d', $subjectPrefix, $contact['name'], $item['parent']);
                                                break;
                                        case Model\Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT:
-                                               $subject    = $l10n->t('%1$s %2$s liked your comment on #%3$d', $subjectPrefix, $contact['name'], $item['parent']);
+                                               $subject = $l10n->t('%1$s %2$s liked your comment on #%3$d', $subjectPrefix, $contact['name'], $item['parent']);
                                                break;
                                }
                        } else {
-                               $subject    = $l10n->t('%1$s Comment to conversation #%2$d by %3$s', $subjectPrefix, $item['parent'], $contact['name']);
+                               $subject = $l10n->t('%1$s Comment to conversation #%2$d by %3$s', $subjectPrefix, $item['parent'], $contact['name']);
                        }
                }