UNPKG

618 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var sr = {
5 code: "sr",
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: "Prethodna",
12 next: "Sledeći",
13 today: "Danas",
14 month: "Mеsеc",
15 week: "Nеdеlja",
16 day: "Dan",
17 list: "Planеr"
18 },
19 weekText: "Sed",
20 allDayText: "Cеo dan",
21 moreLinkText: function(n) {
22 return "+ još " + n;
23 },
24 noEventsText: "Nеma događaja za prikaz"
25 };
26
27 return sr;
28
29}());