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.ar = {}));
|
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 Arabic = {
|
13 | weekdays: {
|
14 | shorthand: ["أحد", "اثنين", "ثلاثاء", "أربعاء", "خميس", "جمعة", "سبت"],
|
15 | longhand: [
|
16 | "الأحد",
|
17 | "الاثنين",
|
18 | "الثلاثاء",
|
19 | "الأربعاء",
|
20 | "الخميس",
|
21 | "الجمعة",
|
22 | "السبت",
|
23 | ]
|
24 | },
|
25 | months: {
|
26 | shorthand: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
|
27 | longhand: [
|
28 | "يناير",
|
29 | "فبراير",
|
30 | "مارس",
|
31 | "أبريل",
|
32 | "مايو",
|
33 | "يونيو",
|
34 | "يوليو",
|
35 | "أغسطس",
|
36 | "سبتمبر",
|
37 | "أكتوبر",
|
38 | "نوفمبر",
|
39 | "ديسمبر",
|
40 | ]
|
41 | },
|
42 | rangeSeparator: " - "
|
43 | };
|
44 | fp.l10ns.ar = Arabic;
|
45 | var ar = fp.l10ns;
|
46 |
|
47 | exports.Arabic = Arabic;
|
48 | exports.default = ar;
|
49 |
|
50 | Object.defineProperty(exports, '__esModule', { value: true });
|
51 |
|
52 | }));
|