UNPKG

622 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var sq = {
5 code: 'sq',
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4, // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: 'mbrapa',
12 next: 'Përpara',
13 today: 'sot',
14 month: 'Muaj',
15 week: 'Javë',
16 day: 'Ditë',
17 list: 'Listë',
18 },
19 weekText: 'Ja',
20 allDayText: 'Gjithë ditën',
21 moreLinkText: function(n) {
22 return '+më tepër ' + n
23 },
24 noEventsText: 'Nuk ka evente për të shfaqur',
25 };
26
27 return sq;
28
29}());