Merge pull request #9893 from kevgathuku/update-unshare-message

Update message shown when unsharing a file
This commit is contained in:
Julius Härtl 2018-06-18 16:44:54 +02:00 committed by GitHub
commit 5b60508af4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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();