diff options
author | Kevin Ndung'u <kevgathuku@gmail.com> | 2018-06-18 00:09:32 +0300 |
---|---|---|
committer | Kevin Ndung'u <kevgathuku@gmail.com> | 2018-06-18 13:12:23 +0300 |
commit | 5d9c1d3fea2887e53b759d62fe07fc8e9ae1342f (patch) | |
tree | 586a17e7d47467621acb598700dd5682663c2151 /apps | |
parent | 0ad1f19a74a52e270b488dc04ffbbfd692cd68ce (diff) | |
download | nextcloud-server-5d9c1d3fea2887e53b759d62fe07fc8e9ae1342f.tar.gz nextcloud-server-5d9c1d3fea2887e53b759d62fe07fc8e9ae1342f.zip |
Update message shown when unsharing a file
Signed-off-by: Kevin Ndung'u <kevgathuku@gmail.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/lib/Activity/Providers/Users.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/Activity/Providers/Users.php b/apps/files_sharing/lib/Activity/Providers/Users.php index b5322db4270..2de7e23621e 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(); |