diff --git a/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php b/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php index 5e103bfc5c..781baa2032 100644 --- a/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php +++ b/apps/dav/lib/CalDAV/Schedule/IMipPlugin.php @@ -378,11 +378,12 @@ class IMipPlugin extends SabreIMipPlugin { } } - $localeStart = $l10n->l('datetime', $dtstartDt, ['width' => 'medium']); + $localeStart = $l10n->l('weekdayName', $dtstartDt, ['width' => 'abbreviated']) . ', ' . + $l10n->l('datetime', $dtstartDt, ['width' => 'medium|short']); // always show full date with timezone if timezones are different if ($startTimezone !== $endTimezone) { - $localeEnd = $l10n->l('datetime', $dtendDt, ['width' => 'medium']); + $localeEnd = $l10n->l('datetime', $dtendDt, ['width' => 'medium|short']); return $localeStart . ' (' . $startTimezone . ') - ' . $localeEnd . ' (' . $endTimezone . ')'; @@ -390,9 +391,10 @@ class IMipPlugin extends SabreIMipPlugin { // show only end time if date is the same if ($this->isDayEqual($dtstartDt, $dtendDt)) { - $localeEnd = $l10n->l('time', $dtendDt, ['width' => 'medium']); + $localeEnd = $l10n->l('time', $dtendDt, ['width' => 'short']); } else { - $localeEnd = $l10n->l('datetime', $dtendDt, ['width' => 'medium']); + $localeEnd = $l10n->l('weekdayName', $dtendDt, ['width' => 'abbreviated']) . ', ' . + $l10n->l('datetime', $dtendDt, ['width' => 'medium|short']); } return $localeStart . ' - ' . $localeEnd . ' (' . $startTimezone . ')';