diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2021-12-09 08:48:03 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2021-12-09 08:49:17 +0100 |
commit | 22390479274c231d07f03fdc567dc87f010befbd (patch) | |
tree | f16623552b2eca1af4a5db555b79e39d5526a8f7 /apps/files_sharing/src | |
parent | a1d68c0fd681517ee276084e192f2342a6e6f5b9 (diff) | |
download | nextcloud-server-22390479274c231d07f03fdc567dc87f010befbd.tar.gz nextcloud-server-22390479274c231d07f03fdc567dc87f010befbd.zip |
Properly format sharing datepicker locale
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files_sharing/src')
-rw-r--r-- | apps/files_sharing/src/mixins/SharesMixin.js | 23 |
1 files changed, 15 insertions, 8 deletions
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'), }, } }, |