From: John Molakvoæ Date: Thu, 9 Dec 2021 07:48:03 +0000 (+0100) Subject: Properly format sharing datepicker locale X-Git-Tag: v23.0.1rc1~34^2~1 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=ac5385101cb780e7ac0938e433513e87afb46be3;p=nextcloud-server.git Properly format sharing datepicker locale Signed-off-by: John Molakvoæ --- diff --git a/apps/files_sharing/src/mixins/SharesMixin.js b/apps/files_sharing/src/mixins/SharesMixin.js index b4da09c1b1c..8fe6388e45b 100644 --- a/apps/files_sharing/src/mixins/SharesMixin.js +++ b/apps/files_sharing/src/mixins/SharesMixin.js @@ -122,17 +122,24 @@ export default { ? window.firstDay : 0 // sunday as default }, + + // Datepicker language lang() { - // fallback to default in case of unavailable data + const weekdaysShort = window.dayNamesShort + ? window.dayNamesShort // provided by nextcloud + : ['Sun.', 'Mon.', 'Tue.', 'Wed.', 'Thu.', 'Fri.', 'Sat.'] + const monthsShort = window.monthNamesShort + ? window.monthNamesShort // provided by nextcloud + : ['Jan.', 'Feb.', 'Mar.', 'Apr.', 'May.', 'Jun.', 'Jul.', 'Aug.', 'Sep.', 'Oct.', 'Nov.', 'Dec.'] + return { - days: window.dayNamesShort - ? window.dayNamesShort // provided by nextcloud - : ['Sun.', 'Mon.', 'Tue.', 'Wed.', 'Thu.', 'Fri.', 'Sat.'], - months: window.monthNamesShort - ? window.monthNamesShort // provided by nextcloud - : ['Jan.', 'Feb.', 'Mar.', 'Apr.', 'May.', 'Jun.', 'Jul.', 'Aug.', 'Sep.', 'Oct.', 'Nov.', 'Dec.'], + formatLocale: { + weekdaysMin: weekdaysShort, + weekdaysShort, + monthsShort, + }, placeholder: { - date: 'Select Date', // TODO: Translate + date: t('files_sharing', 'Select Date'), }, } },