UNPKG

1.91 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.nl = {}));
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 Dutch = {
13 weekdays: {
14 shorthand: ["zo", "ma", "di", "wo", "do", "vr", "za"],
15 longhand: [
16 "zondag",
17 "maandag",
18 "dinsdag",
19 "woensdag",
20 "donderdag",
21 "vrijdag",
22 "zaterdag",
23 ],
24 },
25 months: {
26 shorthand: [
27 "jan",
28 "feb",
29 "mrt",
30 "apr",
31 "mei",
32 "jun",
33 "jul",
34 "aug",
35 "sept",
36 "okt",
37 "nov",
38 "dec",
39 ],
40 longhand: [
41 "januari",
42 "februari",
43 "maart",
44 "april",
45 "mei",
46 "juni",
47 "juli",
48 "augustus",
49 "september",
50 "oktober",
51 "november",
52 "december",
53 ],
54 },
55 firstDayOfWeek: 1,
56 weekAbbreviation: "wk",
57 rangeSeparator: " t/m ",
58 scrollTitle: "Scroll voor volgende / vorige",
59 toggleTitle: "Klik om te wisselen",
60 time_24hr: true,
61 ordinal: function (nth) {
62 if (nth === 1 || nth === 8 || nth >= 20)
63 return "ste";
64 return "de";
65 },
66 };
67 fp.l10ns.nl = Dutch;
68 var nl = fp.l10ns;
69
70 exports.Dutch = Dutch;
71 exports.default = nl;
72
73 Object.defineProperty(exports, '__esModule', { value: true });
74
75})));