UNPKG

612 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var lv = {
5 code: "lv",
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: "Iepr.",
12 next: "Nāk.",
13 today: "Šodien",
14 month: "Mēnesis",
15 week: "Nedēļa",
16 day: "Diena",
17 list: "Dienas kārtība"
18 },
19 weekText: "Ned.",
20 allDayText: "Visu dienu",
21 moreLinkText: function(n) {
22 return "+vēl " + n;
23 },
24 noEventsText: "Nav notikumu"
25 };
26
27 return lv;
28
29}());