Merge pull request #83 from Valdnet/patch-3

l10n: Add dot
pull/91/head
Klaus 2020-09-23 15:00:26 +02:00 committed by GitHub
commit 8fe48bfc15
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ class Provider implements IProvider {
if ($this->activityManager->getCurrentUserId() === $event->getAuthor()) {
$event->setParsedSubject($this->l->t('You deleted the room %s.', [$params['name']]));
} else {
$subject = $this->l->t('{user} deleted the room %s', [$params['name']]);
$subject = $this->l->t('{user} deleted the room %s.', [$params['name']]);
$this->setSubjects($event, $subject, [
'user' => $this->getUser($event->getAuthor()),