UNPKG

692 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var srCyrl = {
5 code: "sr-cyrl",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 7 // The week that contains Jan 1st is the first week of the year.
9 },
10 buttonText: {
11 prev: "Претходна",
12 next: "следећи",
13 today: "Данас",
14 month: "Месец",
15 week: "Недеља",
16 day: "Дан",
17 list: "Планер"
18 },
19 weekText: "Сед",
20 allDayText: "Цео дан",
21 moreLinkText: function(n) {
22 return "+ још " + n;
23 },
24 noEventsText: "Нема догађаја за приказ"
25 };
26
27 return srCyrl;
28
29}());