UNPKG

681 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var kk = {
5 code: 'kk',
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 kk;
28
29}());