Skip to content

Commit

Permalink
Issue #4370: Wrong date formatting in agendaWeek with German locale
Browse files Browse the repository at this point in the history
This commit fixed the issue #4370:
With "lang" set to "de", the heading of agendaweek is missing a dot after the month number
Expected output for 2018-11-06:
"Di. 06.11."
Actual:
"Di. 06.11"

See this MCVE: http://jsfiddle.net/41sc3ed5/3
  • Loading branch information
Martin Ramm committed Nov 6, 2018
1 parent c59e5d4 commit 521b1b4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion locale/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,6 @@ FullCalendar.locale("de", {
eventLimitText: function(n) {
return "+ weitere " + n;
},
noEventsMessage: "Keine Ereignisse anzuzeigen"
noEventsMessage: "Keine Ereignisse anzuzeigen",
dayOfMonthFormat: 'ddd DD.MM.'
});

0 comments on commit 521b1b4

Please sign in to comment.