From be9c97c67da30377f36b94d29a9bb27f027f1f99 Mon Sep 17 00:00:00 2001 From: cazualdev <36430724+cazualdev@users.noreply.github.com> Date: Thu, 16 Dec 2021 07:24:02 -0500 Subject: [PATCH] Update de.js Updating the monthsShort value in the de.js locale to match the German standard like de-at and de-ch where there is a period to abbreviate the necessary months. --- src/locale/de.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/locale/de.js b/src/locale/de.js index 90f3fa769..de2da91d5 100644 --- a/src/locale/de.js +++ b/src/locale/de.js @@ -29,7 +29,7 @@ const locale = { weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'), weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'), months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'), - monthsShort: 'Jan_Feb_März_Apr_Mai_Juni_Juli_Aug_Sept_Okt_Nov_Dez'.split('_'), + monthsShort: 'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'), ordinal: n => `${n}.`, weekStart: 1, yearStart: 4,