diff options
author | Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> | 2024-04-25 13:31:01 +0200 |
---|---|---|
committer | Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> | 2024-05-23 15:37:11 +0200 |
commit | 1ffdebd20d74d9aa8fcd0e9da1123b5c10c532a5 (patch) | |
tree | 93d764a68aa3fb6da9f18da8905ee5747d513c90 /apps | |
parent | 2fa099a6e1c905abe0d12167082e2946d8065a3a (diff) | |
download | nextcloud-server-1ffdebd20d74d9aa8fcd0e9da1123b5c10c532a5.tar.gz nextcloud-server-1ffdebd20d74d9aa8fcd0e9da1123b5c10c532a5.zip |
fix(dav): Replaces "Time:" with "Date and time:" in calendar invite email
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Diffstat (limited to 'apps')
-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 95c6b5739af..42a8479191b 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipService.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipService.php @@ -539,7 +539,7 @@ class IMipService { $data['meeting_title_html'] ?? $data['meeting_title'], $this->l10n->t('Title:'), $this->getAbsoluteImagePath('caldav/title.png'), $data['meeting_title'], '', IMipPlugin::IMIP_INDENT); if ($data['meeting_when'] !== '') { - $template->addBodyListItem($data['meeting_when_html'] ?? $data['meeting_when'], $this->l10n->t('Time:'), + $template->addBodyListItem($data['meeting_when_html'] ?? $data['meeting_when'], $this->l10n->t('Date and time:'), $this->getAbsoluteImagePath('caldav/time.png'), $data['meeting_when'], '', IMipPlugin::IMIP_INDENT); } if ($data['meeting_location'] !== '') { |