From 5d9c1d3fea2887e53b759d62fe07fc8e9ae1342f Mon Sep 17 00:00:00 2001 From: Kevin Ndung'u Date: Mon, 18 Jun 2018 00:09:32 +0300 Subject: [PATCH] Update message shown when unsharing a file Signed-off-by: Kevin Ndung'u --- apps/files_sharing/lib/Activity/Providers/Users.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_sharing/lib/Activity/Providers/Users.php b/apps/files_sharing/lib/Activity/Providers/Users.php index b5322db427..2de7e23621 100644 --- a/apps/files_sharing/lib/Activity/Providers/Users.php +++ b/apps/files_sharing/lib/Activity/Providers/Users.php @@ -92,7 +92,7 @@ class Users extends Base { } else if ($event->getSubject() === self::SUBJECT_SHARED_WITH_BY) { $subject = $this->l->t('{actor} shared {file} with you'); } else if ($event->getSubject() === self::SUBJECT_UNSHARED_BY) { - $subject = $this->l->t('{actor} removed you from {file}'); + $subject = $this->l->t('{actor} removed you from the share named {file}'); } else { throw new \InvalidArgumentException();