I have a rails application that uses fullcalendar. Sites have a language setting that is passed into fullcalendar. In the full calendar demo for languages (see http://fullcalendar.io/js/fullcalendar-2.6.1/demos/languages.html), the language setting determines the date formatting, in this case for the week view of the calendar in German, or 'de'
I'm using the same files in the application but I'm not seeing the same format when the calendar language is set to 'de':
Somewhere there is a file that is setting the format and overriding what fullcalendar would normally do. It's hard tracing things with everything minified so I dropped in the fullcalendar.js version and the documentation suggests that columnFormat is the attribute that determines the format here and this line in that file may be doing the formatting here "this.colHeadFormat = this.view.opt('columnFormat') || this.computeColHeadFormat();" at around line 5134, but I'm still not able to trace it. Can anyone give me suggestions?

