diff options
author | Anna <anna@nextcloud.com> | 2023-02-13 14:19:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-13 14:19:16 +0100 |
commit | c05ae615766573f248e827b220b134accf502667 (patch) | |
tree | c9e2e786d13ec17c59eb4e32bf37e62c14735294 | |
parent | 9160b3791f7d009cfb7455024a1f08d69e14c507 (diff) | |
parent | 421df8d45664f055f56b8d08cd69617981dd92e7 (diff) | |
download | nextcloud-server-c05ae615766573f248e827b220b134accf502667.tar.gz nextcloud-server-c05ae615766573f248e827b220b134accf502667.zip |
Merge pull request #36674 from nextcloud/rakekniven-patch-2
l10n: Fixed grammar
-rw-r--r-- | apps/dav/lib/CalDAV/Schedule/IMipService.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CalDAV/Schedule/IMipService.php b/apps/dav/lib/CalDAV/Schedule/IMipService.php index 88f8bb8f54e..3e8e72bd2e4 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipService.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipService.php @@ -369,7 +369,7 @@ class IMipService { } elseif ($method === IMipPlugin::METHOD_REPLY) { // TRANSLATORS Subject for email, when an invitation is replied to. Ex: "Re: {{Event Name}}" $template->setSubject($this->l10n->t('Re: %1$s', [$summary])); - $template->addHeading($this->l10n->t('%1$s has responded your invitation', [$sender])); + $template->addHeading($this->l10n->t('%1$s has responded to your invitation', [$sender])); } else { // TRANSLATORS Subject for email, when an invitation is sent. Ex: "Invitation: {{Event Name}}" $template->setSubject($this->l10n->t('Invitation: %1$s', [$summary])); |