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.si = {}));
|
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 Sinhala = {
|
13 | weekdays: {
|
14 | shorthand: ["ඉ", "ස", "අ", "බ", "බ්ර", "සි", "සෙ"],
|
15 | longhand: [
|
16 | "ඉරිදා",
|
17 | "සඳුදා",
|
18 | "අඟහරුවාදා",
|
19 | "බදාදා",
|
20 | "බ්රහස්පතින්දා",
|
21 | "සිකුරාදා",
|
22 | "සෙනසුරාදා",
|
23 | ]
|
24 | },
|
25 | months: {
|
26 | shorthand: [
|
27 | "ජන",
|
28 | "පෙබ",
|
29 | "මාර්",
|
30 | "අප්රේ",
|
31 | "මැයි",
|
32 | "ජුනි",
|
33 | "ජූලි",
|
34 | "අගෝ",
|
35 | "සැප්",
|
36 | "ඔක්",
|
37 | "නොවැ",
|
38 | "දෙසැ",
|
39 | ],
|
40 | longhand: [
|
41 | "ජනවාරි",
|
42 | "පෙබරවාරි",
|
43 | "මාර්තු",
|
44 | "අප්රේල්",
|
45 | "මැයි",
|
46 | "ජුනි",
|
47 | "ජූලි",
|
48 | "අගෝස්තු",
|
49 | "සැප්තැම්බර්",
|
50 | "ඔක්තෝබර්",
|
51 | "නොවැම්බර්",
|
52 | "දෙසැම්බර්",
|
53 | ]
|
54 | },
|
55 | time_24hr: true
|
56 | };
|
57 | fp.l10ns.si = Sinhala;
|
58 | var si = fp.l10ns;
|
59 |
|
60 | exports.Sinhala = Sinhala;
|
61 | exports.default = si;
|
62 |
|
63 | Object.defineProperty(exports, '__esModule', { value: true });
|
64 |
|
65 | }));
|