Update message shown when unsharing a file

Signed-off-by: Kevin Ndung'u <kevgathuku@gmail.com>
This commit is contained in:
Kevin Ndung'u 2018-06-18 00:09:32 +03:00 committed by Morris Jobke
parent 83d99449d0
commit 1bd58c1718
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
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();