mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Fix reshare with user activity message
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
5d8014fff2
commit
9dca9ff8cd
1 changed files with 1 additions and 1 deletions
|
|
@ -80,7 +80,7 @@ class Users extends Base {
|
|||
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_USER_SELF) {
|
||||
$subject = $this->l->t('You removed {user} from {file}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_RESHARED_USER_BY) {
|
||||
$subject = $this->l->t('{actor} removed {user} from {file}');
|
||||
$subject = $this->l->t('{actor} shared {file} with {user}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_UNSHARED_USER_BY) {
|
||||
$subject = $this->l->t('{actor} removed {user} from {file}');
|
||||
} else if ($event->getSubject() === self::SUBJECT_SHARED_WITH_BY) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue