UNPKG

584 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var lt = {
5 code: 'lt',
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: 'Atgal',
12 next: 'Pirmyn',
13 today: 'Šiandien',
14 month: 'Mėnuo',
15 week: 'Savaitė',
16 day: 'Diena',
17 list: 'Darbotvarkė',
18 },
19 weekText: 'SAV',
20 allDayText: 'Visą dieną',
21 moreLinkText: 'daugiau',
22 noEventsText: 'Nėra įvykių rodyti',
23 };
24
25 return lt;
26
27}());