1 | (function (global, factory) {
|
2 | typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
|
3 | typeof define === 'function' && define.amd ? define(['exports'], factory) :
|
4 | (global = global || self, factory(global.lt = {}));
|
5 | }(this, function (exports) { 'use strict';
|
6 |
|
7 | var fp = typeof window !== "undefined" && window.flatpickr !== undefined
|
8 | ? window.flatpickr
|
9 | : {
|
10 | l10ns: {}
|
11 | };
|
12 | var Lithuanian = {
|
13 | weekdays: {
|
14 | shorthand: ["S", "Pr", "A", "T", "K", "Pn", "Š"],
|
15 | longhand: [
|
16 | "Sekmadienis",
|
17 | "Pirmadienis",
|
18 | "Antradienis",
|
19 | "Trečiadienis",
|
20 | "Ketvirtadienis",
|
21 | "Penktadienis",
|
22 | "Šeštadienis",
|
23 | ]
|
24 | },
|
25 | months: {
|
26 | shorthand: [
|
27 | "Sau",
|
28 | "Vas",
|
29 | "Kov",
|
30 | "Bal",
|
31 | "Geg",
|
32 | "Bir",
|
33 | "Lie",
|
34 | "Rgp",
|
35 | "Rgs",
|
36 | "Spl",
|
37 | "Lap",
|
38 | "Grd",
|
39 | ],
|
40 | longhand: [
|
41 | "Sausis",
|
42 | "Vasaris",
|
43 | "Kovas",
|
44 | "Balandis",
|
45 | "Gegužė",
|
46 | "Birželis",
|
47 | "Liepa",
|
48 | "Rugpjūtis",
|
49 | "Rugsėjis",
|
50 | "Spalis",
|
51 | "Lapkritis",
|
52 | "Gruodis",
|
53 | ]
|
54 | },
|
55 | firstDayOfWeek: 1,
|
56 | ordinal: function () {
|
57 | return "-a";
|
58 | },
|
59 | weekAbbreviation: "Sav",
|
60 | scrollTitle: "Keisti laiką pelės rateliu",
|
61 | toggleTitle: "Perjungti laiko formatą",
|
62 | time_24hr: true
|
63 | };
|
64 | fp.l10ns.lt = Lithuanian;
|
65 | var lt = fp.l10ns;
|
66 |
|
67 | exports.Lithuanian = Lithuanian;
|
68 | exports.default = lt;
|
69 |
|
70 | Object.defineProperty(exports, '__esModule', { value: true });
|
71 |
|
72 | }));
|