Skip to content

Commit

Permalink
Update langDE.ts
Browse files Browse the repository at this point in the history
The current mothAbbr does not follow ISO8601, which is "Mrz" instead of "Mar" in germany.

Please see also datejs implementation: https://github.com/datejs/Datejs/blob/master/build/date-de-DE.js#L9

Another option would be to use "März" instead of "Mrz" - but "Mar" ist not correct.
  • Loading branch information
Stebeber authored and wangzhongxiang committed Mar 15, 2023
1 parent 0be0cfc commit 5e34634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/i18n/langDE.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export default {
'Juli', 'August', 'September', 'Oktober', 'November', 'Dezember'
],
monthAbbr: [
'Jan', 'Feb', 'Mar', 'Apr', 'Mai', 'Jun',
'Jan', 'Feb', 'Mrz', 'Apr', 'Mai', 'Jun',
'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez'
],
dayOfWeek: [
Expand Down

0 comments on commit 5e34634

Please sign in to comment.