mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
refine invitation email
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
This commit is contained in:
parent
dd83055198
commit
b073b13d9f
1 changed files with 6 additions and 4 deletions
|
|
@ -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 . ')';
|
||||
|
|
|
|||
Loading…
Reference in a new issue