How can I localize FullCalendar in jQuery?

wenceslao leon picture wenceslao leon · Oct 1, 2010 · Viewed 13.4k times · Source

I'm trying to convert FullCalendar to Spanish.

How can I change "Next Week", "Today", etc.?

Answer

tstyle picture tstyle · May 23, 2011

I ran into the same issue. The quickest way I found was to use the text/time customization hooks provided by full calendar:

$('#calendar').fullCalendar({
    events: "/calendar",

    //localize the month names to Chinese simplified
    monthNames: ['一月', '二月', '三月', '四月', '五月', '六月', '七月',
    '八月', '九月', '十月', '十一月', '十二月']

    //...
})