UNPKG

1.6 kBJavaScriptView Raw
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.id = {}));
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 Indonesian = {
13 weekdays: {
14 shorthand: ["Min", "Sen", "Sel", "Rab", "Kam", "Jum", "Sab"],
15 longhand: ["Minggu", "Senin", "Selasa", "Rabu", "Kamis", "Jumat", "Sabtu"],
16 },
17 months: {
18 shorthand: [
19 "Jan",
20 "Feb",
21 "Mar",
22 "Apr",
23 "Mei",
24 "Jun",
25 "Jul",
26 "Agu",
27 "Sep",
28 "Okt",
29 "Nov",
30 "Des",
31 ],
32 longhand: [
33 "Januari",
34 "Februari",
35 "Maret",
36 "April",
37 "Mei",
38 "Juni",
39 "Juli",
40 "Agustus",
41 "September",
42 "Oktober",
43 "November",
44 "Desember",
45 ],
46 },
47 firstDayOfWeek: 1,
48 ordinal: function () {
49 return "";
50 },
51 time_24hr: true,
52 rangeSeparator: " - ",
53 };
54 fp.l10ns.id = Indonesian;
55 var id = fp.l10ns;
56
57 exports.Indonesian = Indonesian;
58 exports.default = id;
59
60 Object.defineProperty(exports, '__esModule', { value: true });
61
62})));