Skip to content

Instantly share code, notes, and snippets.

@greg606
Created December 31, 2012 16:54
Show Gist options
  • Save greg606/4421238 to your computer and use it in GitHub Desktop.
Save greg606/4421238 to your computer and use it in GitHub Desktop.
var localOptions = {
buttonText: {
today: 'Dzisiaj',
month: 'Miesiąc',
day: 'Dzień',
week: 'Tydzień'
},
monthNames: ['Styczeń','Luty','Marzec','Kwiecień','Maj','Czerwiec','Lipiec','Sierpień','Wrzesień','Październik','Listopad','Grudzień'],
monthNamesShort: ['Sty','Lut','Mar','Kwi','Maj','Cze','Lip','Sie','Wrz','Paź','Lis','Gru'],
dayNames: ['Niedziela','Poniedziałek','Wtorek','Środa','Czwartek','Piątek','Sobota'],
dayNamesShort: ['Nie','Pon','Wto','Śro','Czw','Pią','Sob']
}
$('#calendar').fullCalendar($.extend({
events: events,
firstDay: 1
}, localOptions));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment