UNPKG

1.74 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.da = {}));
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 Danish = {
13 weekdays: {
14 shorthand: ["søn", "man", "tir", "ons", "tors", "fre", "lør"],
15 longhand: [
16 "søndag",
17 "mandag",
18 "tirsdag",
19 "onsdag",
20 "torsdag",
21 "fredag",
22 "lørdag",
23 ],
24 },
25 months: {
26 shorthand: [
27 "jan",
28 "feb",
29 "mar",
30 "apr",
31 "maj",
32 "jun",
33 "jul",
34 "aug",
35 "sep",
36 "okt",
37 "nov",
38 "dec",
39 ],
40 longhand: [
41 "januar",
42 "februar",
43 "marts",
44 "april",
45 "maj",
46 "juni",
47 "juli",
48 "august",
49 "september",
50 "oktober",
51 "november",
52 "december",
53 ],
54 },
55 ordinal: function () {
56 return ".";
57 },
58 firstDayOfWeek: 1,
59 rangeSeparator: " til ",
60 weekAbbreviation: "uge",
61 time_24hr: true,
62 };
63 fp.l10ns.da = Danish;
64 var da = fp.l10ns;
65
66 exports.Danish = Danish;
67 exports.default = da;
68
69 Object.defineProperty(exports, '__esModule', { value: true });
70
71})));