Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2017-11-06 17:14:49 +0300
committerGitHub <noreply@github.com>2017-11-06 17:14:49 +0300
commit6c29ce4e027c8cab123acad4d96b16a2754ac20d (patch)
tree639daa8691e2cdde92fb1963efb489d0074ee442 /lib
parent0abb9755b2df8a6a64c9a22d9a234ec73d34bc9c (diff)
parente111da777a735d8ba6c38416f1602cbfea4d3eb8 (diff)
Merge pull request #6402 from nextcloud/dav-email-customization
Enhance calendar invitation emails
Diffstat (limited to 'lib')
-rw-r--r--lib/private/L10N/L10N.php2
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;
}