diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-11-06 15:14:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-06 15:14:49 +0100 |
commit | 6c29ce4e027c8cab123acad4d96b16a2754ac20d (patch) | |
tree | 639daa8691e2cdde92fb1963efb489d0074ee442 /lib | |
parent | 0abb9755b2df8a6a64c9a22d9a234ec73d34bc9c (diff) | |
parent | e111da777a735d8ba6c38416f1602cbfea4d3eb8 (diff) | |
download | nextcloud-server-6c29ce4e027c8cab123acad4d96b16a2754ac20d.tar.gz nextcloud-server-6c29ce4e027c8cab123acad4d96b16a2754ac20d.zip |
Merge pull request #6402 from nextcloud/dav-email-customization
Enhance calendar invitation emails
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/L10N/L10N.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/private/L10N/L10N.php b/lib/private/L10N/L10N.php index 620c99dd1ec..19db04a7cd4 100644 --- a/lib/private/L10N/L10N.php +++ b/lib/private/L10N/L10N.php @@ -169,6 +169,8 @@ class L10N implements IL10N { return (string) Calendar::formatDatetime($value, $width, $locale); case 'time': return (string) Calendar::formatTime($value, $width, $locale); + case 'weekdayName': + return (string) Calendar::getWeekdayName($value, $width, $locale); default: return false; } |