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.ro = {}));
|
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 Romanian = {
|
13 | weekdays: {
|
14 | shorthand: ["Dum", "Lun", "Mar", "Mie", "Joi", "Vin", "Sâm"],
|
15 | longhand: [
|
16 | "Duminică",
|
17 | "Luni",
|
18 | "Marți",
|
19 | "Miercuri",
|
20 | "Joi",
|
21 | "Vineri",
|
22 | "Sâmbătă",
|
23 | ]
|
24 | },
|
25 | months: {
|
26 | shorthand: [
|
27 | "Ian",
|
28 | "Feb",
|
29 | "Mar",
|
30 | "Apr",
|
31 | "Mai",
|
32 | "Iun",
|
33 | "Iul",
|
34 | "Aug",
|
35 | "Sep",
|
36 | "Oct",
|
37 | "Noi",
|
38 | "Dec",
|
39 | ],
|
40 | longhand: [
|
41 | "Ianuarie",
|
42 | "Februarie",
|
43 | "Martie",
|
44 | "Aprilie",
|
45 | "Mai",
|
46 | "Iunie",
|
47 | "Iulie",
|
48 | "August",
|
49 | "Septembrie",
|
50 | "Octombrie",
|
51 | "Noiembrie",
|
52 | "Decembrie",
|
53 | ]
|
54 | },
|
55 | firstDayOfWeek: 1,
|
56 | time_24hr: true,
|
57 | ordinal: function () {
|
58 | return "";
|
59 | }
|
60 | };
|
61 | fp.l10ns.ro = Romanian;
|
62 | var ro = fp.l10ns;
|
63 |
|
64 | exports.Romanian = Romanian;
|
65 | exports.default = ro;
|
66 |
|
67 | Object.defineProperty(exports, '__esModule', { value: true });
|
68 |
|
69 | }));
|