Created
December 31, 2012 16:54
-
-
Save greg606/4421238 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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