UNPKG

634 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var sk = {
5 code: 'sk',
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4, // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: 'Predchádzajúci',
12 next: 'Nasledujúci',
13 today: 'Dnes',
14 month: 'Mesiac',
15 week: 'Týždeň',
16 day: 'Deň',
17 list: 'Rozvrh',
18 },
19 weekText: 'Ty',
20 allDayText: 'Celý deň',
21 moreLinkText: function(n) {
22 return '+ďalšie: ' + n
23 },
24 noEventsText: 'Žiadne akcie na zobrazenie',
25 };
26
27 return sk;
28
29}());