PluginProbe
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster / 1.7.4
SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster v1.7.4
2.7.0 2.6.0 trunk 1.1.0 1.1.4 1.2.1 1.2.2 1.2.3 1.2.5 1.2.9 1.3.1 1.3.2 1.5.0 1.5.1 1.5.4 1.5.7 1.5.8 1.5.9 1.6.2 1.6.5 1.6.8 1.7.2 1.7.4 1.7.5 1.7.9 All 43 releases
sellkit / assets / lib / flatpickr-locale / default.js

default.js in SellKit – Funnel builder and checkout optimizer for WooCommerce to sell more, faster 1.7.4, at assets/lib/flatpickr-locale/default.js

84 lines 2.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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.default = {}));
5 }(this, (function (exports) { 'use strict';
6
7 var english = {
8 weekdays: {
9 shorthand: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"],
10 longhand: [
11 "Sunday",
12 "Monday",
13 "Tuesday",
14 "Wednesday",
15 "Thursday",
16 "Friday",
17 "Saturday",
18 ],
19 },
20 months: {
21 shorthand: [
22 "Jan",
23 "Feb",
24 "Mar",
25 "Apr",
26 "May",
27 "Jun",
28 "Jul",
29 "Aug",
30 "Sep",
31 "Oct",
32 "Nov",
33 "Dec",
34 ],
35 longhand: [
36 "January",
37 "February",
38 "March",
39 "April",
40 "May",
41 "June",
42 "July",
43 "August",
44 "September",
45 "October",
46 "November",
47 "December",
48 ],
49 },
50 daysInMonth: [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31],
51 firstDayOfWeek: 0,
52 ordinal: function (nth) {
53 var s = nth % 100;
54 if (s > 3 && s < 21)
55 return "th";
56 switch (s % 10) {
57 case 1:
58 return "st";
59 case 2:
60 return "nd";
61 case 3:
62 return "rd";
63 default:
64 return "th";
65 }
66 },
67 rangeSeparator: " to ",
68 weekAbbreviation: "Wk",
69 scrollTitle: "Scroll to increment",
70 toggleTitle: "Click to toggle",
71 amPM: ["AM", "PM"],
72 yearAriaLabel: "Year",
73 hourAriaLabel: "Hour",
74 minuteAriaLabel: "Minute",
75 time_24hr: false,
76 };
77
78 exports.default = english;
79 exports.english = english;
80
81 Object.defineProperty(exports, '__esModule', { value: true });
82
83 })));
84