I'm trying to convert FullCalendar
to Spanish.
How can I change "Next Week", "Today", etc.?
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: ['一月', '二月', '三月', '四月', '五月', '六月', '七月',
'八月', '九月', '十月', '十一月', '十二月']
//...
})