Skip to content

Commit

Permalink
fix(i18n): fix the abbr of "March" for the DE language ("Mar" -> "Mrz) (
Browse files Browse the repository at this point in the history
#18387)

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
  • Loading branch information
stephanbehm authored Mar 15, 2023
1 parent 0be0cfc commit 5f49fbb
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 5f49fbb

Please sign in to comment.