Bumped AdminLTE and its libraries from 3.0.4 to 3.1 This broke Calendar support will fix
This commit is contained in:
@@ -1,32 +1,29 @@
|
||||
(function (global, factory) {
|
||||
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
||||
typeof define === 'function' && define.amd ? define(factory) :
|
||||
(global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sr = factory()));
|
||||
}(this, function () { 'use strict';
|
||||
FullCalendar.globalLocales.push(function () {
|
||||
'use strict';
|
||||
|
||||
var sr = {
|
||||
code: "sr",
|
||||
week: {
|
||||
dow: 1,
|
||||
doy: 7 // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: "Prethodna",
|
||||
next: "Sledeći",
|
||||
today: "Danas",
|
||||
month: "Mеsеc",
|
||||
week: "Nеdеlja",
|
||||
day: "Dan",
|
||||
list: "Planеr"
|
||||
},
|
||||
weekLabel: "Sed",
|
||||
allDayText: "Cеo dan",
|
||||
eventLimitText: function (n) {
|
||||
return "+ još " + n;
|
||||
},
|
||||
noEventsMessage: "Nеma događaja za prikaz"
|
||||
};
|
||||
var sr = {
|
||||
code: 'sr',
|
||||
week: {
|
||||
dow: 1, // Monday is the first day of the week.
|
||||
doy: 7, // The week that contains Jan 1st is the first week of the year.
|
||||
},
|
||||
buttonText: {
|
||||
prev: 'Prethodna',
|
||||
next: 'Sledeći',
|
||||
today: 'Danas',
|
||||
month: 'Mеsеc',
|
||||
week: 'Nеdеlja',
|
||||
day: 'Dan',
|
||||
list: 'Planеr',
|
||||
},
|
||||
weekText: 'Sed',
|
||||
allDayText: 'Cеo dan',
|
||||
moreLinkText: function(n) {
|
||||
return '+ još ' + n
|
||||
},
|
||||
noEventsText: 'Nеma događaja za prikaz',
|
||||
};
|
||||
|
||||
return sr;
|
||||
return sr;
|
||||
|
||||
}));
|
||||
}());
|
||||
|
||||
Reference in New Issue
Block a user