@purpurds/calendar 8.3.0 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/LICENSE.txt +2 -2
- package/dist/calendar.cjs.js +1 -1
- package/dist/calendar.cjs.js.map +1 -1
- package/dist/calendar.es.js +475 -475
- package/dist/calendar.es.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +4 -4
package/dist/calendar.es.js
CHANGED
|
@@ -165,22 +165,22 @@ var U;
|
|
|
165
165
|
e.weeks_before_enter = "weeks_before_enter", e.weeks_before_exit = "weeks_before_exit", e.weeks_after_enter = "weeks_after_enter", e.weeks_after_exit = "weeks_after_exit", e.caption_after_enter = "caption_after_enter", e.caption_after_exit = "caption_after_exit", e.caption_before_enter = "caption_before_enter", e.caption_before_exit = "caption_before_exit";
|
|
166
166
|
})(U || (U = {}));
|
|
167
167
|
const Ha = 6048e5, mr = 864e5, Rt = Symbol.for("constructDateFrom");
|
|
168
|
-
function
|
|
168
|
+
function _(e, a) {
|
|
169
169
|
return typeof e == "function" ? e(a) : e && typeof e == "object" && Rt in e ? e[Rt](a) : e instanceof Date ? new e.constructor(a) : new Date(a);
|
|
170
170
|
}
|
|
171
171
|
function S(e, a) {
|
|
172
|
-
return
|
|
172
|
+
return _(a || e, e);
|
|
173
173
|
}
|
|
174
174
|
function Xa(e, a, t) {
|
|
175
175
|
const n = S(e, t == null ? void 0 : t.in);
|
|
176
|
-
return isNaN(a) ?
|
|
176
|
+
return isNaN(a) ? _(e, NaN) : (a && n.setDate(n.getDate() + a), n);
|
|
177
177
|
}
|
|
178
|
-
function
|
|
178
|
+
function Oa(e, a, t) {
|
|
179
179
|
const n = S(e, t == null ? void 0 : t.in);
|
|
180
|
-
if (isNaN(a)) return
|
|
180
|
+
if (isNaN(a)) return _(e, NaN);
|
|
181
181
|
if (!a)
|
|
182
182
|
return n;
|
|
183
|
-
const r = n.getDate(), s =
|
|
183
|
+
const r = n.getDate(), s = _(e, n.getTime());
|
|
184
184
|
s.setMonth(n.getMonth() + a + 1, 0);
|
|
185
185
|
const m = s.getDate();
|
|
186
186
|
return r >= m ? s : (n.setFullYear(
|
|
@@ -201,10 +201,10 @@ function ve(e, a) {
|
|
|
201
201
|
function Ye(e, a) {
|
|
202
202
|
return ve(e, { ...a, weekStartsOn: 1 });
|
|
203
203
|
}
|
|
204
|
-
function
|
|
205
|
-
const t = S(e, a == null ? void 0 : a.in), n = t.getFullYear(), r =
|
|
204
|
+
function _a(e, a) {
|
|
205
|
+
const t = S(e, a == null ? void 0 : a.in), n = t.getFullYear(), r = _(t, 0);
|
|
206
206
|
r.setFullYear(n + 1, 0, 4), r.setHours(0, 0, 0, 0);
|
|
207
|
-
const s = Ye(r), m =
|
|
207
|
+
const s = Ye(r), m = _(t, 0);
|
|
208
208
|
m.setFullYear(n, 0, 4), m.setHours(0, 0, 0, 0);
|
|
209
209
|
const u = Ye(m);
|
|
210
210
|
return t.getTime() >= s.getTime() ? n + 1 : t.getTime() >= u.getTime() ? n : n - 1;
|
|
@@ -224,7 +224,7 @@ function Qt(e) {
|
|
|
224
224
|
return t.setUTCFullYear(a.getFullYear()), +e - +t;
|
|
225
225
|
}
|
|
226
226
|
function je(e, ...a) {
|
|
227
|
-
const t =
|
|
227
|
+
const t = _.bind(
|
|
228
228
|
null,
|
|
229
229
|
e || a.find((n) => typeof n == "object")
|
|
230
230
|
);
|
|
@@ -243,30 +243,30 @@ function Fa(e, a, t) {
|
|
|
243
243
|
return Math.round((u - l) / mr);
|
|
244
244
|
}
|
|
245
245
|
function cr(e, a) {
|
|
246
|
-
const t =
|
|
246
|
+
const t = _a(e, a), n = _(e, 0);
|
|
247
247
|
return n.setFullYear(t, 0, 4), n.setHours(0, 0, 0, 0), Ye(n);
|
|
248
248
|
}
|
|
249
249
|
function hr(e, a, t) {
|
|
250
250
|
return Xa(e, a * 7, t);
|
|
251
251
|
}
|
|
252
252
|
function fr(e, a, t) {
|
|
253
|
-
return
|
|
253
|
+
return Oa(e, a * 12, t);
|
|
254
254
|
}
|
|
255
255
|
function gr(e, a) {
|
|
256
256
|
let t, n = a == null ? void 0 : a.in;
|
|
257
257
|
return e.forEach((r) => {
|
|
258
|
-
!n && typeof r == "object" && (n =
|
|
258
|
+
!n && typeof r == "object" && (n = _.bind(null, r));
|
|
259
259
|
const s = S(r, n);
|
|
260
260
|
(!t || t < s || isNaN(+s)) && (t = s);
|
|
261
|
-
}),
|
|
261
|
+
}), _(n, t || NaN);
|
|
262
262
|
}
|
|
263
263
|
function pr(e, a) {
|
|
264
264
|
let t, n = a == null ? void 0 : a.in;
|
|
265
265
|
return e.forEach((r) => {
|
|
266
|
-
!n && typeof r == "object" && (n =
|
|
266
|
+
!n && typeof r == "object" && (n = _.bind(null, r));
|
|
267
267
|
const s = S(r, n);
|
|
268
268
|
(!t || t > s || isNaN(+s)) && (t = s);
|
|
269
|
-
}),
|
|
269
|
+
}), _(n, t || NaN);
|
|
270
270
|
}
|
|
271
271
|
function br(e, a, t) {
|
|
272
272
|
const [n, r] = je(
|
|
@@ -306,7 +306,7 @@ function Mr(e, a) {
|
|
|
306
306
|
let u = 1;
|
|
307
307
|
const l = [];
|
|
308
308
|
for (; +m <= s; )
|
|
309
|
-
l.push(
|
|
309
|
+
l.push(_(t, m)), m.setMonth(m.getMonth() + u);
|
|
310
310
|
return r ? l.reverse() : l;
|
|
311
311
|
}
|
|
312
312
|
function kr(e, a) {
|
|
@@ -566,7 +566,7 @@ const Tr = {
|
|
|
566
566
|
evening: "in the evening",
|
|
567
567
|
night: "at night"
|
|
568
568
|
}
|
|
569
|
-
},
|
|
569
|
+
}, Or = (e, a) => {
|
|
570
570
|
const t = Number(e), n = t % 100;
|
|
571
571
|
if (n > 20 || n < 10)
|
|
572
572
|
switch (n % 10) {
|
|
@@ -579,7 +579,7 @@ const Tr = {
|
|
|
579
579
|
}
|
|
580
580
|
return t + "th";
|
|
581
581
|
}, ye = {
|
|
582
|
-
ordinalNumber:
|
|
582
|
+
ordinalNumber: Or,
|
|
583
583
|
era: i({
|
|
584
584
|
values: Tr,
|
|
585
585
|
defaultWidth: "wide"
|
|
@@ -611,7 +611,7 @@ function o(e) {
|
|
|
611
611
|
return null;
|
|
612
612
|
const m = s[0], u = n && e.parsePatterns[n] || e.parsePatterns[e.defaultParseWidth], l = Array.isArray(u) ? Fr(u, (h) => h.test(m)) : (
|
|
613
613
|
// [TODO] -- I challenge you to fix the type
|
|
614
|
-
|
|
614
|
+
_r(u, (h) => h.test(m))
|
|
615
615
|
);
|
|
616
616
|
let c;
|
|
617
617
|
c = e.valueCallback ? e.valueCallback(l) : l, c = t.valueCallback ? (
|
|
@@ -622,7 +622,7 @@ function o(e) {
|
|
|
622
622
|
return { value: c, rest: p };
|
|
623
623
|
};
|
|
624
624
|
}
|
|
625
|
-
function
|
|
625
|
+
function _r(e, a) {
|
|
626
626
|
for (const t in e)
|
|
627
627
|
if (Object.prototype.hasOwnProperty.call(e, t) && a(e[t]))
|
|
628
628
|
return t;
|
|
@@ -770,16 +770,16 @@ function La(e, a) {
|
|
|
770
770
|
}
|
|
771
771
|
function qa(e, a) {
|
|
772
772
|
var p, h, b, w;
|
|
773
|
-
const t = S(e, a == null ? void 0 : a.in), n = t.getFullYear(), r = Le(), s = (a == null ? void 0 : a.firstWeekContainsDate) ?? ((h = (p = a == null ? void 0 : a.locale) == null ? void 0 : p.options) == null ? void 0 : h.firstWeekContainsDate) ?? r.firstWeekContainsDate ?? ((w = (b = r.locale) == null ? void 0 : b.options) == null ? void 0 : w.firstWeekContainsDate) ?? 1, m =
|
|
773
|
+
const t = S(e, a == null ? void 0 : a.in), n = t.getFullYear(), r = Le(), s = (a == null ? void 0 : a.firstWeekContainsDate) ?? ((h = (p = a == null ? void 0 : a.locale) == null ? void 0 : p.options) == null ? void 0 : h.firstWeekContainsDate) ?? r.firstWeekContainsDate ?? ((w = (b = r.locale) == null ? void 0 : b.options) == null ? void 0 : w.firstWeekContainsDate) ?? 1, m = _((a == null ? void 0 : a.in) || e, 0);
|
|
774
774
|
m.setFullYear(n + 1, 0, s), m.setHours(0, 0, 0, 0);
|
|
775
|
-
const u = ve(m, a), l =
|
|
775
|
+
const u = ve(m, a), l = _((a == null ? void 0 : a.in) || e, 0);
|
|
776
776
|
l.setFullYear(n, 0, s), l.setHours(0, 0, 0, 0);
|
|
777
777
|
const c = ve(l, a);
|
|
778
778
|
return +t >= +u ? n + 1 : +t >= +c ? n : n - 1;
|
|
779
779
|
}
|
|
780
780
|
function ei(e, a) {
|
|
781
781
|
var u, l, c, p;
|
|
782
|
-
const t = Le(), n = (a == null ? void 0 : a.firstWeekContainsDate) ?? ((l = (u = a == null ? void 0 : a.locale) == null ? void 0 : u.options) == null ? void 0 : l.firstWeekContainsDate) ?? t.firstWeekContainsDate ?? ((p = (c = t.locale) == null ? void 0 : c.options) == null ? void 0 : p.firstWeekContainsDate) ?? 1, r = qa(e, a), s =
|
|
782
|
+
const t = Le(), n = (a == null ? void 0 : a.firstWeekContainsDate) ?? ((l = (u = a == null ? void 0 : a.locale) == null ? void 0 : u.options) == null ? void 0 : l.firstWeekContainsDate) ?? t.firstWeekContainsDate ?? ((p = (c = t.locale) == null ? void 0 : c.options) == null ? void 0 : p.firstWeekContainsDate) ?? 1, r = qa(e, a), s = _((a == null ? void 0 : a.in) || e, 0);
|
|
783
783
|
return s.setFullYear(r, 0, n), s.setHours(0, 0, 0, 0), ve(s, a);
|
|
784
784
|
}
|
|
785
785
|
function Ga(e, a) {
|
|
@@ -889,7 +889,7 @@ const pe = {
|
|
|
889
889
|
},
|
|
890
890
|
// ISO week-numbering year
|
|
891
891
|
R: function(e, a) {
|
|
892
|
-
const t =
|
|
892
|
+
const t = _a(e);
|
|
893
893
|
return V(t, a.length);
|
|
894
894
|
},
|
|
895
895
|
// Extended year. This is a single number designating the year of this calendar system.
|
|
@@ -1526,7 +1526,7 @@ function pi(e) {
|
|
|
1526
1526
|
return a ? a[1].replace(hi, "'") : e;
|
|
1527
1527
|
}
|
|
1528
1528
|
function bi(e, a) {
|
|
1529
|
-
const t = S(e, a == null ? void 0 : a.in), n = t.getFullYear(), r = t.getMonth(), s =
|
|
1529
|
+
const t = S(e, a == null ? void 0 : a.in), n = t.getFullYear(), r = t.getMonth(), s = _(t, 0);
|
|
1530
1530
|
return s.setFullYear(n, r + 1, 0), s.setHours(0, 0, 0, 0), s.getDate();
|
|
1531
1531
|
}
|
|
1532
1532
|
function vi(e, a) {
|
|
@@ -1541,7 +1541,7 @@ function yi(e, a) {
|
|
|
1541
1541
|
function Pi(e, a) {
|
|
1542
1542
|
return +S(e) < +S(a);
|
|
1543
1543
|
}
|
|
1544
|
-
function
|
|
1544
|
+
function O(e, a, t) {
|
|
1545
1545
|
const [n, r] = je(
|
|
1546
1546
|
t == null ? void 0 : t.in,
|
|
1547
1547
|
e,
|
|
@@ -1566,14 +1566,14 @@ function ki(e, a, t) {
|
|
|
1566
1566
|
return n.getFullYear() === r.getFullYear();
|
|
1567
1567
|
}
|
|
1568
1568
|
function $i(e, a, t) {
|
|
1569
|
-
const n = S(e, t == null ? void 0 : t.in), r = n.getFullYear(), s = n.getDate(), m =
|
|
1569
|
+
const n = S(e, t == null ? void 0 : t.in), r = n.getFullYear(), s = n.getDate(), m = _(e, 0);
|
|
1570
1570
|
m.setFullYear(r, a, 15), m.setHours(0, 0, 0, 0);
|
|
1571
1571
|
const u = bi(m);
|
|
1572
1572
|
return n.setMonth(a, Math.min(s, u)), n;
|
|
1573
1573
|
}
|
|
1574
1574
|
function Wi(e, a, t) {
|
|
1575
1575
|
const n = S(e, t == null ? void 0 : t.in);
|
|
1576
|
-
return isNaN(+n) ?
|
|
1576
|
+
return isNaN(+n) ? _(e, NaN) : (n.setFullYear(a), n);
|
|
1577
1577
|
}
|
|
1578
1578
|
const Ut = 5, ji = 4;
|
|
1579
1579
|
function Di(e, a) {
|
|
@@ -1607,7 +1607,7 @@ class fe {
|
|
|
1607
1607
|
return (s = this.overrides) != null && s.addDays ? this.overrides.addDays(n, r) : Xa(n, r);
|
|
1608
1608
|
}, this.addMonths = (n, r) => {
|
|
1609
1609
|
var s;
|
|
1610
|
-
return (s = this.overrides) != null && s.addMonths ? this.overrides.addMonths(n, r) :
|
|
1610
|
+
return (s = this.overrides) != null && s.addMonths ? this.overrides.addMonths(n, r) : Oa(n, r);
|
|
1611
1611
|
}, this.addWeeks = (n, r) => {
|
|
1612
1612
|
var s;
|
|
1613
1613
|
return (s = this.overrides) != null && s.addWeeks ? this.overrides.addWeeks(n, r) : hr(n, r);
|
|
@@ -1878,7 +1878,7 @@ function Xi(e) {
|
|
|
1878
1878
|
t.focused && ((s = r.current) == null || s.focus());
|
|
1879
1879
|
}, [t.focused]), v.createElement("button", { ref: r, ...n });
|
|
1880
1880
|
}
|
|
1881
|
-
function
|
|
1881
|
+
function Oi(e) {
|
|
1882
1882
|
const { options: a, className: t, components: n, classNames: r, ...s } = e, m = [r[P.Dropdown], t].join(" "), u = a == null ? void 0 : a.find(({ value: l }) => l === s.value);
|
|
1883
1883
|
return v.createElement(
|
|
1884
1884
|
"span",
|
|
@@ -1892,7 +1892,7 @@ function _i(e) {
|
|
|
1892
1892
|
)
|
|
1893
1893
|
);
|
|
1894
1894
|
}
|
|
1895
|
-
function
|
|
1895
|
+
function _i(e) {
|
|
1896
1896
|
return v.createElement("div", { ...e });
|
|
1897
1897
|
}
|
|
1898
1898
|
function Fi(e) {
|
|
@@ -1997,8 +1997,8 @@ const io = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
1997
1997
|
Chevron: Vi,
|
|
1998
1998
|
Day: Hi,
|
|
1999
1999
|
DayButton: Xi,
|
|
2000
|
-
Dropdown:
|
|
2001
|
-
DropdownNav:
|
|
2000
|
+
Dropdown: Oi,
|
|
2001
|
+
DropdownNav: _i,
|
|
2002
2002
|
Footer: Fi,
|
|
2003
2003
|
Month: Ai,
|
|
2004
2004
|
MonthCaption: Yi,
|
|
@@ -2236,7 +2236,7 @@ function Xo(e, a, { classNames: t, months: n, focused: r, dateLib: s }) {
|
|
|
2236
2236
|
}
|
|
2237
2237
|
});
|
|
2238
2238
|
}
|
|
2239
|
-
function
|
|
2239
|
+
function Oo(e, a, t, n) {
|
|
2240
2240
|
const r = e[0], s = e[e.length - 1], { ISOWeek: m, fixedWeeks: u, broadcastCalendar: l } = t ?? {}, { addDays: c, differenceInCalendarDays: p, differenceInCalendarMonths: h, endOfBroadcastWeek: b, endOfISOWeek: w, endOfMonth: k, endOfWeek: j, isAfter: M, startOfBroadcastWeek: $, startOfISOWeek: W, startOfWeek: y } = n, N = l ? $(r, n) : m ? W(r) : y(r), f = l ? b(s) : m ? w(k(s)) : j(k(s)), x = p(f, N), D = h(s, r) + 1, T = [];
|
|
2241
2241
|
for (let q = 0; q <= x; q++) {
|
|
2242
2242
|
const ae = c(N, q);
|
|
@@ -2254,7 +2254,7 @@ function _o(e, a, t, n) {
|
|
|
2254
2254
|
}
|
|
2255
2255
|
return T;
|
|
2256
2256
|
}
|
|
2257
|
-
function
|
|
2257
|
+
function _o(e) {
|
|
2258
2258
|
const a = [];
|
|
2259
2259
|
return e.reduce((t, n) => {
|
|
2260
2260
|
const r = n.weeks.reduce((s, m) => [...s, ...m.days], a);
|
|
@@ -2345,7 +2345,7 @@ function Go(e, a) {
|
|
|
2345
2345
|
const x = ea(e, t, n, a);
|
|
2346
2346
|
l(x);
|
|
2347
2347
|
}, [e.timeZone]);
|
|
2348
|
-
const c = Fo(u, n, e, a), p =
|
|
2348
|
+
const c = Fo(u, n, e, a), p = Oo(c, e.endMonth ? s(e.endMonth) : void 0, e, a), h = Ao(c, p, e, a), b = qo(h), w = _o(h), k = Lo(u, t, e, a), j = Io(u, n, e, a), { disableNavigation: M, onMonthChange: $ } = e, W = (x) => b.some((D) => D.days.some((T) => T.isEqualTo(x))), y = (x) => {
|
|
2349
2349
|
if (M)
|
|
2350
2350
|
return;
|
|
2351
2351
|
let D = r(x);
|
|
@@ -2569,7 +2569,7 @@ function ns(e) {
|
|
|
2569
2569
|
a.formatters,
|
|
2570
2570
|
a.labels,
|
|
2571
2571
|
a.classNames
|
|
2572
|
-
]), { captionLayout: l, mode: c, navLayout: p, numberOfMonths: h = 1, onDayBlur: b, onDayClick: w, onDayFocus: k, onDayKeyDown: j, onDayMouseEnter: M, onDayMouseLeave: $, onNextClick: W, onPrevClick: y, showWeekNumber: N, styles: f } = a, { formatCaption: x, formatDay: D, formatMonthDropdown: T, formatWeekNumber: F, formatWeekNumberHeader: L, formatWeekdayName: q, formatYearDropdown: ae } = n, xe = Go(a, s), { days: ze, months: Se, navStart: Re, navEnd: nt, previousMonth: ne, nextMonth: re, goToMonth: le } = xe, rt = Ni(ze, a, Re, nt, s), { isSelected: Te, select: Ce, selected: Qe } = as(a, s) ?? {}, { blur:
|
|
2572
|
+
]), { captionLayout: l, mode: c, navLayout: p, numberOfMonths: h = 1, onDayBlur: b, onDayClick: w, onDayFocus: k, onDayKeyDown: j, onDayMouseEnter: M, onDayMouseLeave: $, onNextClick: W, onPrevClick: y, showWeekNumber: N, styles: f } = a, { formatCaption: x, formatDay: D, formatMonthDropdown: T, formatWeekNumber: F, formatWeekNumberHeader: L, formatWeekdayName: q, formatYearDropdown: ae } = n, xe = Go(a, s), { days: ze, months: Se, navStart: Re, navEnd: nt, previousMonth: ne, nextMonth: re, goToMonth: le } = xe, rt = Ni(ze, a, Re, nt, s), { isSelected: Te, select: Ce, selected: Qe } = as(a, s) ?? {}, { blur: _t, focused: Ke, isFocusTarget: zn, moveFocus: Ft, setFocused: Je } = Ko(a, xe, rt, Te ?? (() => !1), s), { labelDayButton: Sn, labelGridcell: Nn, labelGrid: Tn, labelMonthDropdown: Cn, labelNav: At, labelPrevious: En, labelNext: Vn, labelWeekday: Hn, labelWeekNumber: Xn, labelWeekNumberHeader: On, labelYearDropdown: _n } = r, Fn = ut(() => yo(s, a.ISOWeek), [s, a.ISOWeek]), Yt = c !== void 0 || w !== void 0, it = ee(() => {
|
|
2573
2573
|
ne && (le(ne), y == null || y(ne));
|
|
2574
2574
|
}, [ne, le, y]), ot = ee(() => {
|
|
2575
2575
|
re && (le(re), W == null || W(re));
|
|
@@ -2578,8 +2578,8 @@ function ns(e) {
|
|
|
2578
2578
|
}, [Ce, w, Je]), Yn = ee((z, H) => (C) => {
|
|
2579
2579
|
Je(z), k == null || k(z.date, H, C);
|
|
2580
2580
|
}, [k, Je]), In = ee((z, H) => (C) => {
|
|
2581
|
-
|
|
2582
|
-
}, [
|
|
2581
|
+
_t(), b == null || b(z.date, H, C);
|
|
2582
|
+
}, [_t, b]), Ln = ee((z, H) => (C) => {
|
|
2583
2583
|
const ge = {
|
|
2584
2584
|
ArrowLeft: [
|
|
2585
2585
|
C.shiftKey ? "month" : "day",
|
|
@@ -2662,7 +2662,7 @@ function ns(e) {
|
|
|
2662
2662
|
t.DropdownNav,
|
|
2663
2663
|
{ className: u[P.Dropdowns], style: f == null ? void 0 : f[P.Dropdowns] },
|
|
2664
2664
|
l === "dropdown" || l === "dropdown-months" ? v.createElement(t.MonthsDropdown, { className: u[P.MonthsDropdown], "aria-label": Cn(), classNames: u, components: t, disabled: !!a.disableNavigation, onChange: Rn(z.date), options: C, style: f == null ? void 0 : f[P.Dropdown], value: s.getMonth(z.date) }) : v.createElement("span", null, T(z.date, s)),
|
|
2665
|
-
l === "dropdown" || l === "dropdown-years" ? v.createElement(t.YearsDropdown, { className: u[P.YearsDropdown], "aria-label":
|
|
2665
|
+
l === "dropdown" || l === "dropdown-years" ? v.createElement(t.YearsDropdown, { className: u[P.YearsDropdown], "aria-label": _n(s.options), classNames: u, components: t, disabled: !!a.disableNavigation, onChange: Qn(z.date), options: ge, style: f == null ? void 0 : f[P.Dropdown], value: s.getYear(z.date) }) : v.createElement("span", null, ae(z.date, s)),
|
|
2666
2666
|
v.createElement("span", { role: "status", "aria-live": "polite", style: {
|
|
2667
2667
|
border: 0,
|
|
2668
2668
|
clip: "rect(0 0 0 0)",
|
|
@@ -2688,7 +2688,7 @@ function ns(e) {
|
|
|
2688
2688
|
!a.hideWeekdays && v.createElement(
|
|
2689
2689
|
t.Weekdays,
|
|
2690
2690
|
{ "data-animated-weekdays": a.animate ? "true" : void 0, className: u[P.Weekdays], style: f == null ? void 0 : f[P.Weekdays] },
|
|
2691
|
-
N && v.createElement(t.WeekNumberHeader, { "aria-label":
|
|
2691
|
+
N && v.createElement(t.WeekNumberHeader, { "aria-label": On(s.options), className: u[P.WeekNumberHeader], style: f == null ? void 0 : f[P.WeekNumberHeader], scope: "col" }, L()),
|
|
2692
2692
|
Fn.map((ie, Be) => v.createElement(t.Weekday, { "aria-label": Hn(ie, s.options, s), className: u[P.Weekday], key: Be, style: f == null ? void 0 : f[P.Weekday], scope: "col" }, q(ie, s.options, s)))
|
|
2693
2693
|
),
|
|
2694
2694
|
v.createElement(t.Weeks, { "data-animated-weeks": a.animate ? "true" : void 0, className: u[P.Weeks], style: f == null ? void 0 : f[P.Weeks] }, z.weeks.map((ie, Be) => v.createElement(
|
|
@@ -2836,27 +2836,27 @@ function gs() {
|
|
|
2836
2836
|
}
|
|
2837
2837
|
var ps = gs();
|
|
2838
2838
|
const bs = /* @__PURE__ */ fs(ps), vs = {
|
|
2839
|
-
"purpur-button": "_purpur-
|
|
2840
|
-
"purpur-button--xs": "_purpur-button--
|
|
2841
|
-
"purpur-button--icon-only": "_purpur-button--icon-
|
|
2842
|
-
"purpur-button--sm": "_purpur-button--
|
|
2843
|
-
"purpur-button--md": "_purpur-button--
|
|
2844
|
-
"purpur-button--lg": "_purpur-button--
|
|
2845
|
-
"purpur-button--full-width": "_purpur-button--full-
|
|
2846
|
-
"purpur-button--primary": "_purpur-button--
|
|
2847
|
-
"purpur-button--disabled": "_purpur-button--
|
|
2848
|
-
"purpur-button--primary-negative": "_purpur-button--primary-
|
|
2849
|
-
"purpur-button--secondary": "_purpur-button--
|
|
2850
|
-
"purpur-button--secondary-negative": "_purpur-button--secondary-
|
|
2851
|
-
"purpur-button--expressive": "_purpur-button--
|
|
2852
|
-
"purpur-button--expressive-negative": "_purpur-button--expressive-
|
|
2853
|
-
"purpur-button--negative": "_purpur-button--
|
|
2854
|
-
"purpur-button--destructive": "_purpur-button--
|
|
2855
|
-
"purpur-button--destructive-negative": "_purpur-button--destructive-
|
|
2856
|
-
"purpur-button--tertiary-purple": "_purpur-button--tertiary-
|
|
2857
|
-
"purpur-button--tertiary-purple-negative": "_purpur-button--tertiary-purple-
|
|
2858
|
-
"purpur-button--text-negative": "_purpur-button--text-
|
|
2859
|
-
"purpur-button--text": "_purpur-button--
|
|
2839
|
+
"purpur-button": "_purpur-button_cjx7j_1",
|
|
2840
|
+
"purpur-button--xs": "_purpur-button--xs_cjx7j_22",
|
|
2841
|
+
"purpur-button--icon-only": "_purpur-button--icon-only_cjx7j_25",
|
|
2842
|
+
"purpur-button--sm": "_purpur-button--sm_cjx7j_28",
|
|
2843
|
+
"purpur-button--md": "_purpur-button--md_cjx7j_34",
|
|
2844
|
+
"purpur-button--lg": "_purpur-button--lg_cjx7j_40",
|
|
2845
|
+
"purpur-button--full-width": "_purpur-button--full-width_cjx7j_46",
|
|
2846
|
+
"purpur-button--primary": "_purpur-button--primary_cjx7j_64",
|
|
2847
|
+
"purpur-button--disabled": "_purpur-button--disabled_cjx7j_68",
|
|
2848
|
+
"purpur-button--primary-negative": "_purpur-button--primary-negative_cjx7j_74",
|
|
2849
|
+
"purpur-button--secondary": "_purpur-button--secondary_cjx7j_86",
|
|
2850
|
+
"purpur-button--secondary-negative": "_purpur-button--secondary-negative_cjx7j_97",
|
|
2851
|
+
"purpur-button--expressive": "_purpur-button--expressive_cjx7j_108",
|
|
2852
|
+
"purpur-button--expressive-negative": "_purpur-button--expressive-negative_cjx7j_118",
|
|
2853
|
+
"purpur-button--negative": "_purpur-button--negative_cjx7j_130",
|
|
2854
|
+
"purpur-button--destructive": "_purpur-button--destructive_cjx7j_137",
|
|
2855
|
+
"purpur-button--destructive-negative": "_purpur-button--destructive-negative_cjx7j_147",
|
|
2856
|
+
"purpur-button--tertiary-purple": "_purpur-button--tertiary-purple_cjx7j_157",
|
|
2857
|
+
"purpur-button--tertiary-purple-negative": "_purpur-button--tertiary-purple-negative_cjx7j_170",
|
|
2858
|
+
"purpur-button--text-negative": "_purpur-button--text-negative_cjx7j_185",
|
|
2859
|
+
"purpur-button--text": "_purpur-button--text_cjx7j_185"
|
|
2860
2860
|
}, ws = bs.bind(vs), Me = "purpur-button", yt = or(
|
|
2861
2861
|
({
|
|
2862
2862
|
children: e,
|
|
@@ -3091,14 +3091,14 @@ const Ts = {
|
|
|
3091
3091
|
formats: Hs,
|
|
3092
3092
|
defaultWidth: "full"
|
|
3093
3093
|
})
|
|
3094
|
-
},
|
|
3094
|
+
}, Os = {
|
|
3095
3095
|
lastWeek: "'verlede' eeee 'om' p",
|
|
3096
3096
|
yesterday: "'gister om' p",
|
|
3097
3097
|
today: "'vandag om' p",
|
|
3098
3098
|
tomorrow: "'môre om' p",
|
|
3099
3099
|
nextWeek: "eeee 'om' p",
|
|
3100
3100
|
other: "P"
|
|
3101
|
-
},
|
|
3101
|
+
}, _s = (e, a, t, n) => Os[e], Fs = {
|
|
3102
3102
|
narrow: ["vC", "nC"],
|
|
3103
3103
|
abbreviated: ["vC", "nC"],
|
|
3104
3104
|
wide: ["voor Christus", "na Christus"]
|
|
@@ -3354,7 +3354,7 @@ const Ts = {
|
|
|
3354
3354
|
code: "af",
|
|
3355
3355
|
formatDistance: Cs,
|
|
3356
3356
|
formatLong: Xs,
|
|
3357
|
-
formatRelative:
|
|
3357
|
+
formatRelative: _s,
|
|
3358
3358
|
localize: Rs,
|
|
3359
3359
|
match: od,
|
|
3360
3360
|
options: {
|
|
@@ -3851,12 +3851,12 @@ const Ts = {
|
|
|
3851
3851
|
const n = Hd[e];
|
|
3852
3852
|
let r;
|
|
3853
3853
|
return typeof n == "string" ? r = n : a === 1 ? r = n.one : a === 2 ? r = n.two : a <= 10 ? r = n.threeToTen.replace("{{count}}", String(a)) : r = n.other.replace("{{count}}", String(a)), t.addSuffix ? t.comparison && t.comparison > 0 ? "في خلال " + r : "منذ " + r : r;
|
|
3854
|
-
},
|
|
3854
|
+
}, Od = {
|
|
3855
3855
|
full: "EEEE, MMMM do, y",
|
|
3856
3856
|
long: "MMMM do, y",
|
|
3857
3857
|
medium: "MMM d, y",
|
|
3858
3858
|
short: "MM/dd/yyyy"
|
|
3859
|
-
},
|
|
3859
|
+
}, _d = {
|
|
3860
3860
|
full: "h:mm:ss a zzzz",
|
|
3861
3861
|
long: "h:mm:ss a z",
|
|
3862
3862
|
medium: "h:mm:ss a",
|
|
@@ -3868,11 +3868,11 @@ const Ts = {
|
|
|
3868
3868
|
short: "{{date}}, {{time}}"
|
|
3869
3869
|
}, Ad = {
|
|
3870
3870
|
date: d({
|
|
3871
|
-
formats:
|
|
3871
|
+
formats: Od,
|
|
3872
3872
|
defaultWidth: "full"
|
|
3873
3873
|
}),
|
|
3874
3874
|
time: d({
|
|
3875
|
-
formats:
|
|
3875
|
+
formats: _d,
|
|
3876
3876
|
defaultWidth: "full"
|
|
3877
3877
|
}),
|
|
3878
3878
|
dateTime: d({
|
|
@@ -4476,7 +4476,7 @@ const Ts = {
|
|
|
4476
4476
|
abbreviated: /^(ص|م|نصف الليل|ظهراً|في الصباح|بعد الظهر|في المساء|في الليل)/,
|
|
4477
4477
|
wide: /^(ص|م|نصف الليل|في الصباح|ظهراً|بعد الظهر|في المساء|في الليل)/,
|
|
4478
4478
|
any: /^(ص|م|صباح|ظهر|مساء|ليل)/
|
|
4479
|
-
},
|
|
4479
|
+
}, Ou = {
|
|
4480
4480
|
any: {
|
|
4481
4481
|
am: /^ص/,
|
|
4482
4482
|
pm: /^م/,
|
|
@@ -4487,7 +4487,7 @@ const Ts = {
|
|
|
4487
4487
|
evening: /^م/,
|
|
4488
4488
|
night: /^ل/
|
|
4489
4489
|
}
|
|
4490
|
-
},
|
|
4490
|
+
}, _u = {
|
|
4491
4491
|
ordinalNumber: g({
|
|
4492
4492
|
matchPattern: Du,
|
|
4493
4493
|
parsePattern: xu,
|
|
@@ -4523,7 +4523,7 @@ const Ts = {
|
|
|
4523
4523
|
dayPeriod: o({
|
|
4524
4524
|
matchPatterns: Xu,
|
|
4525
4525
|
defaultMatchWidth: "any",
|
|
4526
|
-
parsePatterns:
|
|
4526
|
+
parsePatterns: Ou,
|
|
4527
4527
|
defaultParseWidth: "any"
|
|
4528
4528
|
})
|
|
4529
4529
|
}, jK = {
|
|
@@ -4532,7 +4532,7 @@ const Ts = {
|
|
|
4532
4532
|
formatLong: pu,
|
|
4533
4533
|
formatRelative: vu,
|
|
4534
4534
|
localize: ju,
|
|
4535
|
-
match:
|
|
4535
|
+
match: _u,
|
|
4536
4536
|
options: {
|
|
4537
4537
|
weekStartsOn: 0,
|
|
4538
4538
|
firstWeekContainsDate: 1
|
|
@@ -5217,7 +5217,7 @@ const Ts = {
|
|
|
5217
5217
|
narrow: /^[يفمأمسند]/i,
|
|
5218
5218
|
abbreviated: /^(ين|ف|مار|أب|ماي|يون|يول|أغ|س|أك|ن|د)/i,
|
|
5219
5219
|
wide: /^(ين|ف|مار|أب|ماي|يون|يول|أغ|س|أك|ن|د)/i
|
|
5220
|
-
},
|
|
5220
|
+
}, Om = {
|
|
5221
5221
|
narrow: [
|
|
5222
5222
|
/^ي/i,
|
|
5223
5223
|
/^ف/i,
|
|
@@ -5246,7 +5246,7 @@ const Ts = {
|
|
|
5246
5246
|
/^ن/i,
|
|
5247
5247
|
/^د/i
|
|
5248
5248
|
]
|
|
5249
|
-
},
|
|
5249
|
+
}, _m = {
|
|
5250
5250
|
narrow: /^[حنثرخجس]/i,
|
|
5251
5251
|
short: /^(أحد|اثنين|ثلاثاء|أربعاء|خميس|جمعة|سبت)/i,
|
|
5252
5252
|
abbreviated: /^(أحد|اثن|ثلا|أرب|خمي|جمعة|سبت)/i,
|
|
@@ -5299,11 +5299,11 @@ const Ts = {
|
|
|
5299
5299
|
month: o({
|
|
5300
5300
|
matchPatterns: Xm,
|
|
5301
5301
|
defaultMatchWidth: "wide",
|
|
5302
|
-
parsePatterns:
|
|
5302
|
+
parsePatterns: Om,
|
|
5303
5303
|
defaultParseWidth: "any"
|
|
5304
5304
|
}),
|
|
5305
5305
|
day: o({
|
|
5306
|
-
matchPatterns:
|
|
5306
|
+
matchPatterns: _m,
|
|
5307
5307
|
defaultMatchWidth: "wide",
|
|
5308
5308
|
parsePatterns: Fm,
|
|
5309
5309
|
defaultParseWidth: "any"
|
|
@@ -5984,11 +5984,11 @@ const Ts = {
|
|
|
5984
5984
|
formattingValues: Tl,
|
|
5985
5985
|
defaultFormattingWidth: "wide"
|
|
5986
5986
|
})
|
|
5987
|
-
}, Hl = /^(\d+)(-?(ci|inci|nci|uncu|üncü|ncı))?/i, Xl = /\d+/i,
|
|
5987
|
+
}, Hl = /^(\d+)(-?(ci|inci|nci|uncu|üncü|ncı))?/i, Xl = /\d+/i, Ol = {
|
|
5988
5988
|
narrow: /^(b|a)$/i,
|
|
5989
5989
|
abbreviated: /^(b\.?\s?c\.?|b\.?\s?c\.?\s?e\.?|a\.?\s?d\.?|c\.?\s?e\.?)$/i,
|
|
5990
5990
|
wide: /^(bizim eradan əvvəl|bizim era)$/i
|
|
5991
|
-
},
|
|
5991
|
+
}, _l = {
|
|
5992
5992
|
any: [/^b$/i, /^(a|c)$/i]
|
|
5993
5993
|
}, Fl = {
|
|
5994
5994
|
narrow: /^[1234]$/i,
|
|
@@ -6106,9 +6106,9 @@ const Ts = {
|
|
|
6106
6106
|
valueCallback: (e) => parseInt(e, 10)
|
|
6107
6107
|
}),
|
|
6108
6108
|
era: o({
|
|
6109
|
-
matchPatterns:
|
|
6109
|
+
matchPatterns: Ol,
|
|
6110
6110
|
defaultMatchWidth: "wide",
|
|
6111
|
-
parsePatterns:
|
|
6111
|
+
parsePatterns: _l,
|
|
6112
6112
|
defaultParseWidth: "any"
|
|
6113
6113
|
}),
|
|
6114
6114
|
quarter: o({
|
|
@@ -6405,10 +6405,10 @@ function nc(e) {
|
|
|
6405
6405
|
}
|
|
6406
6406
|
const rc = (e, a, t) => {
|
|
6407
6407
|
const n = S(e), r = n.getDay();
|
|
6408
|
-
return
|
|
6408
|
+
return O(n, a, t) ? ln(r) : ac(r);
|
|
6409
6409
|
}, ic = (e, a, t) => {
|
|
6410
6410
|
const n = S(e), r = n.getDay();
|
|
6411
|
-
return
|
|
6411
|
+
return O(n, a, t) ? ln(r) : nc(r);
|
|
6412
6412
|
}, oc = {
|
|
6413
6413
|
lastWeek: rc,
|
|
6414
6414
|
yesterday: "'учора а' p",
|
|
@@ -6951,7 +6951,7 @@ function Xc(e) {
|
|
|
6951
6951
|
function cn(e) {
|
|
6952
6952
|
return "'у " + xt[e] + " а' p";
|
|
6953
6953
|
}
|
|
6954
|
-
function
|
|
6954
|
+
function Oc(e) {
|
|
6955
6955
|
const a = xt[e];
|
|
6956
6956
|
switch (e) {
|
|
6957
6957
|
case 0:
|
|
@@ -6965,14 +6965,14 @@ function _c(e) {
|
|
|
6965
6965
|
return "'у наступны " + a + " а' p";
|
|
6966
6966
|
}
|
|
6967
6967
|
}
|
|
6968
|
-
const
|
|
6968
|
+
const _c = (e, a, t) => {
|
|
6969
6969
|
const n = S(e), r = n.getDay();
|
|
6970
|
-
return
|
|
6970
|
+
return O(n, a, t) ? cn(r) : Xc(r);
|
|
6971
6971
|
}, Fc = (e, a, t) => {
|
|
6972
6972
|
const n = S(e), r = n.getDay();
|
|
6973
|
-
return
|
|
6973
|
+
return O(n, a, t) ? cn(r) : Oc(r);
|
|
6974
6974
|
}, Ac = {
|
|
6975
|
-
lastWeek:
|
|
6975
|
+
lastWeek: _c,
|
|
6976
6976
|
yesterday: "'учора а' p",
|
|
6977
6977
|
today: "'сёньня а' p",
|
|
6978
6978
|
tomorrow: "'заўтра а' p",
|
|
@@ -7405,10 +7405,10 @@ function vh(e) {
|
|
|
7405
7405
|
}
|
|
7406
7406
|
const wh = (e, a, t) => {
|
|
7407
7407
|
const n = S(e), r = n.getDay();
|
|
7408
|
-
return
|
|
7408
|
+
return O(n, a, t) ? hn(r) : bh(r);
|
|
7409
7409
|
}, yh = (e, a, t) => {
|
|
7410
7410
|
const n = S(e), r = n.getDay();
|
|
7411
|
-
return
|
|
7411
|
+
return O(n, a, t) ? hn(r) : vh(r);
|
|
7412
7412
|
}, Ph = {
|
|
7413
7413
|
lastWeek: wh,
|
|
7414
7414
|
yesterday: "'вчера в' p",
|
|
@@ -7551,12 +7551,12 @@ const Sh = (e, a) => {
|
|
|
7551
7551
|
wide: /^[1234](-?[врт]?о?)? тримесечие/i
|
|
7552
7552
|
}, Xh = {
|
|
7553
7553
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
7554
|
-
},
|
|
7554
|
+
}, Oh = {
|
|
7555
7555
|
narrow: /^[нпвсч]/i,
|
|
7556
7556
|
short: /^(нд|пн|вт|ср|чт|пт|сб)/i,
|
|
7557
7557
|
abbreviated: /^(нед|пон|вто|сря|чет|пет|съб)/i,
|
|
7558
7558
|
wide: /^(неделя|понеделник|вторник|сряда|четвъртък|петък|събота)/i
|
|
7559
|
-
},
|
|
7559
|
+
}, _h = {
|
|
7560
7560
|
narrow: [/^н/i, /^п/i, /^в/i, /^с/i, /^ч/i, /^п/i, /^с/i],
|
|
7561
7561
|
any: [/^н[ед]/i, /^п[он]/i, /^вт/i, /^ср/i, /^ч[ет]/i, /^п[ет]/i, /^с[ъб]/i]
|
|
7562
7562
|
}, Fh = {
|
|
@@ -7616,9 +7616,9 @@ const Sh = (e, a) => {
|
|
|
7616
7616
|
defaultParseWidth: "any"
|
|
7617
7617
|
}),
|
|
7618
7618
|
day: o({
|
|
7619
|
-
matchPatterns:
|
|
7619
|
+
matchPatterns: Oh,
|
|
7620
7620
|
defaultMatchWidth: "wide",
|
|
7621
|
-
parsePatterns:
|
|
7621
|
+
parsePatterns: _h,
|
|
7622
7622
|
defaultParseWidth: "any"
|
|
7623
7623
|
}),
|
|
7624
7624
|
dayPeriod: o({
|
|
@@ -8434,11 +8434,11 @@ const ef = {
|
|
|
8434
8434
|
evening: "uveče",
|
|
8435
8435
|
night: "noću"
|
|
8436
8436
|
}
|
|
8437
|
-
},
|
|
8437
|
+
}, Of = (e, a) => {
|
|
8438
8438
|
const t = Number(e);
|
|
8439
8439
|
return String(t) + ".";
|
|
8440
|
-
},
|
|
8441
|
-
ordinalNumber:
|
|
8440
|
+
}, _f = {
|
|
8441
|
+
ordinalNumber: Of,
|
|
8442
8442
|
era: i({
|
|
8443
8443
|
values: Nf,
|
|
8444
8444
|
defaultWidth: "wide"
|
|
@@ -8572,7 +8572,7 @@ const ef = {
|
|
|
8572
8572
|
formatDistance: $f,
|
|
8573
8573
|
formatLong: xf,
|
|
8574
8574
|
formatRelative: Sf,
|
|
8575
|
-
localize:
|
|
8575
|
+
localize: _f,
|
|
8576
8576
|
match: Zf,
|
|
8577
8577
|
options: {
|
|
8578
8578
|
weekStartsOn: 1,
|
|
@@ -9105,11 +9105,11 @@ const ef = {
|
|
|
9105
9105
|
narrow: ["پ", "د"],
|
|
9106
9106
|
abbreviated: ["پ-ز", "د-ز"],
|
|
9107
9107
|
wide: ["پێش زاین", "دوای زاین"]
|
|
9108
|
-
},
|
|
9108
|
+
}, Og = {
|
|
9109
9109
|
narrow: ["1", "2", "3", "4"],
|
|
9110
9110
|
abbreviated: ["چ1م", "چ2م", "چ3م", "چ4م"],
|
|
9111
9111
|
wide: ["چارەگی یەکەم", "چارەگی دووەم", "چارەگی سێیەم", "چارەگی چوارەم"]
|
|
9112
|
-
},
|
|
9112
|
+
}, _g = {
|
|
9113
9113
|
narrow: [
|
|
9114
9114
|
"ک-د",
|
|
9115
9115
|
"ش",
|
|
@@ -9242,12 +9242,12 @@ const ef = {
|
|
|
9242
9242
|
defaultWidth: "wide"
|
|
9243
9243
|
}),
|
|
9244
9244
|
quarter: i({
|
|
9245
|
-
values:
|
|
9245
|
+
values: Og,
|
|
9246
9246
|
defaultWidth: "wide",
|
|
9247
9247
|
argumentCallback: (e) => e - 1
|
|
9248
9248
|
}),
|
|
9249
9249
|
month: i({
|
|
9250
|
-
values:
|
|
9250
|
+
values: _g,
|
|
9251
9251
|
defaultWidth: "wide"
|
|
9252
9252
|
}),
|
|
9253
9253
|
day: i({
|
|
@@ -9963,7 +9963,7 @@ const ef = {
|
|
|
9963
9963
|
parsePatterns: Cp,
|
|
9964
9964
|
defaultParseWidth: "any"
|
|
9965
9965
|
})
|
|
9966
|
-
},
|
|
9966
|
+
}, OK = {
|
|
9967
9967
|
code: "cs",
|
|
9968
9968
|
formatDistance: ip,
|
|
9969
9969
|
formatLong: up,
|
|
@@ -10056,12 +10056,12 @@ const ef = {
|
|
|
10056
10056
|
long: "d MMMM yyyy",
|
|
10057
10057
|
medium: "d MMM yyyy",
|
|
10058
10058
|
short: "dd/MM/yyyy"
|
|
10059
|
-
},
|
|
10059
|
+
}, Op = {
|
|
10060
10060
|
full: "h:mm:ss a zzzz",
|
|
10061
10061
|
long: "h:mm:ss a z",
|
|
10062
10062
|
medium: "h:mm:ss a",
|
|
10063
10063
|
short: "h:mm a"
|
|
10064
|
-
},
|
|
10064
|
+
}, _p = {
|
|
10065
10065
|
full: "{{date}} 'am' {{time}}",
|
|
10066
10066
|
long: "{{date}} 'am' {{time}}",
|
|
10067
10067
|
medium: "{{date}}, {{time}}",
|
|
@@ -10072,11 +10072,11 @@ const ef = {
|
|
|
10072
10072
|
defaultWidth: "full"
|
|
10073
10073
|
}),
|
|
10074
10074
|
time: d({
|
|
10075
|
-
formats:
|
|
10075
|
+
formats: Op,
|
|
10076
10076
|
defaultWidth: "full"
|
|
10077
10077
|
}),
|
|
10078
10078
|
dateTime: d({
|
|
10079
|
-
formats:
|
|
10079
|
+
formats: _p,
|
|
10080
10080
|
defaultWidth: "full"
|
|
10081
10081
|
})
|
|
10082
10082
|
}, Ap = {
|
|
@@ -10373,7 +10373,7 @@ const ef = {
|
|
|
10373
10373
|
parsePatterns: db,
|
|
10374
10374
|
defaultParseWidth: "any"
|
|
10375
10375
|
})
|
|
10376
|
-
},
|
|
10376
|
+
}, _K = {
|
|
10377
10377
|
code: "cy",
|
|
10378
10378
|
formatDistance: Hp,
|
|
10379
10379
|
formatLong: Fp,
|
|
@@ -10690,7 +10690,7 @@ const ef = {
|
|
|
10690
10690
|
evening: /aften/i,
|
|
10691
10691
|
night: /nat/i
|
|
10692
10692
|
}
|
|
10693
|
-
},
|
|
10693
|
+
}, Ob = {
|
|
10694
10694
|
ordinalNumber: g({
|
|
10695
10695
|
matchPattern: jb,
|
|
10696
10696
|
parsePattern: Db,
|
|
@@ -10733,7 +10733,7 @@ const ef = {
|
|
|
10733
10733
|
formatLong: gb,
|
|
10734
10734
|
formatRelative: bb,
|
|
10735
10735
|
localize: Wb,
|
|
10736
|
-
match:
|
|
10736
|
+
match: Ob,
|
|
10737
10737
|
options: {
|
|
10738
10738
|
weekStartsOn: 1,
|
|
10739
10739
|
firstWeekContainsDate: 4
|
|
@@ -10897,7 +10897,7 @@ const ef = {
|
|
|
10897
10897
|
let n;
|
|
10898
10898
|
const r = t != null && t.addSuffix ? la[e].withPreposition : la[e].standalone;
|
|
10899
10899
|
return typeof r == "string" ? n = r : a === 1 ? n = r.one : n = r.other.replace("{{count}}", String(a)), t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? "in " + n : "vor " + n : n;
|
|
10900
|
-
},
|
|
10900
|
+
}, _b = {
|
|
10901
10901
|
full: "EEEE, do MMMM y",
|
|
10902
10902
|
// Montag, 7. Januar 2018
|
|
10903
10903
|
long: "do MMMM y",
|
|
@@ -10918,7 +10918,7 @@ const ef = {
|
|
|
10918
10918
|
short: "{{date}} {{time}}"
|
|
10919
10919
|
}, pn = {
|
|
10920
10920
|
date: d({
|
|
10921
|
-
formats:
|
|
10921
|
+
formats: _b,
|
|
10922
10922
|
defaultWidth: "full"
|
|
10923
10923
|
}),
|
|
10924
10924
|
time: d({
|
|
@@ -11638,9 +11638,9 @@ const ef = {
|
|
|
11638
11638
|
narrow: /^[1234]/i,
|
|
11639
11639
|
abbreviated: /^τ[1234]/i,
|
|
11640
11640
|
wide: /^[1234]ο? τρ(ί|ι)μηνο/i
|
|
11641
|
-
}, _v = {
|
|
11642
|
-
any: [/1/i, /2/i, /3/i, /4/i]
|
|
11643
11641
|
}, Ov = {
|
|
11642
|
+
any: [/1/i, /2/i, /3/i, /4/i]
|
|
11643
|
+
}, _v = {
|
|
11644
11644
|
narrow: /^[ιφμαμιιασονδ]/i,
|
|
11645
11645
|
abbreviated: /^(ιαν|φεβ|μ[άα]ρ|απρ|μ[άα][ιΐ]|ιο[ύυ]ν|ιο[ύυ]λ|α[ύυ]γ|σεπ|οκτ|νο[έε]|δεκ)/i,
|
|
11646
11646
|
wide: /^(μ[άα][ιΐ]|α[ύυ]γο[υύ]στ)(ος|ου)|(ιανου[άα]ρ|φεβρου[άα]ρ|μ[άα]ρτ|απρ[ίι]λ|ιο[ύυ]ν|ιο[ύυ]λ|σεπτ[έε]μβρ|οκτ[ώω]βρ|νο[έε]μβρ|δεκ[έε]μβρ)(ιος|ίου)/i
|
|
@@ -11710,12 +11710,12 @@ const ef = {
|
|
|
11710
11710
|
quarter: o({
|
|
11711
11711
|
matchPatterns: Xv,
|
|
11712
11712
|
defaultMatchWidth: "wide",
|
|
11713
|
-
parsePatterns:
|
|
11713
|
+
parsePatterns: Ov,
|
|
11714
11714
|
defaultParseWidth: "any",
|
|
11715
11715
|
valueCallback: (e) => e + 1
|
|
11716
11716
|
}),
|
|
11717
11717
|
month: o({
|
|
11718
|
-
matchPatterns:
|
|
11718
|
+
matchPatterns: _v,
|
|
11719
11719
|
defaultMatchWidth: "wide",
|
|
11720
11720
|
parsePatterns: Fv,
|
|
11721
11721
|
defaultParseWidth: "any"
|
|
@@ -12280,11 +12280,11 @@ const ef = {
|
|
|
12280
12280
|
wide: /^[1234](-?a)? kvaronjaro/i
|
|
12281
12281
|
}, Xw = {
|
|
12282
12282
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
12283
|
-
},
|
|
12283
|
+
}, Ow = {
|
|
12284
12284
|
narrow: /^[jfmasond]/i,
|
|
12285
12285
|
abbreviated: /^(jan|feb|mar|apr|maj|jun|jul|a(ŭ|ux|uh|u)g|sep|okt|nov|dec)/i,
|
|
12286
12286
|
wide: /^(januaro|februaro|marto|aprilo|majo|junio|julio|a(ŭ|ux|uh|u)gusto|septembro|oktobro|novembro|decembro)/i
|
|
12287
|
-
},
|
|
12287
|
+
}, _w = {
|
|
12288
12288
|
narrow: [
|
|
12289
12289
|
/^j/i,
|
|
12290
12290
|
/^f/i,
|
|
@@ -12360,9 +12360,9 @@ const ef = {
|
|
|
12360
12360
|
}
|
|
12361
12361
|
}),
|
|
12362
12362
|
month: o({
|
|
12363
|
-
matchPatterns:
|
|
12363
|
+
matchPatterns: Ow,
|
|
12364
12364
|
defaultMatchWidth: "wide",
|
|
12365
|
-
parsePatterns:
|
|
12365
|
+
parsePatterns: _w,
|
|
12366
12366
|
defaultParseWidth: "any"
|
|
12367
12367
|
}),
|
|
12368
12368
|
day: o({
|
|
@@ -13105,11 +13105,11 @@ const ef = {
|
|
|
13105
13105
|
wide: /^(enne meie ajaarvamist|meie ajaarvamise järgi|enne Kristust|pärast Kristust)/i
|
|
13106
13106
|
}, Xy = {
|
|
13107
13107
|
any: [/^e/i, /^(m|p)/i]
|
|
13108
|
-
},
|
|
13108
|
+
}, Oy = {
|
|
13109
13109
|
narrow: /^[1234]/i,
|
|
13110
13110
|
abbreviated: /^K[1234]/i,
|
|
13111
13111
|
wide: /^[1234](\.)? kvartal/i
|
|
13112
|
-
},
|
|
13112
|
+
}, _y = {
|
|
13113
13113
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
13114
13114
|
}, Fy = {
|
|
13115
13115
|
narrow: /^[jvmasond]/i,
|
|
@@ -13177,9 +13177,9 @@ const ef = {
|
|
|
13177
13177
|
defaultParseWidth: "any"
|
|
13178
13178
|
}),
|
|
13179
13179
|
quarter: o({
|
|
13180
|
-
matchPatterns:
|
|
13180
|
+
matchPatterns: Oy,
|
|
13181
13181
|
defaultMatchWidth: "wide",
|
|
13182
|
-
parsePatterns:
|
|
13182
|
+
parsePatterns: _y,
|
|
13183
13183
|
defaultParseWidth: "any",
|
|
13184
13184
|
valueCallback: (e) => e + 1
|
|
13185
13185
|
}),
|
|
@@ -13814,7 +13814,7 @@ const ef = {
|
|
|
13814
13814
|
evening: "عصر",
|
|
13815
13815
|
night: "شب"
|
|
13816
13816
|
}
|
|
13817
|
-
}, XP = (e, a) => String(e),
|
|
13817
|
+
}, XP = (e, a) => String(e), OP = {
|
|
13818
13818
|
ordinalNumber: XP,
|
|
13819
13819
|
era: i({
|
|
13820
13820
|
values: NP,
|
|
@@ -13839,7 +13839,7 @@ const ef = {
|
|
|
13839
13839
|
formattingValues: HP,
|
|
13840
13840
|
defaultFormattingWidth: "wide"
|
|
13841
13841
|
})
|
|
13842
|
-
},
|
|
13842
|
+
}, _P = /^(\d+)(th|st|nd|rd)?/i, FP = /\d+/i, AP = {
|
|
13843
13843
|
narrow: /^(ق|ب)/i,
|
|
13844
13844
|
abbreviated: /^(ق\.?\s?م\.?|ق\.?\s?د\.?\s?م\.?|م\.?\s?|د\.?\s?م\.?)/i,
|
|
13845
13845
|
wide: /^(قبل از میلاد|قبل از دوران مشترک|میلادی|دوران مشترک|بعد از میلاد)/i
|
|
@@ -13917,7 +13917,7 @@ const ef = {
|
|
|
13917
13917
|
}
|
|
13918
13918
|
}, BP = {
|
|
13919
13919
|
ordinalNumber: g({
|
|
13920
|
-
matchPattern:
|
|
13920
|
+
matchPattern: _P,
|
|
13921
13921
|
parsePattern: FP,
|
|
13922
13922
|
valueCallback: (e) => parseInt(e, 10)
|
|
13923
13923
|
}),
|
|
@@ -13957,7 +13957,7 @@ const ef = {
|
|
|
13957
13957
|
formatDistance: $P,
|
|
13958
13958
|
formatLong: xP,
|
|
13959
13959
|
formatRelative: SP,
|
|
13960
|
-
localize:
|
|
13960
|
+
localize: OP,
|
|
13961
13961
|
match: BP,
|
|
13962
13962
|
options: {
|
|
13963
13963
|
weekStartsOn: 6,
|
|
@@ -14541,19 +14541,19 @@ const UP = {
|
|
|
14541
14541
|
evening: "du soir",
|
|
14542
14542
|
night: "du matin"
|
|
14543
14543
|
}
|
|
14544
|
-
},
|
|
14544
|
+
}, O1 = (e, a) => {
|
|
14545
14545
|
const t = Number(e), n = a == null ? void 0 : a.unit;
|
|
14546
14546
|
if (t === 0) return "0";
|
|
14547
14547
|
const r = ["year", "week", "hour", "minute", "second"];
|
|
14548
14548
|
let s;
|
|
14549
14549
|
return t === 1 ? s = n && r.includes(n) ? "ère" : "er" : s = "ème", t + s;
|
|
14550
|
-
},
|
|
14550
|
+
}, _1 = ["MMM", "MMMM"], Nt = {
|
|
14551
14551
|
preprocessor: (e, a) => e.getDate() === 1 || !a.some(
|
|
14552
|
-
(n) => n.isToken &&
|
|
14552
|
+
(n) => n.isToken && _1.includes(n.value)
|
|
14553
14553
|
) ? a : a.map(
|
|
14554
14554
|
(n) => n.isToken && n.value === "do" ? { isToken: !0, value: "d" } : n
|
|
14555
14555
|
),
|
|
14556
|
-
ordinalNumber:
|
|
14556
|
+
ordinalNumber: O1,
|
|
14557
14557
|
era: i({
|
|
14558
14558
|
values: C1,
|
|
14559
14559
|
defaultWidth: "wide"
|
|
@@ -15168,12 +15168,12 @@ const UP = {
|
|
|
15168
15168
|
let n;
|
|
15169
15169
|
const r = HM[e];
|
|
15170
15170
|
return typeof r == "string" ? n = r : a === 1 ? n = r.one : a === 2 && r.two ? n = r.two : a === 20 && r.twenty ? n = r.twenty : n = r.other.replace("{{count}}", String(a)), t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? "ann an " + n : "o chionn " + n : n;
|
|
15171
|
-
},
|
|
15171
|
+
}, OM = {
|
|
15172
15172
|
full: "EEEE, MMMM do, y",
|
|
15173
15173
|
long: "MMMM do, y",
|
|
15174
15174
|
medium: "MMM d, y",
|
|
15175
15175
|
short: "MM/dd/yyyy"
|
|
15176
|
-
},
|
|
15176
|
+
}, _M = {
|
|
15177
15177
|
full: "h:mm:ss a zzzz",
|
|
15178
15178
|
long: "h:mm:ss a z",
|
|
15179
15179
|
medium: "h:mm:ss a",
|
|
@@ -15185,11 +15185,11 @@ const UP = {
|
|
|
15185
15185
|
short: "{{date}}, {{time}}"
|
|
15186
15186
|
}, AM = {
|
|
15187
15187
|
date: d({
|
|
15188
|
-
formats:
|
|
15188
|
+
formats: OM,
|
|
15189
15189
|
defaultWidth: "full"
|
|
15190
15190
|
}),
|
|
15191
15191
|
time: d({
|
|
15192
|
-
formats:
|
|
15192
|
+
formats: _M,
|
|
15193
15193
|
defaultWidth: "full"
|
|
15194
15194
|
}),
|
|
15195
15195
|
dateTime: d({
|
|
@@ -15767,10 +15767,10 @@ const UP = {
|
|
|
15767
15767
|
}, Xk = {
|
|
15768
15768
|
narrow: [/^d/i, /^l/i, /^m/i, /^m/i, /^x/i, /^v/i, /^s/i],
|
|
15769
15769
|
any: [/^do/i, /^lu/i, /^ma/i, /^me/i, /^xo/i, /^ve/i, /^sa/i]
|
|
15770
|
-
},
|
|
15770
|
+
}, Ok = {
|
|
15771
15771
|
narrow: /^(a|p|mn|md|(da|[aá]s) (mañ[aá]|tarde|noite))/i,
|
|
15772
15772
|
any: /^([ap]\.?\s?m\.?|medianoite|mediod[ií]a|(da|[aá]s) (mañ[aá]|tarde|noite))/i
|
|
15773
|
-
},
|
|
15773
|
+
}, _k = {
|
|
15774
15774
|
any: {
|
|
15775
15775
|
am: /^a/i,
|
|
15776
15776
|
pm: /^p/i,
|
|
@@ -15813,9 +15813,9 @@ const UP = {
|
|
|
15813
15813
|
defaultParseWidth: "any"
|
|
15814
15814
|
}),
|
|
15815
15815
|
dayPeriod: o({
|
|
15816
|
-
matchPatterns:
|
|
15816
|
+
matchPatterns: Ok,
|
|
15817
15817
|
defaultMatchWidth: "any",
|
|
15818
|
-
parsePatterns:
|
|
15818
|
+
parsePatterns: _k,
|
|
15819
15819
|
defaultParseWidth: "any"
|
|
15820
15820
|
})
|
|
15821
15821
|
}, dJ = {
|
|
@@ -16506,11 +16506,11 @@ const UP = {
|
|
|
16506
16506
|
wide: /^רבעון [1234]/i
|
|
16507
16507
|
}, X$ = {
|
|
16508
16508
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
16509
|
-
},
|
|
16509
|
+
}, O$ = {
|
|
16510
16510
|
narrow: /^\d+/i,
|
|
16511
16511
|
abbreviated: /^(ינו|פבר|מרץ|אפר|מאי|יוני|יולי|אוג|ספט|אוק|נוב|דצמ)׳?/i,
|
|
16512
16512
|
wide: /^(ינואר|פברואר|מרץ|אפריל|מאי|יוני|יולי|אוגוסט|ספטמבר|אוקטובר|נובמבר|דצמבר)/i
|
|
16513
|
-
},
|
|
16513
|
+
}, _$ = {
|
|
16514
16514
|
narrow: [
|
|
16515
16515
|
/^1$/i,
|
|
16516
16516
|
/^2/i,
|
|
@@ -16584,9 +16584,9 @@ const UP = {
|
|
|
16584
16584
|
valueCallback: (e) => e + 1
|
|
16585
16585
|
}),
|
|
16586
16586
|
month: o({
|
|
16587
|
-
matchPatterns:
|
|
16587
|
+
matchPatterns: O$,
|
|
16588
16588
|
defaultMatchWidth: "wide",
|
|
16589
|
-
parsePatterns:
|
|
16589
|
+
parsePatterns: _$,
|
|
16590
16590
|
defaultParseWidth: "any"
|
|
16591
16591
|
}),
|
|
16592
16592
|
day: o({
|
|
@@ -17410,7 +17410,7 @@ const eW = {
|
|
|
17410
17410
|
evening: "navečer",
|
|
17411
17411
|
night: "noću"
|
|
17412
17412
|
}
|
|
17413
|
-
}, XW = (e, a) => Number(e) + ".",
|
|
17413
|
+
}, XW = (e, a) => Number(e) + ".", OW = {
|
|
17414
17414
|
ordinalNumber: XW,
|
|
17415
17415
|
era: i({
|
|
17416
17416
|
values: SW,
|
|
@@ -17437,7 +17437,7 @@ const eW = {
|
|
|
17437
17437
|
formattingValues: VW,
|
|
17438
17438
|
defaultFormattingWidth: "wide"
|
|
17439
17439
|
})
|
|
17440
|
-
},
|
|
17440
|
+
}, _W = /^(\d+)\./i, FW = /\d+/i, AW = {
|
|
17441
17441
|
narrow: /^(pr\.n\.e\.|AD)/i,
|
|
17442
17442
|
abbreviated: /^(pr\.\s?Kr\.|po\.\s?Kr\.)/i,
|
|
17443
17443
|
wide: /^(Prije Krista|prije nove ere|Poslije Krista|nova era)/i
|
|
@@ -17519,7 +17519,7 @@ const eW = {
|
|
|
17519
17519
|
}
|
|
17520
17520
|
}, BW = {
|
|
17521
17521
|
ordinalNumber: g({
|
|
17522
|
-
matchPattern:
|
|
17522
|
+
matchPattern: _W,
|
|
17523
17523
|
parsePattern: FW,
|
|
17524
17524
|
valueCallback: (e) => parseInt(e, 10)
|
|
17525
17525
|
}),
|
|
@@ -17559,7 +17559,7 @@ const eW = {
|
|
|
17559
17559
|
formatDistance: kW,
|
|
17560
17560
|
formatLong: DW,
|
|
17561
17561
|
formatRelative: zW,
|
|
17562
|
-
localize:
|
|
17562
|
+
localize: OW,
|
|
17563
17563
|
match: BW,
|
|
17564
17564
|
options: {
|
|
17565
17565
|
weekStartsOn: 1,
|
|
@@ -18001,11 +18001,11 @@ const Vj = {
|
|
|
18001
18001
|
narrow: ["ie.", "isz."],
|
|
18002
18002
|
abbreviated: ["i. e.", "i. sz."],
|
|
18003
18003
|
wide: ["Krisztus előtt", "időszámításunk szerint"]
|
|
18004
|
-
},
|
|
18004
|
+
}, Oj = {
|
|
18005
18005
|
narrow: ["1.", "2.", "3.", "4."],
|
|
18006
18006
|
abbreviated: ["1. n.év", "2. n.év", "3. n.év", "4. n.év"],
|
|
18007
18007
|
wide: ["1. negyedév", "2. negyedév", "3. negyedév", "4. negyedév"]
|
|
18008
|
-
},
|
|
18008
|
+
}, _j = {
|
|
18009
18009
|
narrow: ["I.", "II.", "III.", "IV."],
|
|
18010
18010
|
abbreviated: ["I. n.év", "II. n.év", "III. n.év", "IV. n.év"],
|
|
18011
18011
|
wide: ["I. negyedév", "II. negyedév", "III. negyedév", "IV. negyedév"]
|
|
@@ -18090,10 +18090,10 @@ const Vj = {
|
|
|
18090
18090
|
defaultWidth: "wide"
|
|
18091
18091
|
}),
|
|
18092
18092
|
quarter: i({
|
|
18093
|
-
values:
|
|
18093
|
+
values: Oj,
|
|
18094
18094
|
defaultWidth: "wide",
|
|
18095
18095
|
argumentCallback: (e) => e - 1,
|
|
18096
|
-
formattingValues:
|
|
18096
|
+
formattingValues: _j,
|
|
18097
18097
|
defaultFormattingWidth: "wide"
|
|
18098
18098
|
}),
|
|
18099
18099
|
month: i({
|
|
@@ -18664,7 +18664,7 @@ const Vj = {
|
|
|
18664
18664
|
long: "{{date}} 'pukul' {{time}}",
|
|
18665
18665
|
medium: "{{date}}, {{time}}",
|
|
18666
18666
|
short: "{{date}}, {{time}}"
|
|
18667
|
-
},
|
|
18667
|
+
}, OD = {
|
|
18668
18668
|
date: d({
|
|
18669
18669
|
formats: VD,
|
|
18670
18670
|
defaultWidth: "full"
|
|
@@ -18677,14 +18677,14 @@ const Vj = {
|
|
|
18677
18677
|
formats: XD,
|
|
18678
18678
|
defaultWidth: "full"
|
|
18679
18679
|
})
|
|
18680
|
-
},
|
|
18680
|
+
}, _D = {
|
|
18681
18681
|
lastWeek: "eeee 'lalu pukul' p",
|
|
18682
18682
|
yesterday: "'Kemarin pukul' p",
|
|
18683
18683
|
today: "'Hari ini pukul' p",
|
|
18684
18684
|
tomorrow: "'Besok pukul' p",
|
|
18685
18685
|
nextWeek: "eeee 'pukul' p",
|
|
18686
18686
|
other: "P"
|
|
18687
|
-
}, FD = (e, a, t, n) =>
|
|
18687
|
+
}, FD = (e, a, t, n) => _D[e], AD = {
|
|
18688
18688
|
narrow: ["SM", "M"],
|
|
18689
18689
|
abbreviated: ["SM", "M"],
|
|
18690
18690
|
wide: ["Sebelum Masehi", "Masehi"]
|
|
@@ -18921,7 +18921,7 @@ const Vj = {
|
|
|
18921
18921
|
}, pJ = {
|
|
18922
18922
|
code: "id",
|
|
18923
18923
|
formatDistance: ED,
|
|
18924
|
-
formatLong:
|
|
18924
|
+
formatLong: OD,
|
|
18925
18925
|
formatRelative: FD,
|
|
18926
18926
|
localize: QD,
|
|
18927
18927
|
match: sx,
|
|
@@ -19349,12 +19349,12 @@ const Vj = {
|
|
|
19349
19349
|
let n;
|
|
19350
19350
|
const r = Xx[e];
|
|
19351
19351
|
return typeof r == "string" ? n = r : a === 1 ? n = r.one : n = r.other.replace("{{count}}", a.toString()), t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? "tra " + n : n + " fa" : n;
|
|
19352
|
-
},
|
|
19352
|
+
}, Ox = {
|
|
19353
19353
|
full: "EEEE d MMMM y",
|
|
19354
19354
|
long: "d MMMM y",
|
|
19355
19355
|
medium: "d MMM y",
|
|
19356
19356
|
short: "dd/MM/y"
|
|
19357
|
-
},
|
|
19357
|
+
}, _x = {
|
|
19358
19358
|
full: "HH:mm:ss zzzz",
|
|
19359
19359
|
long: "HH:mm:ss z",
|
|
19360
19360
|
medium: "HH:mm:ss",
|
|
@@ -19366,11 +19366,11 @@ const Vj = {
|
|
|
19366
19366
|
short: "{{date}} {{time}}"
|
|
19367
19367
|
}, Ax = {
|
|
19368
19368
|
date: d({
|
|
19369
|
-
formats:
|
|
19369
|
+
formats: Ox,
|
|
19370
19370
|
defaultWidth: "full"
|
|
19371
19371
|
}),
|
|
19372
19372
|
time: d({
|
|
19373
|
-
formats:
|
|
19373
|
+
formats: _x,
|
|
19374
19374
|
defaultWidth: "full"
|
|
19375
19375
|
}),
|
|
19376
19376
|
dateTime: d({
|
|
@@ -19408,14 +19408,14 @@ function Ix(e) {
|
|
|
19408
19408
|
const Lx = {
|
|
19409
19409
|
lastWeek: (e, a, t) => {
|
|
19410
19410
|
const n = e.getDay();
|
|
19411
|
-
return
|
|
19411
|
+
return O(e, a, t) ? Pa(n) : Yx(n);
|
|
19412
19412
|
},
|
|
19413
19413
|
yesterday: "'ieri alle' p",
|
|
19414
19414
|
today: "'oggi alle' p",
|
|
19415
19415
|
tomorrow: "'domani alle' p",
|
|
19416
19416
|
nextWeek: (e, a, t) => {
|
|
19417
19417
|
const n = e.getDay();
|
|
19418
|
-
return
|
|
19418
|
+
return O(e, a, t) ? Pa(n) : Ix(n);
|
|
19419
19419
|
},
|
|
19420
19420
|
other: "P"
|
|
19421
19421
|
}, $n = (e, a, t, n) => {
|
|
@@ -20006,12 +20006,12 @@ const Lx = {
|
|
|
20006
20006
|
/^11/,
|
|
20007
20007
|
/^12/
|
|
20008
20008
|
]
|
|
20009
|
-
},
|
|
20009
|
+
}, Oz = {
|
|
20010
20010
|
narrow: /^[日月火水木金土]/,
|
|
20011
20011
|
short: /^[日月火水木金土]/,
|
|
20012
20012
|
abbreviated: /^[日月火水木金土]/,
|
|
20013
20013
|
wide: /^[日月火水木金土]曜日/
|
|
20014
|
-
},
|
|
20014
|
+
}, _z = {
|
|
20015
20015
|
any: [/^日/, /^月/, /^火/, /^水/, /^木/, /^金/, /^土/]
|
|
20016
20016
|
}, Fz = {
|
|
20017
20017
|
any: /^(AM|PM|午前|午後|正午|深夜|真夜中|夜|朝)/i
|
|
@@ -20054,9 +20054,9 @@ const Lx = {
|
|
|
20054
20054
|
defaultParseWidth: "any"
|
|
20055
20055
|
}),
|
|
20056
20056
|
day: o({
|
|
20057
|
-
matchPatterns:
|
|
20057
|
+
matchPatterns: Oz,
|
|
20058
20058
|
defaultMatchWidth: "wide",
|
|
20059
|
-
parsePatterns:
|
|
20059
|
+
parsePatterns: _z,
|
|
20060
20060
|
defaultParseWidth: "any"
|
|
20061
20061
|
}),
|
|
20062
20062
|
dayPeriod: o({
|
|
@@ -20727,11 +20727,11 @@ const Lx = {
|
|
|
20727
20727
|
/^(ჩვენს წელთაღრიცხვამდე|ქრისტეშობამდე)/i,
|
|
20728
20728
|
/^(ჩვენი წელთაღრიცხვით|ქრისტეშობიდან)/i
|
|
20729
20729
|
]
|
|
20730
|
-
},
|
|
20730
|
+
}, OS = {
|
|
20731
20731
|
narrow: /^[1234]/i,
|
|
20732
20732
|
abbreviated: /^[1234]-(ლი|ე)? კვ/i,
|
|
20733
20733
|
wide: /^[1234]-(ლი|ე)? კვარტალი/i
|
|
20734
|
-
},
|
|
20734
|
+
}, _S = {
|
|
20735
20735
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
20736
20736
|
}, FS = {
|
|
20737
20737
|
any: /^(ია|თე|მა|აპ|მს|ვნ|ვლ|აგ|სე|ოქ|ნო|დე)/i
|
|
@@ -20782,9 +20782,9 @@ const Lx = {
|
|
|
20782
20782
|
defaultParseWidth: "any"
|
|
20783
20783
|
}),
|
|
20784
20784
|
quarter: o({
|
|
20785
|
-
matchPatterns:
|
|
20785
|
+
matchPatterns: OS,
|
|
20786
20786
|
defaultMatchWidth: "wide",
|
|
20787
|
-
parsePatterns:
|
|
20787
|
+
parsePatterns: _S,
|
|
20788
20788
|
defaultParseWidth: "any",
|
|
20789
20789
|
valueCallback: (e) => e + 1
|
|
20790
20790
|
}),
|
|
@@ -20990,14 +20990,14 @@ const Lx = {
|
|
|
20990
20990
|
}
|
|
20991
20991
|
}
|
|
20992
20992
|
};
|
|
20993
|
-
function
|
|
20993
|
+
function Oe(e, a) {
|
|
20994
20994
|
if (e.one && a === 1) return e.one;
|
|
20995
20995
|
const t = a % 10, n = a % 100;
|
|
20996
20996
|
return t === 1 && n !== 11 ? e.singularNominative.replace("{{count}}", String(a)) : t >= 2 && t <= 4 && (n < 10 || n > 20) ? e.singularGenitive.replace("{{count}}", String(a)) : e.pluralGenitive.replace("{{count}}", String(a));
|
|
20997
20997
|
}
|
|
20998
20998
|
const QS = (e, a, t) => {
|
|
20999
20999
|
const n = RS[e];
|
|
21000
|
-
return typeof n == "function" ? n(t) : n.type === "weeks" ? a === 1 ? n.one : n.other.replace("{{count}}", String(a)) : t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? n.future ?
|
|
21000
|
+
return typeof n == "function" ? n(t) : n.type === "weeks" ? a === 1 ? n.one : n.other.replace("{{count}}", String(a)) : t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? n.future ? Oe(n.future, a) : Oe(n.regular, a) + " кейін" : n.past ? Oe(n.past, a) : Oe(n.regular, a) + " бұрын" : Oe(n.regular, a);
|
|
21001
21001
|
}, KS = {
|
|
21002
21002
|
full: "EEEE, do MMMM y 'ж.'",
|
|
21003
21003
|
long: "do MMMM y 'ж.'",
|
|
@@ -21044,14 +21044,14 @@ function eN(e) {
|
|
|
21044
21044
|
const tN = {
|
|
21045
21045
|
lastWeek: (e, a, t) => {
|
|
21046
21046
|
const n = e.getDay();
|
|
21047
|
-
return
|
|
21047
|
+
return O(e, a, t) ? Ma(n) : US(n);
|
|
21048
21048
|
},
|
|
21049
21049
|
yesterday: "'кеше сағат' p'-де'",
|
|
21050
21050
|
today: "'бүгін сағат' p'-де'",
|
|
21051
21051
|
tomorrow: "'ертең сағат' p'-де'",
|
|
21052
21052
|
nextWeek: (e, a, t) => {
|
|
21053
21053
|
const n = e.getDay();
|
|
21054
|
-
return
|
|
21054
|
+
return O(e, a, t) ? Ma(n) : eN(n);
|
|
21055
21055
|
},
|
|
21056
21056
|
other: "P"
|
|
21057
21057
|
}, aN = (e, a, t, n) => {
|
|
@@ -21511,7 +21511,7 @@ const tN = {
|
|
|
21511
21511
|
evening: "ពេលល្ងាច",
|
|
21512
21512
|
night: "ពេលយប់"
|
|
21513
21513
|
}
|
|
21514
|
-
},
|
|
21514
|
+
}, ON = {
|
|
21515
21515
|
narrow: {
|
|
21516
21516
|
am: "ព្រឹក",
|
|
21517
21517
|
pm: "ល្ងាច",
|
|
@@ -21542,8 +21542,8 @@ const tN = {
|
|
|
21542
21542
|
evening: "ពេលល្ងាច",
|
|
21543
21543
|
night: "ពេលយប់"
|
|
21544
21544
|
}
|
|
21545
|
-
},
|
|
21546
|
-
ordinalNumber:
|
|
21545
|
+
}, _N = (e, a) => Number(e).toString(), FN = {
|
|
21546
|
+
ordinalNumber: _N,
|
|
21547
21547
|
era: i({
|
|
21548
21548
|
values: CN,
|
|
21549
21549
|
defaultWidth: "wide"
|
|
@@ -21564,7 +21564,7 @@ const tN = {
|
|
|
21564
21564
|
dayPeriod: i({
|
|
21565
21565
|
values: XN,
|
|
21566
21566
|
defaultWidth: "wide",
|
|
21567
|
-
formattingValues:
|
|
21567
|
+
formattingValues: ON,
|
|
21568
21568
|
defaultFormattingWidth: "wide"
|
|
21569
21569
|
})
|
|
21570
21570
|
}, AN = /^(\d+)(th|st|nd|rd)?/i, YN = /\d+/i, IN = {
|
|
@@ -22269,11 +22269,11 @@ const t2 = (e, a, t) => {
|
|
|
22269
22269
|
narrow: ["BC", "AD"],
|
|
22270
22270
|
abbreviated: ["BC", "AD"],
|
|
22271
22271
|
wide: ["기원전", "서기"]
|
|
22272
|
-
},
|
|
22272
|
+
}, O2 = {
|
|
22273
22273
|
narrow: ["1", "2", "3", "4"],
|
|
22274
22274
|
abbreviated: ["Q1", "Q2", "Q3", "Q4"],
|
|
22275
22275
|
wide: ["1분기", "2분기", "3분기", "4분기"]
|
|
22276
|
-
},
|
|
22276
|
+
}, _2 = {
|
|
22277
22277
|
narrow: ["1", "2", "3", "4", "5", "6", "7", "8", "9", "10", "11", "12"],
|
|
22278
22278
|
abbreviated: [
|
|
22279
22279
|
"1월",
|
|
@@ -22388,12 +22388,12 @@ const t2 = (e, a, t) => {
|
|
|
22388
22388
|
defaultWidth: "wide"
|
|
22389
22389
|
}),
|
|
22390
22390
|
quarter: i({
|
|
22391
|
-
values:
|
|
22391
|
+
values: O2,
|
|
22392
22392
|
defaultWidth: "wide",
|
|
22393
22393
|
argumentCallback: (e) => e - 1
|
|
22394
22394
|
}),
|
|
22395
22395
|
month: i({
|
|
22396
|
-
values:
|
|
22396
|
+
values: _2,
|
|
22397
22397
|
defaultWidth: "wide"
|
|
22398
22398
|
}),
|
|
22399
22399
|
day: i({
|
|
@@ -23065,7 +23065,7 @@ const XT = {
|
|
|
23065
23065
|
one: Z,
|
|
23066
23066
|
other: Q
|
|
23067
23067
|
}
|
|
23068
|
-
},
|
|
23068
|
+
}, OT = (e, a, t) => {
|
|
23069
23069
|
const n = e.match(/about|over|almost|lessthan/i), r = n ? e.replace(n[0], "") : e, s = (t == null ? void 0 : t.comparison) !== void 0 && t.comparison > 0;
|
|
23070
23070
|
let m;
|
|
23071
23071
|
const u = XT[e];
|
|
@@ -23084,7 +23084,7 @@ const XT = {
|
|
|
23084
23084
|
m = Dn[l] + " " + m;
|
|
23085
23085
|
}
|
|
23086
23086
|
return t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? "po " + m : "prieš " + m : m;
|
|
23087
|
-
},
|
|
23087
|
+
}, _T = {
|
|
23088
23088
|
full: "y 'm'. MMMM d 'd'., EEEE",
|
|
23089
23089
|
long: "y 'm'. MMMM d 'd'.",
|
|
23090
23090
|
medium: "y-MM-dd",
|
|
@@ -23101,7 +23101,7 @@ const XT = {
|
|
|
23101
23101
|
short: "{{date}} {{time}}"
|
|
23102
23102
|
}, YT = {
|
|
23103
23103
|
date: d({
|
|
23104
|
-
formats:
|
|
23104
|
+
formats: _T,
|
|
23105
23105
|
defaultWidth: "full"
|
|
23106
23106
|
}),
|
|
23107
23107
|
time: d({
|
|
@@ -23429,7 +23429,7 @@ const XT = {
|
|
|
23429
23429
|
})
|
|
23430
23430
|
}, xJ = {
|
|
23431
23431
|
code: "lt",
|
|
23432
|
-
formatDistance:
|
|
23432
|
+
formatDistance: OT,
|
|
23433
23433
|
formatLong: YT,
|
|
23434
23434
|
formatRelative: LT,
|
|
23435
23435
|
localize: t0,
|
|
@@ -23594,11 +23594,11 @@ const g0 = {
|
|
|
23594
23594
|
"piektdienā",
|
|
23595
23595
|
"sestdienā"
|
|
23596
23596
|
], P0 = {
|
|
23597
|
-
lastWeek: (e, a, t) =>
|
|
23597
|
+
lastWeek: (e, a, t) => O(e, a, t) ? "eeee 'plkst.' p" : "'Pagājušā " + Da[e.getDay()] + " plkst.' p",
|
|
23598
23598
|
yesterday: "'Vakar plkst.' p",
|
|
23599
23599
|
today: "'Šodien plkst.' p",
|
|
23600
23600
|
tomorrow: "'Rīt plkst.' p",
|
|
23601
|
-
nextWeek: (e, a, t) =>
|
|
23601
|
+
nextWeek: (e, a, t) => O(e, a, t) ? "eeee 'plkst.' p" : "'Nākamajā " + Da[e.getDay()] + " plkst.' p",
|
|
23602
23602
|
other: "P"
|
|
23603
23603
|
}, M0 = (e, a, t, n) => {
|
|
23604
23604
|
const r = P0[e];
|
|
@@ -23826,11 +23826,11 @@ const g0 = {
|
|
|
23826
23826
|
wide: /^(pirms mūsu ēras|mūsu ērā)/i
|
|
23827
23827
|
}, X0 = {
|
|
23828
23828
|
any: [/^p/i, /^m/i]
|
|
23829
|
-
},
|
|
23829
|
+
}, O0 = {
|
|
23830
23830
|
narrow: /^[1234]/i,
|
|
23831
23831
|
abbreviated: /^[1234](\. cet\.)/i,
|
|
23832
23832
|
wide: /^(pirma(is|jā)|otra(is|jā)|treša(is|jā)|ceturta(is|jā)) ceturksn(is|ī)/i
|
|
23833
|
-
},
|
|
23833
|
+
}, _0 = {
|
|
23834
23834
|
narrow: [/^1/i, /^2/i, /^3/i, /^4/i],
|
|
23835
23835
|
abbreviated: [/^1/i, /^2/i, /^3/i, /^4/i],
|
|
23836
23836
|
wide: [/^p/i, /^o/i, /^t/i, /^c/i]
|
|
@@ -23903,9 +23903,9 @@ const g0 = {
|
|
|
23903
23903
|
defaultParseWidth: "any"
|
|
23904
23904
|
}),
|
|
23905
23905
|
quarter: o({
|
|
23906
|
-
matchPatterns:
|
|
23906
|
+
matchPatterns: O0,
|
|
23907
23907
|
defaultMatchWidth: "wide",
|
|
23908
|
-
parsePatterns:
|
|
23908
|
+
parsePatterns: _0,
|
|
23909
23909
|
defaultParseWidth: "wide",
|
|
23910
23910
|
valueCallback: (e) => e + 1
|
|
23911
23911
|
}),
|
|
@@ -24083,14 +24083,14 @@ function eC(e) {
|
|
|
24083
24083
|
const tC = {
|
|
24084
24084
|
lastWeek: (e, a, t) => {
|
|
24085
24085
|
const n = e.getDay();
|
|
24086
|
-
return
|
|
24086
|
+
return O(e, a, t) ? xa(n) : U0(n);
|
|
24087
24087
|
},
|
|
24088
24088
|
yesterday: "'вчера во' p",
|
|
24089
24089
|
today: "'денес во' p",
|
|
24090
24090
|
tomorrow: "'утре во' p",
|
|
24091
24091
|
nextWeek: (e, a, t) => {
|
|
24092
24092
|
const n = e.getDay();
|
|
24093
|
-
return
|
|
24093
|
+
return O(e, a, t) ? xa(n) : eC(n);
|
|
24094
24094
|
},
|
|
24095
24095
|
other: "P"
|
|
24096
24096
|
}, aC = (e, a, t, n) => {
|
|
@@ -24563,8 +24563,8 @@ const tC = {
|
|
|
24563
24563
|
evening: "орой",
|
|
24564
24564
|
night: "шөнө"
|
|
24565
24565
|
}
|
|
24566
|
-
},
|
|
24567
|
-
ordinalNumber:
|
|
24566
|
+
}, OC = (e, a) => String(e), _C = {
|
|
24567
|
+
ordinalNumber: OC,
|
|
24568
24568
|
era: i({
|
|
24569
24569
|
values: NC,
|
|
24570
24570
|
defaultWidth: "wide"
|
|
@@ -24699,7 +24699,7 @@ const tC = {
|
|
|
24699
24699
|
formatDistance: $C,
|
|
24700
24700
|
formatLong: xC,
|
|
24701
24701
|
formatRelative: SC,
|
|
24702
|
-
localize:
|
|
24702
|
+
localize: _C,
|
|
24703
24703
|
match: ZC,
|
|
24704
24704
|
options: {
|
|
24705
24705
|
weekStartsOn: 1,
|
|
@@ -25164,7 +25164,7 @@ const tC = {
|
|
|
25164
25164
|
narrow: ["1", "2", "3", "4"],
|
|
25165
25165
|
abbreviated: ["K1", "K2", "K3", "K4"],
|
|
25166
25166
|
wide: ["1. kwart", "2. kwart", "3. kwart", "4. kwart"]
|
|
25167
|
-
},
|
|
25167
|
+
}, O4 = {
|
|
25168
25168
|
narrow: ["J", "F", "M", "A", "M", "Ġ", "L", "A", "S", "O", "N", "D"],
|
|
25169
25169
|
abbreviated: [
|
|
25170
25170
|
"Jan",
|
|
@@ -25194,7 +25194,7 @@ const tC = {
|
|
|
25194
25194
|
"Novembru",
|
|
25195
25195
|
"Diċembru"
|
|
25196
25196
|
]
|
|
25197
|
-
},
|
|
25197
|
+
}, _4 = {
|
|
25198
25198
|
narrow: ["Ħ", "T", "T", "E", "Ħ", "Ġ", "S"],
|
|
25199
25199
|
short: ["Ħa", "Tn", "Tl", "Er", "Ħa", "Ġi", "Si"],
|
|
25200
25200
|
abbreviated: ["Ħad", "Tne", "Tli", "Erb", "Ħam", "Ġim", "Sib"],
|
|
@@ -25281,11 +25281,11 @@ const tC = {
|
|
|
25281
25281
|
argumentCallback: (e) => e - 1
|
|
25282
25282
|
}),
|
|
25283
25283
|
month: i({
|
|
25284
|
-
values:
|
|
25284
|
+
values: O4,
|
|
25285
25285
|
defaultWidth: "wide"
|
|
25286
25286
|
}),
|
|
25287
25287
|
day: i({
|
|
25288
|
-
values:
|
|
25288
|
+
values: _4,
|
|
25289
25289
|
defaultWidth: "wide"
|
|
25290
25290
|
}),
|
|
25291
25291
|
dayPeriod: i({
|
|
@@ -25838,7 +25838,7 @@ const tC = {
|
|
|
25838
25838
|
tomorrow: "'morgen om' p",
|
|
25839
25839
|
nextWeek: "eeee 'om' p",
|
|
25840
25840
|
other: "P"
|
|
25841
|
-
},
|
|
25841
|
+
}, OE = (e, a, t, n) => XE[e], _E = {
|
|
25842
25842
|
narrow: ["v.C.", "n.C."],
|
|
25843
25843
|
abbreviated: ["v.Chr.", "n.Chr."],
|
|
25844
25844
|
wide: ["voor Christus", "na Christus"]
|
|
@@ -25923,7 +25923,7 @@ const tC = {
|
|
|
25923
25923
|
}, LE = (e, a) => Number(e) + "e", qE = {
|
|
25924
25924
|
ordinalNumber: LE,
|
|
25925
25925
|
era: i({
|
|
25926
|
-
values:
|
|
25926
|
+
values: _E,
|
|
25927
25927
|
defaultWidth: "wide"
|
|
25928
25928
|
}),
|
|
25929
25929
|
quarter: i({
|
|
@@ -26050,7 +26050,7 @@ const tC = {
|
|
|
26050
26050
|
code: "nl",
|
|
26051
26051
|
formatDistance: TE,
|
|
26052
26052
|
formatLong: HE,
|
|
26053
|
-
formatRelative:
|
|
26053
|
+
formatRelative: OE,
|
|
26054
26054
|
localize: qE,
|
|
26055
26055
|
match: rV,
|
|
26056
26056
|
options: {
|
|
@@ -26470,12 +26470,12 @@ const tC = {
|
|
|
26470
26470
|
long: "HH:mm:ss z",
|
|
26471
26471
|
medium: "HH:mm:ss",
|
|
26472
26472
|
short: "HH:mm"
|
|
26473
|
-
},
|
|
26473
|
+
}, OV = {
|
|
26474
26474
|
full: "{{date}} 'kl.' {{time}}",
|
|
26475
26475
|
long: "{{date}} 'kl.' {{time}}",
|
|
26476
26476
|
medium: "{{date}} {{time}}",
|
|
26477
26477
|
short: "{{date}} {{time}}"
|
|
26478
|
-
},
|
|
26478
|
+
}, _V = {
|
|
26479
26479
|
date: d({
|
|
26480
26480
|
formats: HV,
|
|
26481
26481
|
defaultWidth: "full"
|
|
@@ -26485,7 +26485,7 @@ const tC = {
|
|
|
26485
26485
|
defaultWidth: "full"
|
|
26486
26486
|
}),
|
|
26487
26487
|
dateTime: d({
|
|
26488
|
-
formats:
|
|
26488
|
+
formats: OV,
|
|
26489
26489
|
defaultWidth: "full"
|
|
26490
26490
|
})
|
|
26491
26491
|
}, FV = {
|
|
@@ -26706,7 +26706,7 @@ const tC = {
|
|
|
26706
26706
|
}, XJ = {
|
|
26707
26707
|
code: "nn",
|
|
26708
26708
|
formatDistance: VV,
|
|
26709
|
-
formatLong:
|
|
26709
|
+
formatLong: _V,
|
|
26710
26710
|
formatRelative: AV,
|
|
26711
26711
|
localize: QV,
|
|
26712
26712
|
match: s3,
|
|
@@ -27079,7 +27079,7 @@ const tC = {
|
|
|
27079
27079
|
parsePatterns: V3,
|
|
27080
27080
|
defaultParseWidth: "any"
|
|
27081
27081
|
})
|
|
27082
|
-
},
|
|
27082
|
+
}, OJ = {
|
|
27083
27083
|
code: "oc",
|
|
27084
27084
|
formatDistance: u3,
|
|
27085
27085
|
formatLong: h3,
|
|
@@ -27200,7 +27200,7 @@ const tC = {
|
|
|
27200
27200
|
other: "prawie {{count}} lat"
|
|
27201
27201
|
}
|
|
27202
27202
|
};
|
|
27203
|
-
function
|
|
27203
|
+
function O3(e, a) {
|
|
27204
27204
|
if (a === 1)
|
|
27205
27205
|
return e.one;
|
|
27206
27206
|
const t = a % 100;
|
|
@@ -27210,10 +27210,10 @@ function _3(e, a) {
|
|
|
27210
27210
|
return n >= 2 && n <= 4 ? e.twoFour : e.other;
|
|
27211
27211
|
}
|
|
27212
27212
|
function gt(e, a, t) {
|
|
27213
|
-
const n =
|
|
27213
|
+
const n = O3(e, a);
|
|
27214
27214
|
return (typeof n == "string" ? n : n[t]).replace("{{count}}", String(a));
|
|
27215
27215
|
}
|
|
27216
|
-
const
|
|
27216
|
+
const _3 = (e, a, t) => {
|
|
27217
27217
|
const n = X3[e];
|
|
27218
27218
|
return t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? "za " + gt(n, a, "future") : gt(n, a, "past") + " temu" : gt(n, a, "regular");
|
|
27219
27219
|
}, F3 = {
|
|
@@ -27264,7 +27264,7 @@ const O3 = (e, a, t) => {
|
|
|
27264
27264
|
};
|
|
27265
27265
|
function za(e, a, t, n) {
|
|
27266
27266
|
let r;
|
|
27267
|
-
if (
|
|
27267
|
+
if (O(a, t, n))
|
|
27268
27268
|
r = q3;
|
|
27269
27269
|
else if (e === "lastWeek")
|
|
27270
27270
|
r = L3;
|
|
@@ -27586,9 +27586,9 @@ const Q3 = {
|
|
|
27586
27586
|
parsePatterns: bH,
|
|
27587
27587
|
defaultParseWidth: "any"
|
|
27588
27588
|
})
|
|
27589
|
-
},
|
|
27589
|
+
}, _J = {
|
|
27590
27590
|
code: "pl",
|
|
27591
|
-
formatDistance:
|
|
27591
|
+
formatDistance: _3,
|
|
27592
27592
|
formatLong: I3,
|
|
27593
27593
|
formatRelative: K3,
|
|
27594
27594
|
localize: iH,
|
|
@@ -27846,13 +27846,13 @@ const Q3 = {
|
|
|
27846
27846
|
narrow: /^(ac|dc|a|d)/i,
|
|
27847
27847
|
abbreviated: /^(a\.?\s?c\.?|a\.?\s?e\.?\s?c\.?|d\.?\s?c\.?|e\.?\s?c\.?)/i,
|
|
27848
27848
|
wide: /^(antes de cristo|antes da era comum|depois de cristo|era comum)/i
|
|
27849
|
-
},
|
|
27849
|
+
}, OH = {
|
|
27850
27850
|
any: [/^ac/i, /^dc/i],
|
|
27851
27851
|
wide: [
|
|
27852
27852
|
/^(antes de cristo|antes da era comum)/i,
|
|
27853
27853
|
/^(depois de cristo|era comum)/i
|
|
27854
27854
|
]
|
|
27855
|
-
},
|
|
27855
|
+
}, _H = {
|
|
27856
27856
|
narrow: /^[1234]/i,
|
|
27857
27857
|
abbreviated: /^T[1234]/i,
|
|
27858
27858
|
wide: /^[1234](º|ª)? trimestre/i
|
|
@@ -27922,11 +27922,11 @@ const Q3 = {
|
|
|
27922
27922
|
era: o({
|
|
27923
27923
|
matchPatterns: XH,
|
|
27924
27924
|
defaultMatchWidth: "wide",
|
|
27925
|
-
parsePatterns:
|
|
27925
|
+
parsePatterns: OH,
|
|
27926
27926
|
defaultParseWidth: "any"
|
|
27927
27927
|
}),
|
|
27928
27928
|
quarter: o({
|
|
27929
|
-
matchPatterns:
|
|
27929
|
+
matchPatterns: _H,
|
|
27930
27930
|
defaultMatchWidth: "wide",
|
|
27931
27931
|
parsePatterns: FH,
|
|
27932
27932
|
defaultParseWidth: "any",
|
|
@@ -28545,7 +28545,7 @@ const Q3 = {
|
|
|
28545
28545
|
evening: "seară",
|
|
28546
28546
|
night: "noapte"
|
|
28547
28547
|
}
|
|
28548
|
-
}, XX = (e, a) => String(e),
|
|
28548
|
+
}, XX = (e, a) => String(e), OX = {
|
|
28549
28549
|
ordinalNumber: XX,
|
|
28550
28550
|
era: i({
|
|
28551
28551
|
values: NX,
|
|
@@ -28570,7 +28570,7 @@ const Q3 = {
|
|
|
28570
28570
|
formattingValues: HX,
|
|
28571
28571
|
defaultFormattingWidth: "wide"
|
|
28572
28572
|
})
|
|
28573
|
-
},
|
|
28573
|
+
}, _X = /^(\d+)?/i, FX = /\d+/i, AX = {
|
|
28574
28574
|
narrow: /^(Î|D)/i,
|
|
28575
28575
|
abbreviated: /^(Î\.?\s?d\.?\s?C\.?|Î\.?\s?e\.?\s?n\.?|D\.?\s?C\.?|e\.?\s?n\.?)/i,
|
|
28576
28576
|
wide: /^(Înainte de Cristos|Înaintea erei noastre|După Cristos|Era noastră)/i
|
|
@@ -28643,7 +28643,7 @@ const Q3 = {
|
|
|
28643
28643
|
}
|
|
28644
28644
|
}, BX = {
|
|
28645
28645
|
ordinalNumber: g({
|
|
28646
|
-
matchPattern:
|
|
28646
|
+
matchPattern: _X,
|
|
28647
28647
|
parsePattern: FX,
|
|
28648
28648
|
valueCallback: (e) => parseInt(e, 10)
|
|
28649
28649
|
}),
|
|
@@ -28683,21 +28683,21 @@ const Q3 = {
|
|
|
28683
28683
|
formatDistance: $X,
|
|
28684
28684
|
formatLong: xX,
|
|
28685
28685
|
formatRelative: SX,
|
|
28686
|
-
localize:
|
|
28686
|
+
localize: OX,
|
|
28687
28687
|
match: BX,
|
|
28688
28688
|
options: {
|
|
28689
28689
|
weekStartsOn: 1,
|
|
28690
28690
|
firstWeekContainsDate: 1
|
|
28691
28691
|
}
|
|
28692
28692
|
};
|
|
28693
|
-
function
|
|
28693
|
+
function _e(e, a) {
|
|
28694
28694
|
if (e.one !== void 0 && a === 1)
|
|
28695
28695
|
return e.one;
|
|
28696
28696
|
const t = a % 10, n = a % 100;
|
|
28697
28697
|
return t === 1 && n !== 11 ? e.singularNominative.replace("{{count}}", String(a)) : t >= 2 && t <= 4 && (n < 10 || n > 20) ? e.singularGenitive.replace("{{count}}", String(a)) : e.pluralGenitive.replace("{{count}}", String(a));
|
|
28698
28698
|
}
|
|
28699
28699
|
function J(e) {
|
|
28700
|
-
return (a, t) => t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? e.future ?
|
|
28700
|
+
return (a, t) => t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? e.future ? _e(e.future, a) : "через " + _e(e.regular, a) : e.past ? _e(e.past, a) : _e(e.regular, a) + " назад" : _e(e.regular, a);
|
|
28701
28701
|
}
|
|
28702
28702
|
const ZX = {
|
|
28703
28703
|
lessThanXSeconds: J({
|
|
@@ -28870,29 +28870,29 @@ const ZX = {
|
|
|
28870
28870
|
pluralGenitive: "почти через {{count}} лет"
|
|
28871
28871
|
}
|
|
28872
28872
|
})
|
|
28873
|
-
}, UX = (e, a, t) => ZX[e](a, t),
|
|
28873
|
+
}, UX = (e, a, t) => ZX[e](a, t), eO = {
|
|
28874
28874
|
full: "EEEE, d MMMM y 'г.'",
|
|
28875
28875
|
long: "d MMMM y 'г.'",
|
|
28876
28876
|
medium: "d MMM y 'г.'",
|
|
28877
28877
|
short: "dd.MM.y"
|
|
28878
|
-
},
|
|
28878
|
+
}, tO = {
|
|
28879
28879
|
full: "H:mm:ss zzzz",
|
|
28880
28880
|
long: "H:mm:ss z",
|
|
28881
28881
|
medium: "H:mm:ss",
|
|
28882
28882
|
short: "H:mm"
|
|
28883
|
-
},
|
|
28883
|
+
}, aO = {
|
|
28884
28884
|
any: "{{date}}, {{time}}"
|
|
28885
|
-
},
|
|
28885
|
+
}, nO = {
|
|
28886
28886
|
date: d({
|
|
28887
|
-
formats:
|
|
28887
|
+
formats: eO,
|
|
28888
28888
|
defaultWidth: "full"
|
|
28889
28889
|
}),
|
|
28890
28890
|
time: d({
|
|
28891
|
-
formats:
|
|
28891
|
+
formats: tO,
|
|
28892
28892
|
defaultWidth: "full"
|
|
28893
28893
|
}),
|
|
28894
28894
|
dateTime: d({
|
|
28895
|
-
formats:
|
|
28895
|
+
formats: aO,
|
|
28896
28896
|
defaultWidth: "any"
|
|
28897
28897
|
})
|
|
28898
28898
|
}, Ht = [
|
|
@@ -28904,7 +28904,7 @@ const ZX = {
|
|
|
28904
28904
|
"пятницу",
|
|
28905
28905
|
"субботу"
|
|
28906
28906
|
];
|
|
28907
|
-
function
|
|
28907
|
+
function rO(e) {
|
|
28908
28908
|
const a = Ht[e];
|
|
28909
28909
|
switch (e) {
|
|
28910
28910
|
case 0:
|
|
@@ -28923,7 +28923,7 @@ function Sa(e) {
|
|
|
28923
28923
|
const a = Ht[e];
|
|
28924
28924
|
return e === 2 ? "'во " + a + " в' p" : "'в " + a + " в' p";
|
|
28925
28925
|
}
|
|
28926
|
-
function
|
|
28926
|
+
function iO(e) {
|
|
28927
28927
|
const a = Ht[e];
|
|
28928
28928
|
switch (e) {
|
|
28929
28929
|
case 0:
|
|
@@ -28938,31 +28938,31 @@ function i_(e) {
|
|
|
28938
28938
|
return "'в следующую " + a + " в' p";
|
|
28939
28939
|
}
|
|
28940
28940
|
}
|
|
28941
|
-
const
|
|
28941
|
+
const oO = {
|
|
28942
28942
|
lastWeek: (e, a, t) => {
|
|
28943
28943
|
const n = e.getDay();
|
|
28944
|
-
return
|
|
28944
|
+
return O(e, a, t) ? Sa(n) : rO(n);
|
|
28945
28945
|
},
|
|
28946
28946
|
yesterday: "'вчера в' p",
|
|
28947
28947
|
today: "'сегодня в' p",
|
|
28948
28948
|
tomorrow: "'завтра в' p",
|
|
28949
28949
|
nextWeek: (e, a, t) => {
|
|
28950
28950
|
const n = e.getDay();
|
|
28951
|
-
return
|
|
28951
|
+
return O(e, a, t) ? Sa(n) : iO(n);
|
|
28952
28952
|
},
|
|
28953
28953
|
other: "P"
|
|
28954
|
-
},
|
|
28955
|
-
const r =
|
|
28954
|
+
}, sO = (e, a, t, n) => {
|
|
28955
|
+
const r = oO[e];
|
|
28956
28956
|
return typeof r == "function" ? r(a, t, n) : r;
|
|
28957
|
-
},
|
|
28957
|
+
}, dO = {
|
|
28958
28958
|
narrow: ["до н.э.", "н.э."],
|
|
28959
28959
|
abbreviated: ["до н. э.", "н. э."],
|
|
28960
28960
|
wide: ["до нашей эры", "нашей эры"]
|
|
28961
|
-
},
|
|
28961
|
+
}, uO = {
|
|
28962
28962
|
narrow: ["1", "2", "3", "4"],
|
|
28963
28963
|
abbreviated: ["1-й кв.", "2-й кв.", "3-й кв.", "4-й кв."],
|
|
28964
28964
|
wide: ["1-й квартал", "2-й квартал", "3-й квартал", "4-й квартал"]
|
|
28965
|
-
},
|
|
28965
|
+
}, mO = {
|
|
28966
28966
|
narrow: ["Я", "Ф", "М", "А", "М", "И", "И", "А", "С", "О", "Н", "Д"],
|
|
28967
28967
|
abbreviated: [
|
|
28968
28968
|
"янв.",
|
|
@@ -28992,7 +28992,7 @@ const o_ = {
|
|
|
28992
28992
|
"ноябрь",
|
|
28993
28993
|
"декабрь"
|
|
28994
28994
|
]
|
|
28995
|
-
},
|
|
28995
|
+
}, lO = {
|
|
28996
28996
|
narrow: ["Я", "Ф", "М", "А", "М", "И", "И", "А", "С", "О", "Н", "Д"],
|
|
28997
28997
|
abbreviated: [
|
|
28998
28998
|
"янв.",
|
|
@@ -29022,7 +29022,7 @@ const o_ = {
|
|
|
29022
29022
|
"ноября",
|
|
29023
29023
|
"декабря"
|
|
29024
29024
|
]
|
|
29025
|
-
},
|
|
29025
|
+
}, cO = {
|
|
29026
29026
|
narrow: ["В", "П", "В", "С", "Ч", "П", "С"],
|
|
29027
29027
|
short: ["вс", "пн", "вт", "ср", "чт", "пт", "сб"],
|
|
29028
29028
|
abbreviated: ["вск", "пнд", "втр", "срд", "чтв", "птн", "суб"],
|
|
@@ -29035,7 +29035,7 @@ const o_ = {
|
|
|
29035
29035
|
"пятница",
|
|
29036
29036
|
"суббота"
|
|
29037
29037
|
]
|
|
29038
|
-
},
|
|
29038
|
+
}, hO = {
|
|
29039
29039
|
narrow: {
|
|
29040
29040
|
am: "ДП",
|
|
29041
29041
|
pm: "ПП",
|
|
@@ -29066,7 +29066,7 @@ const o_ = {
|
|
|
29066
29066
|
evening: "вечер",
|
|
29067
29067
|
night: "ночь"
|
|
29068
29068
|
}
|
|
29069
|
-
},
|
|
29069
|
+
}, fO = {
|
|
29070
29070
|
narrow: {
|
|
29071
29071
|
am: "ДП",
|
|
29072
29072
|
pm: "ПП",
|
|
@@ -29097,54 +29097,54 @@ const o_ = {
|
|
|
29097
29097
|
evening: "вечера",
|
|
29098
29098
|
night: "ночи"
|
|
29099
29099
|
}
|
|
29100
|
-
},
|
|
29100
|
+
}, gO = (e, a) => {
|
|
29101
29101
|
const t = Number(e), n = a == null ? void 0 : a.unit;
|
|
29102
29102
|
let r;
|
|
29103
29103
|
return n === "date" ? r = "-е" : n === "week" || n === "minute" || n === "second" ? r = "-я" : r = "-й", t + r;
|
|
29104
|
-
},
|
|
29105
|
-
ordinalNumber:
|
|
29104
|
+
}, pO = {
|
|
29105
|
+
ordinalNumber: gO,
|
|
29106
29106
|
era: i({
|
|
29107
|
-
values:
|
|
29107
|
+
values: dO,
|
|
29108
29108
|
defaultWidth: "wide"
|
|
29109
29109
|
}),
|
|
29110
29110
|
quarter: i({
|
|
29111
|
-
values:
|
|
29111
|
+
values: uO,
|
|
29112
29112
|
defaultWidth: "wide",
|
|
29113
29113
|
argumentCallback: (e) => e - 1
|
|
29114
29114
|
}),
|
|
29115
29115
|
month: i({
|
|
29116
|
-
values:
|
|
29116
|
+
values: mO,
|
|
29117
29117
|
defaultWidth: "wide",
|
|
29118
|
-
formattingValues:
|
|
29118
|
+
formattingValues: lO,
|
|
29119
29119
|
defaultFormattingWidth: "wide"
|
|
29120
29120
|
}),
|
|
29121
29121
|
day: i({
|
|
29122
|
-
values:
|
|
29122
|
+
values: cO,
|
|
29123
29123
|
defaultWidth: "wide"
|
|
29124
29124
|
}),
|
|
29125
29125
|
dayPeriod: i({
|
|
29126
|
-
values:
|
|
29126
|
+
values: hO,
|
|
29127
29127
|
defaultWidth: "any",
|
|
29128
|
-
formattingValues:
|
|
29128
|
+
formattingValues: fO,
|
|
29129
29129
|
defaultFormattingWidth: "wide"
|
|
29130
29130
|
})
|
|
29131
|
-
},
|
|
29131
|
+
}, bO = /^(\d+)(-?(е|я|й|ое|ье|ая|ья|ый|ой|ий|ый))?/i, vO = /\d+/i, wO = {
|
|
29132
29132
|
narrow: /^((до )?н\.?\s?э\.?)/i,
|
|
29133
29133
|
abbreviated: /^((до )?н\.?\s?э\.?)/i,
|
|
29134
29134
|
wide: /^(до нашей эры|нашей эры|наша эра)/i
|
|
29135
|
-
},
|
|
29135
|
+
}, yO = {
|
|
29136
29136
|
any: [/^д/i, /^н/i]
|
|
29137
|
-
},
|
|
29137
|
+
}, PO = {
|
|
29138
29138
|
narrow: /^[1234]/i,
|
|
29139
29139
|
abbreviated: /^[1234](-?[ыои]?й?)? кв.?/i,
|
|
29140
29140
|
wide: /^[1234](-?[ыои]?й?)? квартал/i
|
|
29141
|
-
},
|
|
29141
|
+
}, MO = {
|
|
29142
29142
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
29143
|
-
},
|
|
29143
|
+
}, kO = {
|
|
29144
29144
|
narrow: /^[яфмаисонд]/i,
|
|
29145
29145
|
abbreviated: /^(янв|фев|март?|апр|ма[йя]|июн[ья]?|июл[ья]?|авг|сент?|окт|нояб?|дек)\.?/i,
|
|
29146
29146
|
wide: /^(январ[ья]|феврал[ья]|марта?|апрел[ья]|ма[йя]|июн[ья]|июл[ья]|августа?|сентябр[ья]|октябр[ья]|октябр[ья]|ноябр[ья]|декабр[ья])/i
|
|
29147
|
-
}, $
|
|
29147
|
+
}, $O = {
|
|
29148
29148
|
narrow: [
|
|
29149
29149
|
/^я/i,
|
|
29150
29150
|
/^ф/i,
|
|
@@ -29173,19 +29173,19 @@ const o_ = {
|
|
|
29173
29173
|
/^н/i,
|
|
29174
29174
|
/^д/i
|
|
29175
29175
|
]
|
|
29176
|
-
},
|
|
29176
|
+
}, WO = {
|
|
29177
29177
|
narrow: /^[впсч]/i,
|
|
29178
29178
|
short: /^(вс|во|пн|по|вт|ср|чт|че|пт|пя|сб|су)\.?/i,
|
|
29179
29179
|
abbreviated: /^(вск|вос|пнд|пон|втр|вто|срд|сре|чтв|чет|птн|пят|суб).?/i,
|
|
29180
29180
|
wide: /^(воскресень[ея]|понедельника?|вторника?|сред[аы]|четверга?|пятниц[аы]|суббот[аы])/i
|
|
29181
|
-
},
|
|
29181
|
+
}, jO = {
|
|
29182
29182
|
narrow: [/^в/i, /^п/i, /^в/i, /^с/i, /^ч/i, /^п/i, /^с/i],
|
|
29183
29183
|
any: [/^в[ос]/i, /^п[он]/i, /^в/i, /^ср/i, /^ч/i, /^п[ят]/i, /^с[уб]/i]
|
|
29184
|
-
},
|
|
29184
|
+
}, DO = {
|
|
29185
29185
|
narrow: /^([дп]п|полн\.?|полд\.?|утр[оа]|день|дня|веч\.?|ноч[ьи])/i,
|
|
29186
29186
|
abbreviated: /^([дп]п|полн\.?|полд\.?|утр[оа]|день|дня|веч\.?|ноч[ьи])/i,
|
|
29187
29187
|
wide: /^([дп]п|полночь|полдень|утр[оа]|день|дня|вечера?|ноч[ьи])/i
|
|
29188
|
-
},
|
|
29188
|
+
}, xO = {
|
|
29189
29189
|
any: {
|
|
29190
29190
|
am: /^дп/i,
|
|
29191
29191
|
pm: /^пп/i,
|
|
@@ -29196,55 +29196,55 @@ const o_ = {
|
|
|
29196
29196
|
evening: /^в/i,
|
|
29197
29197
|
night: /^н/i
|
|
29198
29198
|
}
|
|
29199
|
-
},
|
|
29199
|
+
}, zO = {
|
|
29200
29200
|
ordinalNumber: g({
|
|
29201
|
-
matchPattern:
|
|
29202
|
-
parsePattern:
|
|
29201
|
+
matchPattern: bO,
|
|
29202
|
+
parsePattern: vO,
|
|
29203
29203
|
valueCallback: (e) => parseInt(e, 10)
|
|
29204
29204
|
}),
|
|
29205
29205
|
era: o({
|
|
29206
|
-
matchPatterns:
|
|
29206
|
+
matchPatterns: wO,
|
|
29207
29207
|
defaultMatchWidth: "wide",
|
|
29208
|
-
parsePatterns:
|
|
29208
|
+
parsePatterns: yO,
|
|
29209
29209
|
defaultParseWidth: "any"
|
|
29210
29210
|
}),
|
|
29211
29211
|
quarter: o({
|
|
29212
|
-
matchPatterns:
|
|
29212
|
+
matchPatterns: PO,
|
|
29213
29213
|
defaultMatchWidth: "wide",
|
|
29214
|
-
parsePatterns:
|
|
29214
|
+
parsePatterns: MO,
|
|
29215
29215
|
defaultParseWidth: "any",
|
|
29216
29216
|
valueCallback: (e) => e + 1
|
|
29217
29217
|
}),
|
|
29218
29218
|
month: o({
|
|
29219
|
-
matchPatterns:
|
|
29219
|
+
matchPatterns: kO,
|
|
29220
29220
|
defaultMatchWidth: "wide",
|
|
29221
|
-
parsePatterns: $
|
|
29221
|
+
parsePatterns: $O,
|
|
29222
29222
|
defaultParseWidth: "any"
|
|
29223
29223
|
}),
|
|
29224
29224
|
day: o({
|
|
29225
|
-
matchPatterns:
|
|
29225
|
+
matchPatterns: WO,
|
|
29226
29226
|
defaultMatchWidth: "wide",
|
|
29227
|
-
parsePatterns:
|
|
29227
|
+
parsePatterns: jO,
|
|
29228
29228
|
defaultParseWidth: "any"
|
|
29229
29229
|
}),
|
|
29230
29230
|
dayPeriod: o({
|
|
29231
|
-
matchPatterns:
|
|
29231
|
+
matchPatterns: DO,
|
|
29232
29232
|
defaultMatchWidth: "wide",
|
|
29233
|
-
parsePatterns:
|
|
29233
|
+
parsePatterns: xO,
|
|
29234
29234
|
defaultParseWidth: "any"
|
|
29235
29235
|
})
|
|
29236
29236
|
}, IJ = {
|
|
29237
29237
|
code: "ru",
|
|
29238
29238
|
formatDistance: UX,
|
|
29239
|
-
formatLong:
|
|
29240
|
-
formatRelative:
|
|
29241
|
-
localize:
|
|
29242
|
-
match:
|
|
29239
|
+
formatLong: nO,
|
|
29240
|
+
formatRelative: sO,
|
|
29241
|
+
localize: pO,
|
|
29242
|
+
match: zO,
|
|
29243
29243
|
options: {
|
|
29244
29244
|
weekStartsOn: 1,
|
|
29245
29245
|
firstWeekContainsDate: 1
|
|
29246
29246
|
}
|
|
29247
|
-
},
|
|
29247
|
+
}, SO = {
|
|
29248
29248
|
lessThanXSeconds: {
|
|
29249
29249
|
one: "unnit go ovtta sekundda",
|
|
29250
29250
|
other: "unnit go {{count}} sekundda"
|
|
@@ -29306,54 +29306,54 @@ const o_ = {
|
|
|
29306
29306
|
one: "measta jagi",
|
|
29307
29307
|
other: "measta {{count}} jagi"
|
|
29308
29308
|
}
|
|
29309
|
-
},
|
|
29309
|
+
}, NO = (e, a, t) => {
|
|
29310
29310
|
let n;
|
|
29311
|
-
const r =
|
|
29311
|
+
const r = SO[e];
|
|
29312
29312
|
return typeof r == "string" ? n = r : a === 1 ? n = r.one : n = r.other.replace("{{count}}", String(a)), t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? "geahčen " + n : n + " áigi" : n;
|
|
29313
|
-
},
|
|
29313
|
+
}, TO = {
|
|
29314
29314
|
full: "EEEE MMMM d. 'b.' y",
|
|
29315
29315
|
long: "MMMM d. 'b.' y",
|
|
29316
29316
|
medium: "MMM d. 'b.' y",
|
|
29317
29317
|
short: "dd.MM.y"
|
|
29318
|
-
},
|
|
29318
|
+
}, CO = {
|
|
29319
29319
|
full: "'dii.' HH:mm:ss zzzz",
|
|
29320
29320
|
long: "HH:mm:ss z",
|
|
29321
29321
|
medium: "HH:mm:ss",
|
|
29322
29322
|
short: "HH:mm"
|
|
29323
|
-
},
|
|
29323
|
+
}, EO = {
|
|
29324
29324
|
full: "{{date}} 'dii.' {{time}}",
|
|
29325
29325
|
long: "{{date}} 'dii.' {{time}}",
|
|
29326
29326
|
medium: "{{date}} {{time}}",
|
|
29327
29327
|
short: "{{date}} {{time}}"
|
|
29328
|
-
},
|
|
29328
|
+
}, VO = {
|
|
29329
29329
|
date: d({
|
|
29330
|
-
formats:
|
|
29330
|
+
formats: TO,
|
|
29331
29331
|
defaultWidth: "full"
|
|
29332
29332
|
}),
|
|
29333
29333
|
time: d({
|
|
29334
|
-
formats:
|
|
29334
|
+
formats: CO,
|
|
29335
29335
|
defaultWidth: "full"
|
|
29336
29336
|
}),
|
|
29337
29337
|
dateTime: d({
|
|
29338
|
-
formats:
|
|
29338
|
+
formats: EO,
|
|
29339
29339
|
defaultWidth: "full"
|
|
29340
29340
|
})
|
|
29341
|
-
},
|
|
29341
|
+
}, HO = {
|
|
29342
29342
|
lastWeek: "'ovddit' eeee 'dii.' p",
|
|
29343
29343
|
yesterday: "'ikte dii.' p",
|
|
29344
29344
|
today: "'odne dii.' p",
|
|
29345
29345
|
tomorrow: "'ihtin dii.' p",
|
|
29346
29346
|
nextWeek: "EEEE 'dii.' p",
|
|
29347
29347
|
other: "P"
|
|
29348
|
-
},
|
|
29348
|
+
}, XO = (e, a, t, n) => HO[e], OO = {
|
|
29349
29349
|
narrow: ["o.Kr.", "m.Kr."],
|
|
29350
29350
|
abbreviated: ["o.Kr.", "m.Kr."],
|
|
29351
29351
|
wide: ["ovdal Kristusa", "maŋŋel Kristusa"]
|
|
29352
|
-
},
|
|
29352
|
+
}, _O = {
|
|
29353
29353
|
narrow: ["1", "2", "3", "4"],
|
|
29354
29354
|
abbreviated: ["Q1", "Q2", "Q3", "Q4"],
|
|
29355
29355
|
wide: ["1. kvartála", "2. kvartála", "3. kvartála", "4. kvartála"]
|
|
29356
|
-
},
|
|
29356
|
+
}, FO = {
|
|
29357
29357
|
narrow: ["O", "G", "N", "C", "M", "G", "S", "B", "Č", "G", "S", "J"],
|
|
29358
29358
|
abbreviated: [
|
|
29359
29359
|
"ođđa",
|
|
@@ -29383,7 +29383,7 @@ const o_ = {
|
|
|
29383
29383
|
"skábmamánnu",
|
|
29384
29384
|
"juovlamánnu"
|
|
29385
29385
|
]
|
|
29386
|
-
},
|
|
29386
|
+
}, AO = {
|
|
29387
29387
|
narrow: ["S", "V", "M", "G", "D", "B", "L"],
|
|
29388
29388
|
short: ["sotn", "vuos", "maŋ", "gask", "duor", "bear", "láv"],
|
|
29389
29389
|
abbreviated: ["sotn", "vuos", "maŋ", "gask", "duor", "bear", "láv"],
|
|
@@ -29396,7 +29396,7 @@ const o_ = {
|
|
|
29396
29396
|
"bearjadat",
|
|
29397
29397
|
"lávvardat"
|
|
29398
29398
|
]
|
|
29399
|
-
},
|
|
29399
|
+
}, YO = {
|
|
29400
29400
|
narrow: {
|
|
29401
29401
|
am: "a",
|
|
29402
29402
|
pm: "p",
|
|
@@ -29427,46 +29427,46 @@ const o_ = {
|
|
|
29427
29427
|
evening: "eahkes",
|
|
29428
29428
|
night: "ihkku"
|
|
29429
29429
|
}
|
|
29430
|
-
},
|
|
29431
|
-
ordinalNumber:
|
|
29430
|
+
}, IO = (e, a) => Number(e) + ".", LO = {
|
|
29431
|
+
ordinalNumber: IO,
|
|
29432
29432
|
era: i({
|
|
29433
|
-
values:
|
|
29433
|
+
values: OO,
|
|
29434
29434
|
defaultWidth: "wide"
|
|
29435
29435
|
}),
|
|
29436
29436
|
quarter: i({
|
|
29437
|
-
values:
|
|
29437
|
+
values: _O,
|
|
29438
29438
|
defaultWidth: "wide",
|
|
29439
29439
|
argumentCallback: (e) => e - 1
|
|
29440
29440
|
}),
|
|
29441
29441
|
month: i({
|
|
29442
|
-
values:
|
|
29442
|
+
values: FO,
|
|
29443
29443
|
defaultWidth: "wide"
|
|
29444
29444
|
}),
|
|
29445
29445
|
day: i({
|
|
29446
|
-
values:
|
|
29446
|
+
values: AO,
|
|
29447
29447
|
defaultWidth: "wide"
|
|
29448
29448
|
}),
|
|
29449
29449
|
dayPeriod: i({
|
|
29450
|
-
values:
|
|
29450
|
+
values: YO,
|
|
29451
29451
|
defaultWidth: "wide"
|
|
29452
29452
|
})
|
|
29453
|
-
},
|
|
29453
|
+
}, qO = /^(\d+)\.?/i, GO = /\d+/i, RO = {
|
|
29454
29454
|
narrow: /^(o\.? ?Kr\.?|m\.? ?Kr\.?)/i,
|
|
29455
29455
|
abbreviated: /^(o\.? ?Kr\.?|m\.? ?Kr\.?)/i,
|
|
29456
29456
|
wide: /^(ovdal Kristusa|ovdal min áiggi|maŋŋel Kristusa|min áigi)/i
|
|
29457
|
-
},
|
|
29457
|
+
}, QO = {
|
|
29458
29458
|
any: [/^o/i, /^m/i]
|
|
29459
|
-
},
|
|
29459
|
+
}, KO = {
|
|
29460
29460
|
narrow: /^[1234]/i,
|
|
29461
29461
|
abbreviated: /^q[1234]/i,
|
|
29462
29462
|
wide: /^[1234](\.)? kvartála/i
|
|
29463
|
-
},
|
|
29463
|
+
}, JO = {
|
|
29464
29464
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
29465
|
-
},
|
|
29465
|
+
}, BO = {
|
|
29466
29466
|
narrow: /^[ogncmsbčj]/i,
|
|
29467
29467
|
abbreviated: /^(ođđa|guov|njuk|cuo|mies|geas|suoi|borg|čakč|golg|skáb|juov)\.?/i,
|
|
29468
29468
|
wide: /^(ođđajagemánnu|guovvamánnu|njukčamánnu|cuoŋománnu|miessemánnu|geassemánnu|suoidnemánnu|borgemánnu|čakčamánnu|golggotmánnu|skábmamánnu|juovlamánnu)/i
|
|
29469
|
-
},
|
|
29469
|
+
}, ZO = {
|
|
29470
29470
|
narrow: [
|
|
29471
29471
|
/^o/i,
|
|
29472
29472
|
/^g/i,
|
|
@@ -29495,17 +29495,17 @@ const o_ = {
|
|
|
29495
29495
|
/^sk/i,
|
|
29496
29496
|
/^j/i
|
|
29497
29497
|
]
|
|
29498
|
-
},
|
|
29498
|
+
}, UO = {
|
|
29499
29499
|
narrow: /^[svmgdbl]/i,
|
|
29500
29500
|
short: /^(sotn|vuos|maŋ|gask|duor|bear|láv)/i,
|
|
29501
29501
|
abbreviated: /^(sotn|vuos|maŋ|gask|duor|bear|láv)/i,
|
|
29502
29502
|
wide: /^(sotnabeaivi|vuossárga|maŋŋebárga|gaskavahkku|duorastat|bearjadat|lávvardat)/i
|
|
29503
|
-
},
|
|
29503
|
+
}, e_ = {
|
|
29504
29504
|
any: [/^s/i, /^v/i, /^m/i, /^g/i, /^d/i, /^b/i, /^l/i]
|
|
29505
|
-
},
|
|
29505
|
+
}, t_ = {
|
|
29506
29506
|
narrow: /^(gaskaidja|gaskabeaivvi|(på) (iđđes|maŋŋel gaskabeaivvi|eahkes|ihkku)|[ap])/i,
|
|
29507
29507
|
any: /^([ap]\.?\s?m\.?|gaskaidja|gaskabeaivvi|(på) (iđđes|maŋŋel gaskabeaivvi|eahkes|ihkku))/i
|
|
29508
|
-
},
|
|
29508
|
+
}, a_ = {
|
|
29509
29509
|
any: {
|
|
29510
29510
|
am: /^a(\.?\s?m\.?)?$/i,
|
|
29511
29511
|
pm: /^p(\.?\s?m\.?)?$/i,
|
|
@@ -29516,62 +29516,62 @@ const o_ = {
|
|
|
29516
29516
|
evening: /eahkes/i,
|
|
29517
29517
|
night: /ihkku/i
|
|
29518
29518
|
}
|
|
29519
|
-
},
|
|
29519
|
+
}, n_ = {
|
|
29520
29520
|
ordinalNumber: g({
|
|
29521
|
-
matchPattern:
|
|
29522
|
-
parsePattern:
|
|
29521
|
+
matchPattern: qO,
|
|
29522
|
+
parsePattern: GO,
|
|
29523
29523
|
valueCallback: (e) => parseInt(e, 10)
|
|
29524
29524
|
}),
|
|
29525
29525
|
era: o({
|
|
29526
|
-
matchPatterns:
|
|
29526
|
+
matchPatterns: RO,
|
|
29527
29527
|
defaultMatchWidth: "wide",
|
|
29528
|
-
parsePatterns:
|
|
29528
|
+
parsePatterns: QO,
|
|
29529
29529
|
defaultParseWidth: "any"
|
|
29530
29530
|
}),
|
|
29531
29531
|
quarter: o({
|
|
29532
|
-
matchPatterns:
|
|
29532
|
+
matchPatterns: KO,
|
|
29533
29533
|
defaultMatchWidth: "wide",
|
|
29534
|
-
parsePatterns:
|
|
29534
|
+
parsePatterns: JO,
|
|
29535
29535
|
defaultParseWidth: "any",
|
|
29536
29536
|
valueCallback: (e) => e + 1
|
|
29537
29537
|
}),
|
|
29538
29538
|
month: o({
|
|
29539
|
-
matchPatterns:
|
|
29539
|
+
matchPatterns: BO,
|
|
29540
29540
|
defaultMatchWidth: "wide",
|
|
29541
|
-
parsePatterns:
|
|
29541
|
+
parsePatterns: ZO,
|
|
29542
29542
|
defaultParseWidth: "any"
|
|
29543
29543
|
}),
|
|
29544
29544
|
day: o({
|
|
29545
|
-
matchPatterns:
|
|
29545
|
+
matchPatterns: UO,
|
|
29546
29546
|
defaultMatchWidth: "wide",
|
|
29547
|
-
parsePatterns:
|
|
29547
|
+
parsePatterns: e_,
|
|
29548
29548
|
defaultParseWidth: "any"
|
|
29549
29549
|
}),
|
|
29550
29550
|
dayPeriod: o({
|
|
29551
|
-
matchPatterns:
|
|
29551
|
+
matchPatterns: t_,
|
|
29552
29552
|
defaultMatchWidth: "any",
|
|
29553
|
-
parsePatterns:
|
|
29553
|
+
parsePatterns: a_,
|
|
29554
29554
|
defaultParseWidth: "any"
|
|
29555
29555
|
})
|
|
29556
29556
|
}, LJ = {
|
|
29557
29557
|
code: "se",
|
|
29558
|
-
formatDistance:
|
|
29559
|
-
formatLong:
|
|
29560
|
-
formatRelative:
|
|
29561
|
-
localize:
|
|
29562
|
-
match:
|
|
29558
|
+
formatDistance: NO,
|
|
29559
|
+
formatLong: VO,
|
|
29560
|
+
formatRelative: XO,
|
|
29561
|
+
localize: LO,
|
|
29562
|
+
match: n_,
|
|
29563
29563
|
options: {
|
|
29564
29564
|
weekStartsOn: 1,
|
|
29565
29565
|
firstWeekContainsDate: 4
|
|
29566
29566
|
}
|
|
29567
29567
|
};
|
|
29568
|
-
function
|
|
29568
|
+
function r_(e, a) {
|
|
29569
29569
|
return a === 1 && e.one ? e.one : a >= 2 && a <= 4 && e.twoFour ? e.twoFour : e.other;
|
|
29570
29570
|
}
|
|
29571
29571
|
function pt(e, a, t) {
|
|
29572
|
-
return
|
|
29572
|
+
return r_(e, a)[t].replace("{{count}}", String(a));
|
|
29573
29573
|
}
|
|
29574
|
-
function
|
|
29574
|
+
function i_(e) {
|
|
29575
29575
|
return ["lessThan", "about", "over", "almost"].filter(
|
|
29576
29576
|
function(t) {
|
|
29577
29577
|
return !!e.match(new RegExp("^" + t));
|
|
@@ -29586,10 +29586,10 @@ function vt(e) {
|
|
|
29586
29586
|
let a = "";
|
|
29587
29587
|
return e === "lessThan" && (a = "menej než"), e === "over" && (a = "viac než"), a.length > 0 ? a + " " : "";
|
|
29588
29588
|
}
|
|
29589
|
-
function
|
|
29589
|
+
function o_(e) {
|
|
29590
29590
|
return e.charAt(0).toLowerCase() + e.slice(1);
|
|
29591
29591
|
}
|
|
29592
|
-
const
|
|
29592
|
+
const s_ = {
|
|
29593
29593
|
xSeconds: {
|
|
29594
29594
|
one: {
|
|
29595
29595
|
present: "sekunda",
|
|
@@ -29716,35 +29716,35 @@ const sO = {
|
|
|
29716
29716
|
future: "{{count}} rokov"
|
|
29717
29717
|
}
|
|
29718
29718
|
}
|
|
29719
|
-
},
|
|
29720
|
-
const n =
|
|
29719
|
+
}, d_ = (e, a, t) => {
|
|
29720
|
+
const n = i_(e) || "", r = o_(e.substring(n.length)), s = s_[r];
|
|
29721
29721
|
return t != null && t.addSuffix ? t.comparison && t.comparison > 0 ? bt(n) + "o " + vt(n) + pt(s, a, "future") : bt(n) + "pred " + vt(n) + pt(s, a, "past") : bt(n) + vt(n) + pt(s, a, "present");
|
|
29722
|
-
},
|
|
29722
|
+
}, u_ = {
|
|
29723
29723
|
full: "EEEE d. MMMM y",
|
|
29724
29724
|
long: "d. MMMM y",
|
|
29725
29725
|
medium: "d. M. y",
|
|
29726
29726
|
short: "d. M. y"
|
|
29727
|
-
},
|
|
29727
|
+
}, m_ = {
|
|
29728
29728
|
full: "H:mm:ss zzzz",
|
|
29729
29729
|
long: "H:mm:ss z",
|
|
29730
29730
|
medium: "H:mm:ss",
|
|
29731
29731
|
short: "H:mm"
|
|
29732
|
-
},
|
|
29732
|
+
}, l_ = {
|
|
29733
29733
|
full: "{{date}}, {{time}}",
|
|
29734
29734
|
long: "{{date}}, {{time}}",
|
|
29735
29735
|
medium: "{{date}}, {{time}}",
|
|
29736
29736
|
short: "{{date}} {{time}}"
|
|
29737
|
-
},
|
|
29737
|
+
}, c_ = {
|
|
29738
29738
|
date: d({
|
|
29739
|
-
formats:
|
|
29739
|
+
formats: u_,
|
|
29740
29740
|
defaultWidth: "full"
|
|
29741
29741
|
}),
|
|
29742
29742
|
time: d({
|
|
29743
|
-
formats:
|
|
29743
|
+
formats: m_,
|
|
29744
29744
|
defaultWidth: "full"
|
|
29745
29745
|
}),
|
|
29746
29746
|
dateTime: d({
|
|
29747
|
-
formats:
|
|
29747
|
+
formats: l_,
|
|
29748
29748
|
defaultWidth: "full"
|
|
29749
29749
|
})
|
|
29750
29750
|
}, Xt = [
|
|
@@ -29756,7 +29756,7 @@ const sO = {
|
|
|
29756
29756
|
"piatok",
|
|
29757
29757
|
"sobotu"
|
|
29758
29758
|
];
|
|
29759
|
-
function
|
|
29759
|
+
function h_(e) {
|
|
29760
29760
|
const a = Xt[e];
|
|
29761
29761
|
switch (e) {
|
|
29762
29762
|
case 0:
|
|
@@ -29773,7 +29773,7 @@ function Na(e) {
|
|
|
29773
29773
|
const a = Xt[e];
|
|
29774
29774
|
return e === 4 ? "'vo' eeee 'o' p" : "'v " + a + " o' p";
|
|
29775
29775
|
}
|
|
29776
|
-
function
|
|
29776
|
+
function f_(e) {
|
|
29777
29777
|
const a = Xt[e];
|
|
29778
29778
|
switch (e) {
|
|
29779
29779
|
case 0:
|
|
@@ -29786,31 +29786,31 @@ function fO(e) {
|
|
|
29786
29786
|
return "'budúci' eeee 'o' p";
|
|
29787
29787
|
}
|
|
29788
29788
|
}
|
|
29789
|
-
const
|
|
29789
|
+
const g_ = {
|
|
29790
29790
|
lastWeek: (e, a, t) => {
|
|
29791
29791
|
const n = e.getDay();
|
|
29792
|
-
return
|
|
29792
|
+
return O(e, a, t) ? Na(n) : h_(n);
|
|
29793
29793
|
},
|
|
29794
29794
|
yesterday: "'včera o' p",
|
|
29795
29795
|
today: "'dnes o' p",
|
|
29796
29796
|
tomorrow: "'zajtra o' p",
|
|
29797
29797
|
nextWeek: (e, a, t) => {
|
|
29798
29798
|
const n = e.getDay();
|
|
29799
|
-
return
|
|
29799
|
+
return O(e, a, t) ? Na(n) : f_(n);
|
|
29800
29800
|
},
|
|
29801
29801
|
other: "P"
|
|
29802
|
-
},
|
|
29803
|
-
const r =
|
|
29802
|
+
}, p_ = (e, a, t, n) => {
|
|
29803
|
+
const r = g_[e];
|
|
29804
29804
|
return typeof r == "function" ? r(a, t, n) : r;
|
|
29805
|
-
},
|
|
29805
|
+
}, b_ = {
|
|
29806
29806
|
narrow: ["pred Kr.", "po Kr."],
|
|
29807
29807
|
abbreviated: ["pred Kr.", "po Kr."],
|
|
29808
29808
|
wide: ["pred Kristom", "po Kristovi"]
|
|
29809
|
-
},
|
|
29809
|
+
}, v_ = {
|
|
29810
29810
|
narrow: ["1", "2", "3", "4"],
|
|
29811
29811
|
abbreviated: ["Q1", "Q2", "Q3", "Q4"],
|
|
29812
29812
|
wide: ["1. štvrťrok", "2. štvrťrok", "3. štvrťrok", "4. štvrťrok"]
|
|
29813
|
-
},
|
|
29813
|
+
}, w_ = {
|
|
29814
29814
|
narrow: ["j", "f", "m", "a", "m", "j", "j", "a", "s", "o", "n", "d"],
|
|
29815
29815
|
abbreviated: [
|
|
29816
29816
|
"jan",
|
|
@@ -29840,7 +29840,7 @@ const gO = {
|
|
|
29840
29840
|
"november",
|
|
29841
29841
|
"december"
|
|
29842
29842
|
]
|
|
29843
|
-
},
|
|
29843
|
+
}, y_ = {
|
|
29844
29844
|
narrow: ["j", "f", "m", "a", "m", "j", "j", "a", "s", "o", "n", "d"],
|
|
29845
29845
|
abbreviated: [
|
|
29846
29846
|
"jan",
|
|
@@ -29870,7 +29870,7 @@ const gO = {
|
|
|
29870
29870
|
"novembra",
|
|
29871
29871
|
"decembra"
|
|
29872
29872
|
]
|
|
29873
|
-
},
|
|
29873
|
+
}, P_ = {
|
|
29874
29874
|
narrow: ["n", "p", "u", "s", "š", "p", "s"],
|
|
29875
29875
|
short: ["ne", "po", "ut", "st", "št", "pi", "so"],
|
|
29876
29876
|
abbreviated: ["ne", "po", "ut", "st", "št", "pi", "so"],
|
|
@@ -29883,7 +29883,7 @@ const gO = {
|
|
|
29883
29883
|
"piatok",
|
|
29884
29884
|
"sobota"
|
|
29885
29885
|
]
|
|
29886
|
-
},
|
|
29886
|
+
}, M_ = {
|
|
29887
29887
|
narrow: {
|
|
29888
29888
|
am: "AM",
|
|
29889
29889
|
pm: "PM",
|
|
@@ -29914,7 +29914,7 @@ const gO = {
|
|
|
29914
29914
|
evening: "večer",
|
|
29915
29915
|
night: "noc"
|
|
29916
29916
|
}
|
|
29917
|
-
},
|
|
29917
|
+
}, k_ = {
|
|
29918
29918
|
narrow: {
|
|
29919
29919
|
am: "AM",
|
|
29920
29920
|
pm: "PM",
|
|
@@ -29945,50 +29945,50 @@ const gO = {
|
|
|
29945
29945
|
evening: "večer",
|
|
29946
29946
|
night: "v noci"
|
|
29947
29947
|
}
|
|
29948
|
-
}, $
|
|
29949
|
-
ordinalNumber: $
|
|
29948
|
+
}, $_ = (e, a) => Number(e) + ".", W_ = {
|
|
29949
|
+
ordinalNumber: $_,
|
|
29950
29950
|
era: i({
|
|
29951
|
-
values:
|
|
29951
|
+
values: b_,
|
|
29952
29952
|
defaultWidth: "wide"
|
|
29953
29953
|
}),
|
|
29954
29954
|
quarter: i({
|
|
29955
|
-
values:
|
|
29955
|
+
values: v_,
|
|
29956
29956
|
defaultWidth: "wide",
|
|
29957
29957
|
argumentCallback: (e) => e - 1
|
|
29958
29958
|
}),
|
|
29959
29959
|
month: i({
|
|
29960
|
-
values:
|
|
29960
|
+
values: w_,
|
|
29961
29961
|
defaultWidth: "wide",
|
|
29962
|
-
formattingValues:
|
|
29962
|
+
formattingValues: y_,
|
|
29963
29963
|
defaultFormattingWidth: "wide"
|
|
29964
29964
|
}),
|
|
29965
29965
|
day: i({
|
|
29966
|
-
values:
|
|
29966
|
+
values: P_,
|
|
29967
29967
|
defaultWidth: "wide"
|
|
29968
29968
|
}),
|
|
29969
29969
|
dayPeriod: i({
|
|
29970
|
-
values:
|
|
29970
|
+
values: M_,
|
|
29971
29971
|
defaultWidth: "wide",
|
|
29972
|
-
formattingValues:
|
|
29972
|
+
formattingValues: k_,
|
|
29973
29973
|
defaultFormattingWidth: "wide"
|
|
29974
29974
|
})
|
|
29975
|
-
},
|
|
29975
|
+
}, j_ = /^(\d+)\.?/i, D_ = /\d+/i, x_ = {
|
|
29976
29976
|
narrow: /^(pred Kr\.|pred n\. l\.|po Kr\.|n\. l\.)/i,
|
|
29977
29977
|
abbreviated: /^(pred Kr\.|pred n\. l\.|po Kr\.|n\. l\.)/i,
|
|
29978
29978
|
wide: /^(pred Kristom|pred na[šs][íi]m letopo[čc]tom|po Kristovi|n[áa][šs]ho letopo[čc]tu)/i
|
|
29979
|
-
},
|
|
29979
|
+
}, z_ = {
|
|
29980
29980
|
any: [/^pr/i, /^(po|n)/i]
|
|
29981
|
-
},
|
|
29981
|
+
}, S_ = {
|
|
29982
29982
|
narrow: /^[1234]/i,
|
|
29983
29983
|
abbreviated: /^q[1234]/i,
|
|
29984
29984
|
wide: /^[1234]\. [šs]tvr[ťt]rok/i
|
|
29985
|
-
},
|
|
29985
|
+
}, N_ = {
|
|
29986
29986
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
29987
|
-
},
|
|
29987
|
+
}, T_ = {
|
|
29988
29988
|
narrow: /^[jfmasond]/i,
|
|
29989
29989
|
abbreviated: /^(jan|feb|mar|apr|m[áa]j|j[úu]n|j[úu]l|aug|sep|okt|nov|dec)/i,
|
|
29990
29990
|
wide: /^(janu[áa]ra?|febru[áa]ra?|(marec|marca)|apr[íi]la?|m[áa]ja?|j[úu]na?|j[úu]la?|augusta?|(september|septembra)|(okt[óo]ber|okt[óo]bra)|(november|novembra)|(december|decembra))/i
|
|
29991
|
-
},
|
|
29991
|
+
}, C_ = {
|
|
29992
29992
|
narrow: [
|
|
29993
29993
|
/^j/i,
|
|
29994
29994
|
/^f/i,
|
|
@@ -30017,19 +30017,19 @@ const gO = {
|
|
|
30017
30017
|
/^n/i,
|
|
30018
30018
|
/^d/i
|
|
30019
30019
|
]
|
|
30020
|
-
},
|
|
30020
|
+
}, E_ = {
|
|
30021
30021
|
narrow: /^[npusšp]/i,
|
|
30022
30022
|
short: /^(ne|po|ut|st|št|pi|so)/i,
|
|
30023
30023
|
abbreviated: /^(ne|po|ut|st|št|pi|so)/i,
|
|
30024
30024
|
wide: /^(nede[ľl]a|pondelok|utorok|streda|[šs]tvrtok|piatok|sobota])/i
|
|
30025
|
-
},
|
|
30025
|
+
}, V_ = {
|
|
30026
30026
|
narrow: [/^n/i, /^p/i, /^u/i, /^s/i, /^š/i, /^p/i, /^s/i],
|
|
30027
30027
|
any: [/^n/i, /^po/i, /^u/i, /^st/i, /^(št|stv)/i, /^pi/i, /^so/i]
|
|
30028
|
-
},
|
|
30028
|
+
}, H_ = {
|
|
30029
30029
|
narrow: /^(am|pm|(o )?poln\.?|(nap\.?|pol\.?)|r[áa]no|pop\.?|ve[čc]\.?|(v n\.?|noc))/i,
|
|
30030
30030
|
abbreviated: /^(am|pm|(o )?poln\.?|(napol\.?|pol\.?)|r[áa]no|pop\.?|ve[čc]er|(v )?noci?)/i,
|
|
30031
30031
|
any: /^(am|pm|(o )?polnoci?|(na)?poludnie|r[áa]no|popoludn(ie|í|i)|ve[čc]er|(v )?noci?)/i
|
|
30032
|
-
},
|
|
30032
|
+
}, X_ = {
|
|
30033
30033
|
any: {
|
|
30034
30034
|
am: /^am/i,
|
|
30035
30035
|
pm: /^pm/i,
|
|
@@ -30040,59 +30040,59 @@ const gO = {
|
|
|
30040
30040
|
evening: /^ve[čc]/i,
|
|
30041
30041
|
night: /^(noc|v n\.)/i
|
|
30042
30042
|
}
|
|
30043
|
-
},
|
|
30043
|
+
}, O_ = {
|
|
30044
30044
|
ordinalNumber: g({
|
|
30045
|
-
matchPattern:
|
|
30046
|
-
parsePattern:
|
|
30045
|
+
matchPattern: j_,
|
|
30046
|
+
parsePattern: D_,
|
|
30047
30047
|
valueCallback: (e) => parseInt(e, 10)
|
|
30048
30048
|
}),
|
|
30049
30049
|
era: o({
|
|
30050
|
-
matchPatterns:
|
|
30050
|
+
matchPatterns: x_,
|
|
30051
30051
|
defaultMatchWidth: "wide",
|
|
30052
|
-
parsePatterns:
|
|
30052
|
+
parsePatterns: z_,
|
|
30053
30053
|
defaultParseWidth: "any"
|
|
30054
30054
|
}),
|
|
30055
30055
|
quarter: o({
|
|
30056
|
-
matchPatterns:
|
|
30056
|
+
matchPatterns: S_,
|
|
30057
30057
|
defaultMatchWidth: "wide",
|
|
30058
|
-
parsePatterns:
|
|
30058
|
+
parsePatterns: N_,
|
|
30059
30059
|
defaultParseWidth: "any",
|
|
30060
30060
|
valueCallback: (e) => e + 1
|
|
30061
30061
|
}),
|
|
30062
30062
|
month: o({
|
|
30063
|
-
matchPatterns:
|
|
30063
|
+
matchPatterns: T_,
|
|
30064
30064
|
defaultMatchWidth: "wide",
|
|
30065
|
-
parsePatterns:
|
|
30065
|
+
parsePatterns: C_,
|
|
30066
30066
|
defaultParseWidth: "any"
|
|
30067
30067
|
}),
|
|
30068
30068
|
day: o({
|
|
30069
|
-
matchPatterns:
|
|
30069
|
+
matchPatterns: E_,
|
|
30070
30070
|
defaultMatchWidth: "wide",
|
|
30071
|
-
parsePatterns:
|
|
30071
|
+
parsePatterns: V_,
|
|
30072
30072
|
defaultParseWidth: "any"
|
|
30073
30073
|
}),
|
|
30074
30074
|
dayPeriod: o({
|
|
30075
|
-
matchPatterns:
|
|
30075
|
+
matchPatterns: H_,
|
|
30076
30076
|
defaultMatchWidth: "any",
|
|
30077
|
-
parsePatterns:
|
|
30077
|
+
parsePatterns: X_,
|
|
30078
30078
|
defaultParseWidth: "any"
|
|
30079
30079
|
})
|
|
30080
30080
|
}, qJ = {
|
|
30081
30081
|
code: "sk",
|
|
30082
|
-
formatDistance:
|
|
30083
|
-
formatLong:
|
|
30084
|
-
formatRelative:
|
|
30085
|
-
localize:
|
|
30086
|
-
match:
|
|
30082
|
+
formatDistance: d_,
|
|
30083
|
+
formatLong: c_,
|
|
30084
|
+
formatRelative: p_,
|
|
30085
|
+
localize: W_,
|
|
30086
|
+
match: O_,
|
|
30087
30087
|
options: {
|
|
30088
30088
|
weekStartsOn: 1,
|
|
30089
30089
|
firstWeekContainsDate: 4
|
|
30090
30090
|
}
|
|
30091
30091
|
};
|
|
30092
|
-
function
|
|
30092
|
+
function __(e) {
|
|
30093
30093
|
return e.one !== void 0;
|
|
30094
30094
|
}
|
|
30095
|
-
const
|
|
30095
|
+
const F_ = {
|
|
30096
30096
|
lessThanXSeconds: {
|
|
30097
30097
|
present: {
|
|
30098
30098
|
one: "manj kot {{count}} sekunda",
|
|
@@ -30369,7 +30369,7 @@ const FO = {
|
|
|
30369
30369
|
}
|
|
30370
30370
|
}
|
|
30371
30371
|
};
|
|
30372
|
-
function
|
|
30372
|
+
function A_(e) {
|
|
30373
30373
|
switch (e % 100) {
|
|
30374
30374
|
case 1:
|
|
30375
30375
|
return "one";
|
|
@@ -30382,46 +30382,46 @@ function AO(e) {
|
|
|
30382
30382
|
return "other";
|
|
30383
30383
|
}
|
|
30384
30384
|
}
|
|
30385
|
-
const
|
|
30385
|
+
const Y_ = (e, a, t) => {
|
|
30386
30386
|
let n = "", r = "present";
|
|
30387
30387
|
t != null && t.addSuffix && (t.comparison && t.comparison > 0 ? (r = "future", n = "čez ") : (r = "past", n = "pred "));
|
|
30388
|
-
const s =
|
|
30388
|
+
const s = F_[e];
|
|
30389
30389
|
if (typeof s == "string")
|
|
30390
30390
|
n += s;
|
|
30391
30391
|
else {
|
|
30392
|
-
const m =
|
|
30393
|
-
|
|
30392
|
+
const m = A_(a);
|
|
30393
|
+
__(s) ? n += s[m].replace("{{count}}", String(a)) : n += s[r][m].replace("{{count}}", String(a));
|
|
30394
30394
|
}
|
|
30395
30395
|
return n;
|
|
30396
|
-
},
|
|
30396
|
+
}, I_ = {
|
|
30397
30397
|
full: "EEEE, dd. MMMM y",
|
|
30398
30398
|
long: "dd. MMMM y",
|
|
30399
30399
|
medium: "d. MMM y",
|
|
30400
30400
|
short: "d. MM. yy"
|
|
30401
|
-
},
|
|
30401
|
+
}, L_ = {
|
|
30402
30402
|
full: "HH:mm:ss zzzz",
|
|
30403
30403
|
long: "HH:mm:ss z",
|
|
30404
30404
|
medium: "HH:mm:ss",
|
|
30405
30405
|
short: "HH:mm"
|
|
30406
|
-
},
|
|
30406
|
+
}, q_ = {
|
|
30407
30407
|
full: "{{date}} {{time}}",
|
|
30408
30408
|
long: "{{date}} {{time}}",
|
|
30409
30409
|
medium: "{{date}} {{time}}",
|
|
30410
30410
|
short: "{{date}} {{time}}"
|
|
30411
|
-
},
|
|
30411
|
+
}, G_ = {
|
|
30412
30412
|
date: d({
|
|
30413
|
-
formats:
|
|
30413
|
+
formats: I_,
|
|
30414
30414
|
defaultWidth: "full"
|
|
30415
30415
|
}),
|
|
30416
30416
|
time: d({
|
|
30417
|
-
formats:
|
|
30417
|
+
formats: L_,
|
|
30418
30418
|
defaultWidth: "full"
|
|
30419
30419
|
}),
|
|
30420
30420
|
dateTime: d({
|
|
30421
|
-
formats:
|
|
30421
|
+
formats: q_,
|
|
30422
30422
|
defaultWidth: "full"
|
|
30423
30423
|
})
|
|
30424
|
-
},
|
|
30424
|
+
}, R_ = {
|
|
30425
30425
|
lastWeek: (e) => {
|
|
30426
30426
|
switch (e.getDay()) {
|
|
30427
30427
|
case 0:
|
|
@@ -30450,18 +30450,18 @@ const YO = (e, a, t) => {
|
|
|
30450
30450
|
}
|
|
30451
30451
|
},
|
|
30452
30452
|
other: "P"
|
|
30453
|
-
},
|
|
30454
|
-
const r =
|
|
30453
|
+
}, Q_ = (e, a, t, n) => {
|
|
30454
|
+
const r = R_[e];
|
|
30455
30455
|
return typeof r == "function" ? r(a) : r;
|
|
30456
|
-
},
|
|
30456
|
+
}, K_ = {
|
|
30457
30457
|
narrow: ["pr. n. št.", "po n. št."],
|
|
30458
30458
|
abbreviated: ["pr. n. št.", "po n. št."],
|
|
30459
30459
|
wide: ["pred našim štetjem", "po našem štetju"]
|
|
30460
|
-
},
|
|
30460
|
+
}, J_ = {
|
|
30461
30461
|
narrow: ["1", "2", "3", "4"],
|
|
30462
30462
|
abbreviated: ["1. čet.", "2. čet.", "3. čet.", "4. čet."],
|
|
30463
30463
|
wide: ["1. četrtletje", "2. četrtletje", "3. četrtletje", "4. četrtletje"]
|
|
30464
|
-
},
|
|
30464
|
+
}, B_ = {
|
|
30465
30465
|
narrow: ["j", "f", "m", "a", "m", "j", "j", "a", "s", "o", "n", "d"],
|
|
30466
30466
|
abbreviated: [
|
|
30467
30467
|
"jan.",
|
|
@@ -30491,7 +30491,7 @@ const YO = (e, a, t) => {
|
|
|
30491
30491
|
"november",
|
|
30492
30492
|
"december"
|
|
30493
30493
|
]
|
|
30494
|
-
},
|
|
30494
|
+
}, Z_ = {
|
|
30495
30495
|
narrow: ["n", "p", "t", "s", "č", "p", "s"],
|
|
30496
30496
|
short: ["ned.", "pon.", "tor.", "sre.", "čet.", "pet.", "sob."],
|
|
30497
30497
|
abbreviated: ["ned.", "pon.", "tor.", "sre.", "čet.", "pet.", "sob."],
|
|
@@ -30504,7 +30504,7 @@ const YO = (e, a, t) => {
|
|
|
30504
30504
|
"petek",
|
|
30505
30505
|
"sobota"
|
|
30506
30506
|
]
|
|
30507
|
-
},
|
|
30507
|
+
}, U_ = {
|
|
30508
30508
|
narrow: {
|
|
30509
30509
|
am: "d",
|
|
30510
30510
|
pm: "p",
|
|
@@ -30569,24 +30569,24 @@ const YO = (e, a, t) => {
|
|
|
30569
30569
|
}, tF = (e, a) => Number(e) + ".", aF = {
|
|
30570
30570
|
ordinalNumber: tF,
|
|
30571
30571
|
era: i({
|
|
30572
|
-
values:
|
|
30572
|
+
values: K_,
|
|
30573
30573
|
defaultWidth: "wide"
|
|
30574
30574
|
}),
|
|
30575
30575
|
quarter: i({
|
|
30576
|
-
values:
|
|
30576
|
+
values: J_,
|
|
30577
30577
|
defaultWidth: "wide",
|
|
30578
30578
|
argumentCallback: (e) => e - 1
|
|
30579
30579
|
}),
|
|
30580
30580
|
month: i({
|
|
30581
|
-
values:
|
|
30581
|
+
values: B_,
|
|
30582
30582
|
defaultWidth: "wide"
|
|
30583
30583
|
}),
|
|
30584
30584
|
day: i({
|
|
30585
|
-
values:
|
|
30585
|
+
values: Z_,
|
|
30586
30586
|
defaultWidth: "wide"
|
|
30587
30587
|
}),
|
|
30588
30588
|
dayPeriod: i({
|
|
30589
|
-
values:
|
|
30589
|
+
values: U_,
|
|
30590
30590
|
defaultWidth: "wide",
|
|
30591
30591
|
formattingValues: eF,
|
|
30592
30592
|
defaultFormattingWidth: "wide"
|
|
@@ -30720,9 +30720,9 @@ const YO = (e, a, t) => {
|
|
|
30720
30720
|
})
|
|
30721
30721
|
}, GJ = {
|
|
30722
30722
|
code: "sl",
|
|
30723
|
-
formatDistance:
|
|
30724
|
-
formatLong:
|
|
30725
|
-
formatRelative:
|
|
30723
|
+
formatDistance: Y_,
|
|
30724
|
+
formatLong: G_,
|
|
30725
|
+
formatRelative: Q_,
|
|
30726
30726
|
localize: aF,
|
|
30727
30727
|
match: gF,
|
|
30728
30728
|
options: {
|
|
@@ -30975,11 +30975,11 @@ const YO = (e, a, t) => {
|
|
|
30975
30975
|
wide: /^[1234]-mujori (i{1,3}|iv)/i
|
|
30976
30976
|
}, XF = {
|
|
30977
30977
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
30978
|
-
},
|
|
30978
|
+
}, OF = {
|
|
30979
30979
|
narrow: /^[jsmpqkftnd]/i,
|
|
30980
30980
|
abbreviated: /^(jan|shk|mar|pri|maj|qer|kor|gus|sht|tet|nën|dhj)/i,
|
|
30981
30981
|
wide: /^(janar|shkurt|mars|prill|maj|qershor|korrik|gusht|shtator|tetor|nëntor|dhjetor)/i
|
|
30982
|
-
},
|
|
30982
|
+
}, _F = {
|
|
30983
30983
|
narrow: [
|
|
30984
30984
|
/^j/i,
|
|
30985
30985
|
/^s/i,
|
|
@@ -31050,9 +31050,9 @@ const YO = (e, a, t) => {
|
|
|
31050
31050
|
valueCallback: (e) => e + 1
|
|
31051
31051
|
}),
|
|
31052
31052
|
month: o({
|
|
31053
|
-
matchPatterns:
|
|
31053
|
+
matchPatterns: OF,
|
|
31054
31054
|
defaultMatchWidth: "wide",
|
|
31055
|
-
parsePatterns:
|
|
31055
|
+
parsePatterns: _F,
|
|
31056
31056
|
defaultParseWidth: "any"
|
|
31057
31057
|
}),
|
|
31058
31058
|
day: o({
|
|
@@ -31988,7 +31988,7 @@ const YO = (e, a, t) => {
|
|
|
31988
31988
|
formattingValues: EA,
|
|
31989
31989
|
defaultFormattingWidth: "wide"
|
|
31990
31990
|
})
|
|
31991
|
-
},
|
|
31991
|
+
}, OA = /^(\d+)\./i, _A = /\d+/i, FA = {
|
|
31992
31992
|
narrow: /^(pr\.n\.e\.|AD)/i,
|
|
31993
31993
|
abbreviated: /^(pr\.\s?Hr\.|po\.\s?Hr\.)/i,
|
|
31994
31994
|
wide: /^(Pre Hrista|pre nove ere|Posle Hrista|nova era)/i
|
|
@@ -32056,8 +32056,8 @@ const YO = (e, a, t) => {
|
|
|
32056
32056
|
}
|
|
32057
32057
|
}, JA = {
|
|
32058
32058
|
ordinalNumber: g({
|
|
32059
|
-
matchPattern:
|
|
32060
|
-
parsePattern:
|
|
32059
|
+
matchPattern: OA,
|
|
32060
|
+
parsePattern: _A,
|
|
32061
32061
|
valueCallback: (e) => parseInt(e, 10)
|
|
32062
32062
|
}),
|
|
32063
32063
|
era: o({
|
|
@@ -32718,7 +32718,7 @@ const xY = {
|
|
|
32718
32718
|
"மூன்றாம் காலாண்டு",
|
|
32719
32719
|
"நான்காம் காலாண்டு"
|
|
32720
32720
|
]
|
|
32721
|
-
},
|
|
32721
|
+
}, OY = {
|
|
32722
32722
|
// CLDR #700 - #711
|
|
32723
32723
|
narrow: ["ஜ", "பி", "மா", "ஏ", "மே", "ஜூ", "ஜூ", "ஆ", "செ", "அ", "ந", "டி"],
|
|
32724
32724
|
// CLDR #1676 - #1687
|
|
@@ -32763,7 +32763,7 @@ const xY = {
|
|
|
32763
32763
|
"டிசம்பர்"
|
|
32764
32764
|
// December
|
|
32765
32765
|
]
|
|
32766
|
-
},
|
|
32766
|
+
}, _Y = {
|
|
32767
32767
|
// CLDR #1766 - #1772
|
|
32768
32768
|
narrow: ["ஞா", "தி", "செ", "பு", "வி", "வெ", "ச"],
|
|
32769
32769
|
// CLDR #1752 - #1758
|
|
@@ -32861,11 +32861,11 @@ const xY = {
|
|
|
32861
32861
|
argumentCallback: (e) => e - 1
|
|
32862
32862
|
}),
|
|
32863
32863
|
month: i({
|
|
32864
|
-
values:
|
|
32864
|
+
values: OY,
|
|
32865
32865
|
defaultWidth: "wide"
|
|
32866
32866
|
}),
|
|
32867
32867
|
day: i({
|
|
32868
|
-
values:
|
|
32868
|
+
values: _Y,
|
|
32869
32869
|
defaultWidth: "wide"
|
|
32870
32870
|
}),
|
|
32871
32871
|
dayPeriod: i({
|
|
@@ -33555,7 +33555,7 @@ const xY = {
|
|
|
33555
33555
|
tomorrow: "'พรุ่งนี้เวลา' p",
|
|
33556
33556
|
nextWeek: "eeee 'เวลา' p",
|
|
33557
33557
|
other: "P"
|
|
33558
|
-
},
|
|
33558
|
+
}, OI = (e, a, t, n) => XI[e], _I = {
|
|
33559
33559
|
narrow: ["B", "คศ"],
|
|
33560
33560
|
abbreviated: ["BC", "ค.ศ."],
|
|
33561
33561
|
wide: ["ปีก่อนคริสตกาล", "คริสต์ศักราช"]
|
|
@@ -33676,7 +33676,7 @@ const xY = {
|
|
|
33676
33676
|
}, qI = (e, a) => String(e), GI = {
|
|
33677
33677
|
ordinalNumber: qI,
|
|
33678
33678
|
era: i({
|
|
33679
|
-
values:
|
|
33679
|
+
values: _I,
|
|
33680
33680
|
defaultWidth: "wide"
|
|
33681
33681
|
}),
|
|
33682
33682
|
quarter: i({
|
|
@@ -33805,7 +33805,7 @@ const xY = {
|
|
|
33805
33805
|
code: "th",
|
|
33806
33806
|
formatDistance: TI,
|
|
33807
33807
|
formatLong: HI,
|
|
33808
|
-
formatRelative:
|
|
33808
|
+
formatRelative: OI,
|
|
33809
33809
|
localize: GI,
|
|
33810
33810
|
match: iL,
|
|
33811
33811
|
options: {
|
|
@@ -34255,12 +34255,12 @@ const xY = {
|
|
|
34255
34255
|
long: "MMMM do, y",
|
|
34256
34256
|
medium: "MMM d, y",
|
|
34257
34257
|
short: "MM/dd/yyyy"
|
|
34258
|
-
},
|
|
34258
|
+
}, OL = {
|
|
34259
34259
|
full: "h:mm:ss a zzzz",
|
|
34260
34260
|
long: "h:mm:ss a z",
|
|
34261
34261
|
medium: "h:mm:ss a",
|
|
34262
34262
|
short: "h:mm a"
|
|
34263
|
-
},
|
|
34263
|
+
}, _L = {
|
|
34264
34264
|
full: "{{date}} 'دە' {{time}}",
|
|
34265
34265
|
long: "{{date}} 'دە' {{time}}",
|
|
34266
34266
|
medium: "{{date}}, {{time}}",
|
|
@@ -34271,11 +34271,11 @@ const xY = {
|
|
|
34271
34271
|
defaultWidth: "full"
|
|
34272
34272
|
}),
|
|
34273
34273
|
time: d({
|
|
34274
|
-
formats:
|
|
34274
|
+
formats: OL,
|
|
34275
34275
|
defaultWidth: "full"
|
|
34276
34276
|
}),
|
|
34277
34277
|
dateTime: d({
|
|
34278
|
-
formats:
|
|
34278
|
+
formats: _L,
|
|
34279
34279
|
defaultWidth: "full"
|
|
34280
34280
|
})
|
|
34281
34281
|
}, AL = {
|
|
@@ -34755,7 +34755,7 @@ const mq = (e, a) => a && a.addSuffix ? a.comparison && a.comparison > 0 ? "за
|
|
|
34755
34755
|
formats: gq,
|
|
34756
34756
|
defaultWidth: "full"
|
|
34757
34757
|
})
|
|
34758
|
-
},
|
|
34758
|
+
}, Ot = [
|
|
34759
34759
|
"неділю",
|
|
34760
34760
|
"понеділок",
|
|
34761
34761
|
"вівторок",
|
|
@@ -34765,7 +34765,7 @@ const mq = (e, a) => a && a.addSuffix ? a.comparison && a.comparison > 0 ? "за
|
|
|
34765
34765
|
"суботу"
|
|
34766
34766
|
];
|
|
34767
34767
|
function bq(e) {
|
|
34768
|
-
const a =
|
|
34768
|
+
const a = Ot[e];
|
|
34769
34769
|
switch (e) {
|
|
34770
34770
|
case 0:
|
|
34771
34771
|
case 3:
|
|
@@ -34779,10 +34779,10 @@ function bq(e) {
|
|
|
34779
34779
|
}
|
|
34780
34780
|
}
|
|
34781
34781
|
function xn(e) {
|
|
34782
|
-
return "'у " +
|
|
34782
|
+
return "'у " + Ot[e] + " о' p";
|
|
34783
34783
|
}
|
|
34784
34784
|
function vq(e) {
|
|
34785
|
-
const a =
|
|
34785
|
+
const a = Ot[e];
|
|
34786
34786
|
switch (e) {
|
|
34787
34787
|
case 0:
|
|
34788
34788
|
case 3:
|
|
@@ -34797,10 +34797,10 @@ function vq(e) {
|
|
|
34797
34797
|
}
|
|
34798
34798
|
const wq = (e, a, t) => {
|
|
34799
34799
|
const n = S(e), r = n.getDay();
|
|
34800
|
-
return
|
|
34800
|
+
return O(n, a, t) ? xn(r) : bq(r);
|
|
34801
34801
|
}, yq = (e, a, t) => {
|
|
34802
34802
|
const n = S(e), r = n.getDay();
|
|
34803
|
-
return
|
|
34803
|
+
return O(n, a, t) ? xn(r) : vq(r);
|
|
34804
34804
|
}, Pq = {
|
|
34805
34805
|
lastWeek: wq,
|
|
34806
34806
|
yesterday: "'вчора о' p",
|
|
@@ -34998,11 +34998,11 @@ const wq = (e, a, t) => {
|
|
|
34998
34998
|
wide: /^[1234](-?[иі]?й?)? квартал/i
|
|
34999
34999
|
}, Xq = {
|
|
35000
35000
|
any: [/1/i, /2/i, /3/i, /4/i]
|
|
35001
|
-
},
|
|
35001
|
+
}, Oq = {
|
|
35002
35002
|
narrow: /^[слбктчвжг]/i,
|
|
35003
35003
|
abbreviated: /^(січ|лют|бер(ез)?|квіт|трав|черв|лип|серп|вер(ес)?|жовт|лис(топ)?|груд)\.?/i,
|
|
35004
35004
|
wide: /^(січень|січня|лютий|лютого|березень|березня|квітень|квітня|травень|травня|червня|червень|липень|липня|серпень|серпня|вересень|вересня|жовтень|жовтня|листопад[а]?|грудень|грудня)/i
|
|
35005
|
-
},
|
|
35005
|
+
}, _q = {
|
|
35006
35006
|
narrow: [
|
|
35007
35007
|
/^с/i,
|
|
35008
35008
|
/^л/i,
|
|
@@ -35074,9 +35074,9 @@ const wq = (e, a, t) => {
|
|
|
35074
35074
|
valueCallback: (e) => e + 1
|
|
35075
35075
|
}),
|
|
35076
35076
|
month: o({
|
|
35077
|
-
matchPatterns:
|
|
35077
|
+
matchPatterns: Oq,
|
|
35078
35078
|
defaultMatchWidth: "wide",
|
|
35079
|
-
parsePatterns:
|
|
35079
|
+
parsePatterns: _q,
|
|
35080
35080
|
defaultParseWidth: "any"
|
|
35081
35081
|
}),
|
|
35082
35082
|
day: o({
|
|
@@ -35649,11 +35649,11 @@ const wq = (e, a, t) => {
|
|
|
35649
35649
|
formattingValues: CG,
|
|
35650
35650
|
defaultFormattingWidth: "any"
|
|
35651
35651
|
})
|
|
35652
|
-
}, HG = /^(\d+)(чи)?/i, XG = /\d+/i,
|
|
35652
|
+
}, HG = /^(\d+)(чи)?/i, XG = /\d+/i, OG = {
|
|
35653
35653
|
narrow: /^(м\.а|м\.)/i,
|
|
35654
35654
|
abbreviated: /^(м\.а|м\.)/i,
|
|
35655
35655
|
wide: /^(милоддан аввал|милоддан кейин)/i
|
|
35656
|
-
},
|
|
35656
|
+
}, _G = {
|
|
35657
35657
|
any: [/^м/i, /^а/i]
|
|
35658
35658
|
}, FG = {
|
|
35659
35659
|
narrow: /^[1234]/i,
|
|
@@ -35722,9 +35722,9 @@ const wq = (e, a, t) => {
|
|
|
35722
35722
|
valueCallback: (e) => parseInt(e, 10)
|
|
35723
35723
|
}),
|
|
35724
35724
|
era: o({
|
|
35725
|
-
matchPatterns:
|
|
35725
|
+
matchPatterns: OG,
|
|
35726
35726
|
defaultMatchWidth: "wide",
|
|
35727
|
-
parsePatterns:
|
|
35727
|
+
parsePatterns: _G,
|
|
35728
35728
|
defaultParseWidth: "any"
|
|
35729
35729
|
}),
|
|
35730
35730
|
quarter: o({
|
|
@@ -36336,7 +36336,7 @@ const wq = (e, a, t) => {
|
|
|
36336
36336
|
};
|
|
36337
36337
|
function Ca(e, a, t) {
|
|
36338
36338
|
const n = "eeee p";
|
|
36339
|
-
return
|
|
36339
|
+
return O(e, a, t) ? n : e.getTime() > a.getTime() ? "'下个'" + n : "'上个'" + n;
|
|
36340
36340
|
}
|
|
36341
36341
|
const TR = {
|
|
36342
36342
|
lastWeek: Ca,
|
|
@@ -36406,7 +36406,7 @@ const TR = {
|
|
|
36406
36406
|
short: ["日", "一", "二", "三", "四", "五", "六"],
|
|
36407
36407
|
abbreviated: ["周日", "周一", "周二", "周三", "周四", "周五", "周六"],
|
|
36408
36408
|
wide: ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六"]
|
|
36409
|
-
},
|
|
36409
|
+
}, OR = {
|
|
36410
36410
|
narrow: {
|
|
36411
36411
|
am: "上",
|
|
36412
36412
|
pm: "下",
|
|
@@ -36437,7 +36437,7 @@ const TR = {
|
|
|
36437
36437
|
evening: "晚上",
|
|
36438
36438
|
night: "夜间"
|
|
36439
36439
|
}
|
|
36440
|
-
},
|
|
36440
|
+
}, _R = {
|
|
36441
36441
|
narrow: {
|
|
36442
36442
|
am: "上",
|
|
36443
36443
|
pm: "下",
|
|
@@ -36502,9 +36502,9 @@ const TR = {
|
|
|
36502
36502
|
defaultWidth: "wide"
|
|
36503
36503
|
}),
|
|
36504
36504
|
dayPeriod: i({
|
|
36505
|
-
values:
|
|
36505
|
+
values: OR,
|
|
36506
36506
|
defaultWidth: "wide",
|
|
36507
|
-
formattingValues:
|
|
36507
|
+
formattingValues: _R,
|
|
36508
36508
|
defaultFormattingWidth: "wide"
|
|
36509
36509
|
})
|
|
36510
36510
|
}, YR = /^(第\s*)?\d+(日|时|分|秒)?/i, IR = /\d+/i, LR = {
|
|
@@ -37092,11 +37092,11 @@ const TR = {
|
|
|
37092
37092
|
tomorrow: "'明天' p",
|
|
37093
37093
|
nextWeek: "'下個'eeee p",
|
|
37094
37094
|
other: "P"
|
|
37095
|
-
}, XQ = (e, a, t, n) => HQ[e],
|
|
37095
|
+
}, XQ = (e, a, t, n) => HQ[e], OQ = {
|
|
37096
37096
|
narrow: ["前", "公元"],
|
|
37097
37097
|
abbreviated: ["前", "公元"],
|
|
37098
37098
|
wide: ["公元前", "公元"]
|
|
37099
|
-
},
|
|
37099
|
+
}, _Q = {
|
|
37100
37100
|
narrow: ["1", "2", "3", "4"],
|
|
37101
37101
|
abbreviated: ["第一刻", "第二刻", "第三刻", "第四刻"],
|
|
37102
37102
|
wide: ["第一刻鐘", "第二刻鐘", "第三刻鐘", "第四刻鐘"]
|
|
@@ -37227,11 +37227,11 @@ const TR = {
|
|
|
37227
37227
|
}, qQ = {
|
|
37228
37228
|
ordinalNumber: LQ,
|
|
37229
37229
|
era: i({
|
|
37230
|
-
values:
|
|
37230
|
+
values: OQ,
|
|
37231
37231
|
defaultWidth: "wide"
|
|
37232
37232
|
}),
|
|
37233
37233
|
quarter: i({
|
|
37234
|
-
values:
|
|
37234
|
+
values: _Q,
|
|
37235
37235
|
defaultWidth: "wide",
|
|
37236
37236
|
argumentCallback: (e) => e - 1
|
|
37237
37237
|
}),
|
|
@@ -37436,8 +37436,8 @@ export {
|
|
|
37436
37436
|
VK as bs,
|
|
37437
37437
|
HK as ca,
|
|
37438
37438
|
XK as ckb,
|
|
37439
|
-
|
|
37440
|
-
|
|
37439
|
+
OK as cs,
|
|
37440
|
+
_K as cy,
|
|
37441
37441
|
FK as da,
|
|
37442
37442
|
AK as de,
|
|
37443
37443
|
YK as deAT,
|
|
@@ -37491,8 +37491,8 @@ export {
|
|
|
37491
37491
|
VJ as nl,
|
|
37492
37492
|
HJ as nlBE,
|
|
37493
37493
|
XJ as nn,
|
|
37494
|
-
|
|
37495
|
-
|
|
37494
|
+
OJ as oc,
|
|
37495
|
+
_J as pl,
|
|
37496
37496
|
FJ as pt,
|
|
37497
37497
|
AJ as ptBR,
|
|
37498
37498
|
YJ as ro,
|