You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
639 B
29 lines
639 B
FullCalendar.globalLocales.push(function () {
|
|
'use strict';
|
|
|
|
var ka = {
|
|
code: 'ka',
|
|
week: {
|
|
dow: 1,
|
|
doy: 7,
|
|
},
|
|
buttonText: {
|
|
prev: 'წინა',
|
|
next: 'შემდეგი',
|
|
today: 'დღეს',
|
|
month: 'თვე',
|
|
week: 'კვირა',
|
|
day: 'დღე',
|
|
list: 'დღის წესრიგი',
|
|
},
|
|
weekText: 'კვ',
|
|
allDayText: 'მთელი დღე',
|
|
moreLinkText: function(n) {
|
|
return '+ კიდევ ' + n
|
|
},
|
|
noEventsText: 'ღონისძიებები არ არის',
|
|
};
|
|
|
|
return ka;
|
|
|
|
}());
|
|
|