superdesk-ui-framework 2.4.20 → 2.4.21
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/app/scripts/check.js +1 -1
- package/app-typescript/components/Input.tsx +2 -1
- package/app-typescript/components/Tag.tsx +3 -3
- package/dist/components/checkbox.html +1 -1
- package/dist/examples.bundle.js +764 -577
- package/dist/react/Inputs.tsx +1 -0
- package/dist/react/Tags.tsx +9 -7
- package/dist/superdesk-ui.bundle.js +718 -561
- package/dist/vendor.bundle.js +10 -10
- package/examples/pages/components/checkbox.html +1 -1
- package/examples/pages/react/Inputs.tsx +1 -0
- package/examples/pages/react/Tags.tsx +9 -7
- package/package.json +1 -1
- package/react/components/Input.d.ts +1 -0
- package/react/components/Input.js +2 -1
- package/react/components/Tag.d.ts +2 -2
- package/react/components/Tag.js +2 -2
@@ -78,7 +78,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
78
78
|
/***/ (function(module, exports, __webpack_require__) {
|
79
79
|
|
80
80
|
/* WEBPACK VAR INJECTION */(function(module) {var require;//! moment.js
|
81
|
-
//! version : 2.29.
|
81
|
+
//! version : 2.29.3
|
82
82
|
//! authors : Tim Wood, Iskren Chernev, Moment.js contributors
|
83
83
|
//! license : MIT
|
84
84
|
//! momentjs.com
|
@@ -155,8 +155,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
155
155
|
|
156
156
|
function map(arr, fn) {
|
157
157
|
var res = [],
|
158
|
-
i
|
159
|
-
|
158
|
+
i,
|
159
|
+
arrLen = arr.length;
|
160
|
+
for (i = 0; i < arrLen; ++i) {
|
160
161
|
res.push(fn(arr[i], i));
|
161
162
|
}
|
162
163
|
return res;
|
@@ -285,7 +286,10 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
285
286
|
updateInProgress = false;
|
286
287
|
|
287
288
|
function copyConfig(to, from) {
|
288
|
-
var i,
|
289
|
+
var i,
|
290
|
+
prop,
|
291
|
+
val,
|
292
|
+
momentPropertiesLen = momentProperties.length;
|
289
293
|
|
290
294
|
if (!isUndefined(from._isAMomentObject)) {
|
291
295
|
to._isAMomentObject = from._isAMomentObject;
|
@@ -318,8 +322,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
318
322
|
to._locale = from._locale;
|
319
323
|
}
|
320
324
|
|
321
|
-
if (
|
322
|
-
for (i = 0; i <
|
325
|
+
if (momentPropertiesLen > 0) {
|
326
|
+
for (i = 0; i < momentPropertiesLen; i++) {
|
323
327
|
prop = momentProperties[i];
|
324
328
|
val = from[prop];
|
325
329
|
if (!isUndefined(val)) {
|
@@ -374,8 +378,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
374
378
|
var args = [],
|
375
379
|
arg,
|
376
380
|
i,
|
377
|
-
key
|
378
|
-
|
381
|
+
key,
|
382
|
+
argLen = arguments.length;
|
383
|
+
for (i = 0; i < argLen; i++) {
|
379
384
|
arg = '';
|
380
385
|
if (typeof arguments[i] === 'object') {
|
381
386
|
arg += '\n[' + i + '] ';
|
@@ -525,7 +530,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
525
530
|
);
|
526
531
|
}
|
527
532
|
|
528
|
-
var formattingTokens =
|
533
|
+
var formattingTokens =
|
534
|
+
/(\[[^\[]*\])|(\\)?([Hh]mm(ss)?|Mo|MM?M?M?|Do|DDDo|DD?D?D?|ddd?d?|do?|w[o|w]?|W[o|W]?|Qo?|N{1,5}|YYYYYY|YYYYY|YYYY|YY|y{2,4}|yo?|gg(ggg?)?|GG(GGG?)?|e|E|a|A|hh?|HH?|kk?|mm?|ss?|S{1,9}|x|X|zz?|ZZ?|.)/g,
|
529
535
|
localFormattingTokens = /(\[[^\[]*\])|(\\)?(LTS|LT|LL?L?L?|l{1,4})/g,
|
530
536
|
formatFunctions = {},
|
531
537
|
formatTokenFunctions = {};
|
@@ -829,8 +835,9 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
829
835
|
if (typeof units === 'object') {
|
830
836
|
units = normalizeObjectUnits(units);
|
831
837
|
var prioritized = getPrioritizedUnits(units),
|
832
|
-
i
|
833
|
-
|
838
|
+
i,
|
839
|
+
prioritizedLen = prioritized.length;
|
840
|
+
for (i = 0; i < prioritizedLen; i++) {
|
834
841
|
this[prioritized[i].unit](units[prioritized[i].unit]);
|
835
842
|
}
|
836
843
|
} else {
|
@@ -860,7 +867,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
860
867
|
matchTimestamp = /[+-]?\d+(\.\d{1,3})?/, // 123456789 123456789.123
|
861
868
|
// any word (or two) characters or numbers including two/three word month in arabic.
|
862
869
|
// includes scottish gaelic two word and hyphenated months
|
863
|
-
matchWord =
|
870
|
+
matchWord =
|
871
|
+
/[0-9]{0,256}['a-z\u00A0-\u05FF\u0700-\uD7FF\uF900-\uFDCF\uFDF0-\uFF07\uFF10-\uFFEF]{1,256}|[\u0600-\u06FF\/]{1,256}(\s*?[\u0600-\u06FF]{1,256}){1,2}/i,
|
864
872
|
regexes;
|
865
873
|
|
866
874
|
regexes = {};
|
@@ -886,15 +894,12 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
886
894
|
return regexEscape(
|
887
895
|
s
|
888
896
|
.replace('\\', '')
|
889
|
-
.replace(
|
890
|
-
|
891
|
-
p1,
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
) {
|
896
|
-
return p1 || p2 || p3 || p4;
|
897
|
-
})
|
897
|
+
.replace(
|
898
|
+
/\\(\[)|\\(\])|\[([^\]\[]*)\]|\\(.)/g,
|
899
|
+
function (matched, p1, p2, p3, p4) {
|
900
|
+
return p1 || p2 || p3 || p4;
|
901
|
+
}
|
902
|
+
)
|
898
903
|
);
|
899
904
|
}
|
900
905
|
|
@@ -906,7 +911,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
906
911
|
|
907
912
|
function addParseToken(token, callback) {
|
908
913
|
var i,
|
909
|
-
func = callback
|
914
|
+
func = callback,
|
915
|
+
tokenLen;
|
910
916
|
if (typeof token === 'string') {
|
911
917
|
token = [token];
|
912
918
|
}
|
@@ -915,7 +921,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
915
921
|
array[callback] = toInt(input);
|
916
922
|
};
|
917
923
|
}
|
918
|
-
|
924
|
+
tokenLen = token.length;
|
925
|
+
for (i = 0; i < tokenLen; i++) {
|
919
926
|
tokens[token[i]] = func;
|
920
927
|
}
|
921
928
|
}
|
@@ -1026,12 +1033,12 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1026
1033
|
|
1027
1034
|
// LOCALES
|
1028
1035
|
|
1029
|
-
var defaultLocaleMonths =
|
1030
|
-
'
|
1031
|
-
|
1032
|
-
|
1033
|
-
|
1034
|
-
|
1036
|
+
var defaultLocaleMonths =
|
1037
|
+
'January_February_March_April_May_June_July_August_September_October_November_December'.split(
|
1038
|
+
'_'
|
1039
|
+
),
|
1040
|
+
defaultLocaleMonthsShort =
|
1041
|
+
'Jan_Feb_Mar_Apr_May_Jun_Jul_Aug_Sep_Oct_Nov_Dec'.split('_'),
|
1035
1042
|
MONTHS_IN_FORMAT = /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?/,
|
1036
1043
|
defaultMonthsShortRegex = matchWord,
|
1037
1044
|
defaultMonthsRegex = matchWord;
|
@@ -1473,14 +1480,12 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1473
1480
|
addRegexToken('W', match1to2);
|
1474
1481
|
addRegexToken('WW', match1to2, match2);
|
1475
1482
|
|
1476
|
-
addWeekParseToken(
|
1477
|
-
|
1478
|
-
week,
|
1479
|
-
|
1480
|
-
|
1481
|
-
)
|
1482
|
-
week[token.substr(0, 1)] = toInt(input);
|
1483
|
-
});
|
1483
|
+
addWeekParseToken(
|
1484
|
+
['w', 'ww', 'W', 'WW'],
|
1485
|
+
function (input, week, config, token) {
|
1486
|
+
week[token.substr(0, 1)] = toInt(input);
|
1487
|
+
}
|
1488
|
+
);
|
1484
1489
|
|
1485
1490
|
// HELPERS
|
1486
1491
|
|
@@ -1605,9 +1610,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
1605
1610
|
return ws.slice(n, 7).concat(ws.slice(0, n));
|
1606
1611
|
}
|
1607
1612
|
|
1608
|
-
var defaultLocaleWeekdays =
|
1609
|
-
'_'
|
1610
|
-
),
|
1613
|
+
var defaultLocaleWeekdays =
|
1614
|
+
'Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday'.split('_'),
|
1611
1615
|
defaultLocaleWeekdaysShort = 'Sun_Mon_Tue_Wed_Thu_Fri_Sat'.split('_'),
|
1612
1616
|
defaultLocaleWeekdaysMin = 'Su_Mo_Tu_We_Th_Fr_Sa'.split('_'),
|
1613
1617
|
defaultWeekdaysRegex = matchWord,
|
@@ -2155,6 +2159,11 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2155
2159
|
return globalLocale;
|
2156
2160
|
}
|
2157
2161
|
|
2162
|
+
function isLocaleNameSane(name) {
|
2163
|
+
// Prevent names that look like filesystem paths, i.e contain '/' or '\'
|
2164
|
+
return name.match('^[^/\\\\]*$') != null;
|
2165
|
+
}
|
2166
|
+
|
2158
2167
|
function loadLocale(name) {
|
2159
2168
|
var oldLocale = null,
|
2160
2169
|
aliasedRequire;
|
@@ -2163,7 +2172,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2163
2172
|
locales[name] === undefined &&
|
2164
2173
|
typeof module !== 'undefined' &&
|
2165
2174
|
module &&
|
2166
|
-
module.exports
|
2175
|
+
module.exports &&
|
2176
|
+
isLocaleNameSane(name)
|
2167
2177
|
) {
|
2168
2178
|
try {
|
2169
2179
|
oldLocale = globalLocale._abbr;
|
@@ -2380,8 +2390,10 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2380
2390
|
|
2381
2391
|
// iso 8601 regex
|
2382
2392
|
// 0000-00-00 0000-W00 or 0000-W00-0 + T + 00 or 00:00 or 00:00:00 or 00:00:00.000 + +00:00 or +0000 or +00)
|
2383
|
-
var extendedIsoRegex =
|
2384
|
-
|
2393
|
+
var extendedIsoRegex =
|
2394
|
+
/^\s*((?:[+-]\d{6}|\d{4})-(?:\d\d-\d\d|W\d\d-\d|W\d\d|\d\d\d|\d\d))(?:(T| )(\d\d(?::\d\d(?::\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
2395
|
+
basicIsoRegex =
|
2396
|
+
/^\s*((?:[+-]\d{6}|\d{4})(?:\d\d\d\d|W\d\d\d|W\d\d|\d\d\d|\d\d|))(?:(T| )(\d\d(?:\d\d(?:\d\d(?:[.,]\d+)?)?)?)([+-]\d\d(?::?\d\d)?|\s*Z)?)?$/,
|
2385
2397
|
tzRegex = /Z|[+-]\d\d(?::?\d\d)?/,
|
2386
2398
|
isoDates = [
|
2387
2399
|
['YYYYYY-MM-DD', /[+-]\d{6}-\d\d-\d\d/],
|
@@ -2412,7 +2424,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2412
2424
|
],
|
2413
2425
|
aspNetJsonRegex = /^\/?Date\((-?\d+)/i,
|
2414
2426
|
// RFC 2822 regex: For details see https://tools.ietf.org/html/rfc2822#section-3.3
|
2415
|
-
rfc2822 =
|
2427
|
+
rfc2822 =
|
2428
|
+
/^(?:(Mon|Tue|Wed|Thu|Fri|Sat|Sun),?\s)?(\d{1,2})\s(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s(\d{2,4})\s(\d\d):(\d\d)(?::(\d\d))?\s(?:(UT|GMT|[ECMP][SD]T)|([Zz])|([+-]\d{4}))$/,
|
2416
2429
|
obsOffsets = {
|
2417
2430
|
UT: 0,
|
2418
2431
|
GMT: 0,
|
@@ -2435,12 +2448,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2435
2448
|
allowTime,
|
2436
2449
|
dateFormat,
|
2437
2450
|
timeFormat,
|
2438
|
-
tzFormat
|
2451
|
+
tzFormat,
|
2452
|
+
isoDatesLen = isoDates.length,
|
2453
|
+
isoTimesLen = isoTimes.length;
|
2439
2454
|
|
2440
2455
|
if (match) {
|
2441
2456
|
getParsingFlags(config).iso = true;
|
2442
|
-
|
2443
|
-
for (i = 0, l = isoDates.length; i < l; i++) {
|
2457
|
+
for (i = 0, l = isoDatesLen; i < l; i++) {
|
2444
2458
|
if (isoDates[i][1].exec(match[1])) {
|
2445
2459
|
dateFormat = isoDates[i][0];
|
2446
2460
|
allowTime = isoDates[i][2] !== false;
|
@@ -2452,7 +2466,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2452
2466
|
return;
|
2453
2467
|
}
|
2454
2468
|
if (match[3]) {
|
2455
|
-
for (i = 0, l =
|
2469
|
+
for (i = 0, l = isoTimesLen; i < l; i++) {
|
2456
2470
|
if (isoTimes[i][1].exec(match[3])) {
|
2457
2471
|
// match[2] should be 'T' or space
|
2458
2472
|
timeFormat = (match[2] || ' ') + isoTimes[i][0];
|
@@ -2832,12 +2846,13 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2832
2846
|
skipped,
|
2833
2847
|
stringLength = string.length,
|
2834
2848
|
totalParsedInputLength = 0,
|
2835
|
-
era
|
2849
|
+
era,
|
2850
|
+
tokenLen;
|
2836
2851
|
|
2837
2852
|
tokens =
|
2838
2853
|
expandFormat(config._f, config._locale).match(formattingTokens) || [];
|
2839
|
-
|
2840
|
-
for (i = 0; i <
|
2854
|
+
tokenLen = tokens.length;
|
2855
|
+
for (i = 0; i < tokenLen; i++) {
|
2841
2856
|
token = tokens[i];
|
2842
2857
|
parsedInput = (string.match(getParseRegexForToken(token, config)) ||
|
2843
2858
|
[])[0];
|
@@ -2932,15 +2947,16 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
2932
2947
|
i,
|
2933
2948
|
currentScore,
|
2934
2949
|
validFormatFound,
|
2935
|
-
bestFormatIsValid = false
|
2950
|
+
bestFormatIsValid = false,
|
2951
|
+
configfLen = config._f.length;
|
2936
2952
|
|
2937
|
-
if (
|
2953
|
+
if (configfLen === 0) {
|
2938
2954
|
getParsingFlags(config).invalidFormat = true;
|
2939
2955
|
config._d = new Date(NaN);
|
2940
2956
|
return;
|
2941
2957
|
}
|
2942
2958
|
|
2943
|
-
for (i = 0; i <
|
2959
|
+
for (i = 0; i < configfLen; i++) {
|
2944
2960
|
currentScore = 0;
|
2945
2961
|
validFormatFound = false;
|
2946
2962
|
tempConfig = copyConfig({}, config);
|
@@ -3181,7 +3197,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3181
3197
|
function isDurationValid(m) {
|
3182
3198
|
var key,
|
3183
3199
|
unitHasDecimal = false,
|
3184
|
-
i
|
3200
|
+
i,
|
3201
|
+
orderLen = ordering.length;
|
3185
3202
|
for (key in m) {
|
3186
3203
|
if (
|
3187
3204
|
hasOwnProp(m, key) &&
|
@@ -3194,7 +3211,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3194
3211
|
}
|
3195
3212
|
}
|
3196
3213
|
|
3197
|
-
for (i = 0; i <
|
3214
|
+
for (i = 0; i < orderLen; ++i) {
|
3198
3215
|
if (m[ordering[i]]) {
|
3199
3216
|
if (unitHasDecimal) {
|
3200
3217
|
return false; // only allow non-integers for smallest unit
|
@@ -3519,7 +3536,8 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3519
3536
|
// from http://docs.closure-library.googlecode.com/git/closure_goog_date_date.js.source.html
|
3520
3537
|
// somewhat more in line with 4.4.3.2 2004 spec, but allows decimal anywhere
|
3521
3538
|
// and further modified to allow for strings containing both week and day
|
3522
|
-
isoRegex =
|
3539
|
+
isoRegex =
|
3540
|
+
/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/;
|
3523
3541
|
|
3524
3542
|
function createDuration(input, key) {
|
3525
3543
|
var duration = input,
|
@@ -3740,9 +3758,10 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
3740
3758
|
'ms',
|
3741
3759
|
],
|
3742
3760
|
i,
|
3743
|
-
property
|
3761
|
+
property,
|
3762
|
+
propertyLen = properties.length;
|
3744
3763
|
|
3745
|
-
for (i = 0; i <
|
3764
|
+
for (i = 0; i < propertyLen; i += 1) {
|
3746
3765
|
property = properties[i];
|
3747
3766
|
propertyTest = propertyTest || hasOwnProp(input, property);
|
3748
3767
|
}
|
@@ -4365,19 +4384,17 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
4365
4384
|
addRegexToken('NNNN', matchEraName);
|
4366
4385
|
addRegexToken('NNNNN', matchEraNarrow);
|
4367
4386
|
|
4368
|
-
addParseToken(
|
4369
|
-
|
4370
|
-
array,
|
4371
|
-
|
4372
|
-
|
4373
|
-
|
4374
|
-
|
4375
|
-
|
4376
|
-
|
4377
|
-
} else {
|
4378
|
-
getParsingFlags(config).invalidEra = input;
|
4387
|
+
addParseToken(
|
4388
|
+
['N', 'NN', 'NNN', 'NNNN', 'NNNNN'],
|
4389
|
+
function (input, array, config, token) {
|
4390
|
+
var era = config._locale.erasParse(input, token, config._strict);
|
4391
|
+
if (era) {
|
4392
|
+
getParsingFlags(config).era = era;
|
4393
|
+
} else {
|
4394
|
+
getParsingFlags(config).invalidEra = input;
|
4395
|
+
}
|
4379
4396
|
}
|
4380
|
-
|
4397
|
+
);
|
4381
4398
|
|
4382
4399
|
addRegexToken('y', matchUnsigned);
|
4383
4400
|
addRegexToken('yy', matchUnsigned);
|
@@ -4669,14 +4686,12 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
4669
4686
|
addRegexToken('GGGGG', match1to6, match6);
|
4670
4687
|
addRegexToken('ggggg', match1to6, match6);
|
4671
4688
|
|
4672
|
-
addWeekParseToken(
|
4673
|
-
|
4674
|
-
week,
|
4675
|
-
|
4676
|
-
|
4677
|
-
)
|
4678
|
-
week[token.substr(0, 2)] = toInt(input);
|
4679
|
-
});
|
4689
|
+
addWeekParseToken(
|
4690
|
+
['gggg', 'ggggg', 'GGGG', 'GGGGG'],
|
4691
|
+
function (input, week, config, token) {
|
4692
|
+
week[token.substr(0, 2)] = toInt(input);
|
4693
|
+
}
|
4694
|
+
);
|
4680
4695
|
|
4681
4696
|
addWeekParseToken(['gg', 'GG'], function (input, week, config, token) {
|
4682
4697
|
week[token] = hooks.parseTwoDigitYear(input);
|
@@ -5699,7 +5714,7 @@ return /******/ (function(modules) { // webpackBootstrap
|
|
5699
5714
|
|
5700
5715
|
//! moment.js
|
5701
5716
|
|
5702
|
-
hooks.version = '2.29.
|
5717
|
+
hooks.version = '2.29.3';
|
5703
5718
|
|
5704
5719
|
setHookCallback(createLocal);
|
5705
5720
|
|
@@ -41192,9 +41207,10 @@ module.exports = __webpack_require__(348);
|
|
41192
41207
|
months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
41193
41208
|
'_'
|
41194
41209
|
),
|
41195
|
-
monthsShort:
|
41196
|
-
'_'
|
41197
|
-
|
41210
|
+
monthsShort:
|
41211
|
+
'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
41212
|
+
'_'
|
41213
|
+
),
|
41198
41214
|
weekdays: 'الأحد_الإتنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
41199
41215
|
weekdaysShort: 'احد_اتنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
|
41200
41216
|
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
@@ -41247,7 +41263,7 @@ module.exports = __webpack_require__(348);
|
|
41247
41263
|
/***/ (function(module, exports, __webpack_require__) {
|
41248
41264
|
|
41249
41265
|
//! moment.js locale configuration
|
41250
|
-
//! locale : Arabic (
|
41266
|
+
//! locale : Arabic (Libya) [ar-ly]
|
41251
41267
|
//! author : Ali Hmer: https://github.com/kikoanis
|
41252
41268
|
|
41253
41269
|
;(function (global, factory) {
|
@@ -41450,9 +41466,10 @@ module.exports = __webpack_require__(348);
|
|
41450
41466
|
months: 'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
41451
41467
|
'_'
|
41452
41468
|
),
|
41453
|
-
monthsShort:
|
41454
|
-
'_'
|
41455
|
-
|
41469
|
+
monthsShort:
|
41470
|
+
'يناير_فبراير_مارس_أبريل_ماي_يونيو_يوليوز_غشت_شتنبر_أكتوبر_نونبر_دجنبر'.split(
|
41471
|
+
'_'
|
41472
|
+
),
|
41456
41473
|
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
41457
41474
|
weekdaysShort: 'احد_اثنين_ثلاثاء_اربعاء_خميس_جمعة_سبت'.split('_'),
|
41458
41475
|
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
@@ -41545,9 +41562,10 @@ module.exports = __webpack_require__(348);
|
|
41545
41562
|
months: 'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
41546
41563
|
'_'
|
41547
41564
|
),
|
41548
|
-
monthsShort:
|
41549
|
-
'_'
|
41550
|
-
|
41565
|
+
monthsShort:
|
41566
|
+
'يناير_فبراير_مارس_أبريل_مايو_يونيو_يوليو_أغسطس_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
41567
|
+
'_'
|
41568
|
+
),
|
41551
41569
|
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
41552
41570
|
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
41553
41571
|
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
@@ -41640,9 +41658,10 @@ module.exports = __webpack_require__(348);
|
|
41640
41658
|
months: 'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
41641
41659
|
'_'
|
41642
41660
|
),
|
41643
|
-
monthsShort:
|
41644
|
-
'_'
|
41645
|
-
|
41661
|
+
monthsShort:
|
41662
|
+
'جانفي_فيفري_مارس_أفريل_ماي_جوان_جويلية_أوت_سبتمبر_أكتوبر_نوفمبر_ديسمبر'.split(
|
41663
|
+
'_'
|
41664
|
+
),
|
41646
41665
|
weekdays: 'الأحد_الإثنين_الثلاثاء_الأربعاء_الخميس_الجمعة_السبت'.split('_'),
|
41647
41666
|
weekdaysShort: 'أحد_إثنين_ثلاثاء_أربعاء_خميس_جمعة_سبت'.split('_'),
|
41648
41667
|
weekdaysMin: 'ح_ن_ث_ر_خ_ج_س'.split('_'),
|
@@ -41732,9 +41751,10 @@ module.exports = __webpack_require__(348);
|
|
41732
41751
|
'_'
|
41733
41752
|
),
|
41734
41753
|
monthsShort: 'yan_fev_mar_apr_may_iyn_iyl_avq_sen_okt_noy_dek'.split('_'),
|
41735
|
-
weekdays:
|
41736
|
-
'_'
|
41737
|
-
|
41754
|
+
weekdays:
|
41755
|
+
'Bazar_Bazar ertəsi_Çərşənbə axşamı_Çərşənbə_Cümə axşamı_Cümə_Şənbə'.split(
|
41756
|
+
'_'
|
41757
|
+
),
|
41738
41758
|
weekdaysShort: 'Baz_BzE_ÇAx_Çər_CAx_Cüm_Şən'.split('_'),
|
41739
41759
|
weekdaysMin: 'Bz_BE_ÇA_Çə_CA_Cü_Şə'.split('_'),
|
41740
41760
|
weekdaysParseExact: true,
|
@@ -41856,20 +41876,21 @@ module.exports = __webpack_require__(348);
|
|
41856
41876
|
format: 'студзеня_лютага_сакавіка_красавіка_траўня_чэрвеня_ліпеня_жніўня_верасня_кастрычніка_лістапада_снежня'.split(
|
41857
41877
|
'_'
|
41858
41878
|
),
|
41859
|
-
standalone:
|
41860
|
-
'_'
|
41861
|
-
|
41879
|
+
standalone:
|
41880
|
+
'студзень_люты_сакавік_красавік_травень_чэрвень_ліпень_жнівень_верасень_кастрычнік_лістапад_снежань'.split(
|
41881
|
+
'_'
|
41882
|
+
),
|
41862
41883
|
},
|
41863
|
-
monthsShort:
|
41864
|
-
'_'
|
41865
|
-
),
|
41884
|
+
monthsShort:
|
41885
|
+
'студ_лют_сак_крас_трав_чэрв_ліп_жнів_вер_каст_ліст_снеж'.split('_'),
|
41866
41886
|
weekdays: {
|
41867
41887
|
format: 'нядзелю_панядзелак_аўторак_сераду_чацвер_пятніцу_суботу'.split(
|
41868
41888
|
'_'
|
41869
41889
|
),
|
41870
|
-
standalone:
|
41871
|
-
'_'
|
41872
|
-
|
41890
|
+
standalone:
|
41891
|
+
'нядзеля_панядзелак_аўторак_серада_чацвер_пятніца_субота'.split(
|
41892
|
+
'_'
|
41893
|
+
),
|
41873
41894
|
isFormat: /\[ ?[Ууў] ?(?:мінулую|наступную)? ?\] ?dddd/,
|
41874
41895
|
},
|
41875
41896
|
weekdaysShort: 'нд_пн_ат_ср_чц_пт_сб'.split('_'),
|
@@ -42179,9 +42200,10 @@ module.exports = __webpack_require__(348);
|
|
42179
42200
|
months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
|
42180
42201
|
'_'
|
42181
42202
|
),
|
42182
|
-
monthsShort:
|
42183
|
-
'_'
|
42184
|
-
|
42203
|
+
monthsShort:
|
42204
|
+
'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
|
42205
|
+
'_'
|
42206
|
+
),
|
42185
42207
|
weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
|
42186
42208
|
'_'
|
42187
42209
|
),
|
@@ -42313,9 +42335,10 @@ module.exports = __webpack_require__(348);
|
|
42313
42335
|
months: 'জানুয়ারি_ফেব্রুয়ারি_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্টেম্বর_অক্টোবর_নভেম্বর_ডিসেম্বর'.split(
|
42314
42336
|
'_'
|
42315
42337
|
),
|
42316
|
-
monthsShort:
|
42317
|
-
'_'
|
42318
|
-
|
42338
|
+
monthsShort:
|
42339
|
+
'জানু_ফেব্রু_মার্চ_এপ্রিল_মে_জুন_জুলাই_আগস্ট_সেপ্ট_অক্টো_নভে_ডিসে'.split(
|
42340
|
+
'_'
|
42341
|
+
),
|
42319
42342
|
weekdays: 'রবিবার_সোমবার_মঙ্গলবার_বুধবার_বৃহস্পতিবার_শুক্রবার_শনিবার'.split(
|
42320
42343
|
'_'
|
42321
42344
|
),
|
@@ -42457,14 +42480,16 @@ module.exports = __webpack_require__(348);
|
|
42457
42480
|
months: 'ཟླ་བ་དང་པོ_ཟླ་བ་གཉིས་པ_ཟླ་བ་གསུམ་པ_ཟླ་བ་བཞི་པ_ཟླ་བ་ལྔ་པ_ཟླ་བ་དྲུག་པ_ཟླ་བ་བདུན་པ_ཟླ་བ་བརྒྱད་པ_ཟླ་བ་དགུ་པ_ཟླ་བ་བཅུ་པ_ཟླ་བ་བཅུ་གཅིག་པ_ཟླ་བ་བཅུ་གཉིས་པ'.split(
|
42458
42481
|
'_'
|
42459
42482
|
),
|
42460
|
-
monthsShort:
|
42461
|
-
'
|
42462
|
-
|
42483
|
+
monthsShort:
|
42484
|
+
'ཟླ་1_ཟླ་2_ཟླ་3_ཟླ་4_ཟླ་5_ཟླ་6_ཟླ་7_ཟླ་8_ཟླ་9_ཟླ་10_ཟླ་11_ཟླ་12'.split(
|
42485
|
+
'_'
|
42486
|
+
),
|
42463
42487
|
monthsShortRegex: /^(ཟླ་\d{1,2})/,
|
42464
42488
|
monthsParseExact: true,
|
42465
|
-
weekdays:
|
42466
|
-
'_'
|
42467
|
-
|
42489
|
+
weekdays:
|
42490
|
+
'གཟའ་ཉི་མ་_གཟའ་ཟླ་བ་_གཟའ་མིག་དམར་_གཟའ་ལྷག་པ་_གཟའ་ཕུར་བུ_གཟའ་པ་སངས་_གཟའ་སྤེན་པ་'.split(
|
42491
|
+
'_'
|
42492
|
+
),
|
42468
42493
|
weekdaysShort: 'ཉི་མ་_ཟླ་བ་_མིག་དམར་_ལྷག་པ་_ཕུར་བུ_པ་སངས་_སྤེན་པ་'.split(
|
42469
42494
|
'_'
|
42470
42495
|
),
|
@@ -42624,9 +42649,12 @@ module.exports = __webpack_require__(348);
|
|
42624
42649
|
/^du/i,
|
42625
42650
|
/^ker/i,
|
42626
42651
|
],
|
42627
|
-
monthsRegex =
|
42628
|
-
|
42629
|
-
|
42652
|
+
monthsRegex =
|
42653
|
+
/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu|gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
|
42654
|
+
monthsStrictRegex =
|
42655
|
+
/^(genver|c[ʼ\']hwevrer|meurzh|ebrel|mae|mezheven|gouere|eost|gwengolo|here|du|kerzu)/i,
|
42656
|
+
monthsShortStrictRegex =
|
42657
|
+
/^(gen|c[ʼ\']hwe|meu|ebr|mae|eve|gou|eos|gwe|her|du|ker)/i,
|
42630
42658
|
fullWeekdaysParse = [
|
42631
42659
|
/^sul/i,
|
42632
42660
|
/^lun/i,
|
@@ -42814,9 +42842,10 @@ module.exports = __webpack_require__(348);
|
|
42814
42842
|
months: 'januar_februar_mart_april_maj_juni_juli_august_septembar_oktobar_novembar_decembar'.split(
|
42815
42843
|
'_'
|
42816
42844
|
),
|
42817
|
-
monthsShort:
|
42818
|
-
'
|
42819
|
-
|
42845
|
+
monthsShort:
|
42846
|
+
'jan._feb._mar._apr._maj._jun._jul._aug._sep._okt._nov._dec.'.split(
|
42847
|
+
'_'
|
42848
|
+
),
|
42820
42849
|
monthsParseExact: true,
|
42821
42850
|
weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
|
42822
42851
|
'_'
|
@@ -42914,21 +42943,24 @@ module.exports = __webpack_require__(348);
|
|
42914
42943
|
|
42915
42944
|
var ca = moment.defineLocale('ca', {
|
42916
42945
|
months: {
|
42917
|
-
standalone:
|
42918
|
-
'
|
42919
|
-
|
42946
|
+
standalone:
|
42947
|
+
'gener_febrer_març_abril_maig_juny_juliol_agost_setembre_octubre_novembre_desembre'.split(
|
42948
|
+
'_'
|
42949
|
+
),
|
42920
42950
|
format: "de gener_de febrer_de març_d'abril_de maig_de juny_de juliol_d'agost_de setembre_d'octubre_de novembre_de desembre".split(
|
42921
42951
|
'_'
|
42922
42952
|
),
|
42923
42953
|
isFormat: /D[oD]?(\s)+MMMM/,
|
42924
42954
|
},
|
42925
|
-
monthsShort:
|
42926
|
-
'
|
42927
|
-
|
42955
|
+
monthsShort:
|
42956
|
+
'gen._febr._març_abr._maig_juny_jul._ag._set._oct._nov._des.'.split(
|
42957
|
+
'_'
|
42958
|
+
),
|
42928
42959
|
monthsParseExact: true,
|
42929
|
-
weekdays:
|
42930
|
-
'
|
42931
|
-
|
42960
|
+
weekdays:
|
42961
|
+
'diumenge_dilluns_dimarts_dimecres_dijous_divendres_dissabte'.split(
|
42962
|
+
'_'
|
42963
|
+
),
|
42932
42964
|
weekdaysShort: 'dg._dl._dt._dc._dj._dv._ds.'.split('_'),
|
42933
42965
|
weekdaysMin: 'dg_dl_dt_dc_dj_dv_ds'.split('_'),
|
42934
42966
|
weekdaysParseExact: true,
|
@@ -43025,9 +43057,15 @@ module.exports = __webpack_require__(348);
|
|
43025
43057
|
|
43026
43058
|
//! moment.js locale configuration
|
43027
43059
|
|
43028
|
-
var months =
|
43029
|
-
'_'
|
43030
|
-
|
43060
|
+
var months = {
|
43061
|
+
format: 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec'.split(
|
43062
|
+
'_'
|
43063
|
+
),
|
43064
|
+
standalone:
|
43065
|
+
'ledna_února_března_dubna_května_června_července_srpna_září_října_listopadu_prosince'.split(
|
43066
|
+
'_'
|
43067
|
+
),
|
43068
|
+
},
|
43031
43069
|
monthsShort = 'led_úno_bře_dub_kvě_čvn_čvc_srp_zář_říj_lis_pro'.split('_'),
|
43032
43070
|
monthsParse = [
|
43033
43071
|
/^led/i,
|
@@ -43045,7 +43083,8 @@ module.exports = __webpack_require__(348);
|
|
43045
43083
|
],
|
43046
43084
|
// NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
|
43047
43085
|
// Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
|
43048
|
-
monthsRegex =
|
43086
|
+
monthsRegex =
|
43087
|
+
/^(leden|únor|březen|duben|květen|červenec|července|červen|června|srpen|září|říjen|listopad|prosinec|led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i;
|
43049
43088
|
|
43050
43089
|
function plural(n) {
|
43051
43090
|
return n > 1 && n < 5 && ~~(n / 10) !== 1;
|
@@ -43111,8 +43150,10 @@ module.exports = __webpack_require__(348);
|
|
43111
43150
|
monthsShortRegex: monthsRegex,
|
43112
43151
|
// NOTE: 'červen' is substring of 'červenec'; therefore 'červenec' must precede 'červen' in the regex to be fully matched.
|
43113
43152
|
// Otherwise parser matches '1. červenec' as '1. červen' + 'ec'.
|
43114
|
-
monthsStrictRegex:
|
43115
|
-
|
43153
|
+
monthsStrictRegex:
|
43154
|
+
/^(leden|ledna|února|únor|březen|března|duben|dubna|květen|května|červenec|července|červen|června|srpen|srpna|září|říjen|října|listopadu|listopad|prosinec|prosince)/i,
|
43155
|
+
monthsShortStrictRegex:
|
43156
|
+
/^(led|úno|bře|dub|kvě|čvn|čvc|srp|zář|říj|lis|pro)/i,
|
43116
43157
|
monthsParse: monthsParse,
|
43117
43158
|
longMonthsParse: monthsParse,
|
43118
43159
|
shortMonthsParse: monthsParse,
|
@@ -43217,9 +43258,10 @@ module.exports = __webpack_require__(348);
|
|
43217
43258
|
'_'
|
43218
43259
|
),
|
43219
43260
|
monthsShort: 'кӑр_нар_пуш_ака_май_ҫӗр_утӑ_ҫур_авн_юпа_чӳк_раш'.split('_'),
|
43220
|
-
weekdays:
|
43221
|
-
'_'
|
43222
|
-
|
43261
|
+
weekdays:
|
43262
|
+
'вырсарникун_тунтикун_ытларикун_юнкун_кӗҫнерникун_эрнекун_шӑматкун'.split(
|
43263
|
+
'_'
|
43264
|
+
),
|
43223
43265
|
weekdaysShort: 'выр_тун_ытл_юн_кӗҫ_эрн_шӑм'.split('_'),
|
43224
43266
|
weekdaysMin: 'вр_тн_ыт_юн_кҫ_эр_шм'.split('_'),
|
43225
43267
|
longDateFormat: {
|
@@ -43298,9 +43340,10 @@ module.exports = __webpack_require__(348);
|
|
43298
43340
|
monthsShort: 'Ion_Chwe_Maw_Ebr_Mai_Meh_Gor_Aws_Med_Hyd_Tach_Rhag'.split(
|
43299
43341
|
'_'
|
43300
43342
|
),
|
43301
|
-
weekdays:
|
43302
|
-
'
|
43303
|
-
|
43343
|
+
weekdays:
|
43344
|
+
'Dydd Sul_Dydd Llun_Dydd Mawrth_Dydd Mercher_Dydd Iau_Dydd Gwener_Dydd Sadwrn'.split(
|
43345
|
+
'_'
|
43346
|
+
),
|
43304
43347
|
weekdaysShort: 'Sul_Llun_Maw_Mer_Iau_Gwe_Sad'.split('_'),
|
43305
43348
|
weekdaysMin: 'Su_Ll_Ma_Me_Ia_Gw_Sa'.split('_'),
|
43306
43349
|
weekdaysParseExact: true,
|
@@ -43493,13 +43536,13 @@ module.exports = __webpack_require__(348);
|
|
43493
43536
|
months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
43494
43537
|
'_'
|
43495
43538
|
),
|
43496
|
-
monthsShort:
|
43497
|
-
'_'
|
43498
|
-
),
|
43539
|
+
monthsShort:
|
43540
|
+
'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
|
43499
43541
|
monthsParseExact: true,
|
43500
|
-
weekdays:
|
43501
|
-
'
|
43502
|
-
|
43542
|
+
weekdays:
|
43543
|
+
'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
|
43544
|
+
'_'
|
43545
|
+
),
|
43503
43546
|
weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
|
43504
43547
|
weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
43505
43548
|
weekdaysParseExact: true,
|
@@ -43588,13 +43631,13 @@ module.exports = __webpack_require__(348);
|
|
43588
43631
|
months: 'Jänner_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
43589
43632
|
'_'
|
43590
43633
|
),
|
43591
|
-
monthsShort:
|
43592
|
-
'_'
|
43593
|
-
),
|
43634
|
+
monthsShort:
|
43635
|
+
'Jän._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
|
43594
43636
|
monthsParseExact: true,
|
43595
|
-
weekdays:
|
43596
|
-
'
|
43597
|
-
|
43637
|
+
weekdays:
|
43638
|
+
'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
|
43639
|
+
'_'
|
43640
|
+
),
|
43598
43641
|
weekdaysShort: 'So._Mo._Di._Mi._Do._Fr._Sa.'.split('_'),
|
43599
43642
|
weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
43600
43643
|
weekdaysParseExact: true,
|
@@ -43680,13 +43723,13 @@ module.exports = __webpack_require__(348);
|
|
43680
43723
|
months: 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
43681
43724
|
'_'
|
43682
43725
|
),
|
43683
|
-
monthsShort:
|
43684
|
-
'_'
|
43685
|
-
),
|
43726
|
+
monthsShort:
|
43727
|
+
'Jan._Feb._März_Apr._Mai_Juni_Juli_Aug._Sep._Okt._Nov._Dez.'.split('_'),
|
43686
43728
|
monthsParseExact: true,
|
43687
|
-
weekdays:
|
43688
|
-
'
|
43689
|
-
|
43729
|
+
weekdays:
|
43730
|
+
'Sonntag_Montag_Dienstag_Mittwoch_Donnerstag_Freitag_Samstag'.split(
|
43731
|
+
'_'
|
43732
|
+
),
|
43690
43733
|
weekdaysShort: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
43691
43734
|
weekdaysMin: 'So_Mo_Di_Mi_Do_Fr_Sa'.split('_'),
|
43692
43735
|
weekdaysParseExact: true,
|
@@ -43867,12 +43910,14 @@ module.exports = __webpack_require__(348);
|
|
43867
43910
|
}
|
43868
43911
|
|
43869
43912
|
var el = moment.defineLocale('el', {
|
43870
|
-
monthsNominativeEl:
|
43871
|
-
'_'
|
43872
|
-
|
43873
|
-
|
43874
|
-
|
43875
|
-
|
43913
|
+
monthsNominativeEl:
|
43914
|
+
'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος'.split(
|
43915
|
+
'_'
|
43916
|
+
),
|
43917
|
+
monthsGenitiveEl:
|
43918
|
+
'Ιανουαρίου_Φεβρουαρίου_Μαρτίου_Απριλίου_Μαΐου_Ιουνίου_Ιουλίου_Αυγούστου_Σεπτεμβρίου_Οκτωβρίου_Νοεμβρίου_Δεκεμβρίου'.split(
|
43919
|
+
'_'
|
43920
|
+
),
|
43876
43921
|
months: function (momentToFormat, format) {
|
43877
43922
|
if (!momentToFormat) {
|
43878
43923
|
return this._monthsNominativeEl;
|
@@ -44727,9 +44772,10 @@ module.exports = __webpack_require__(348);
|
|
44727
44772
|
|
44728
44773
|
//! moment.js locale configuration
|
44729
44774
|
|
44730
|
-
var monthsShortDot =
|
44731
|
-
'
|
44732
|
-
|
44775
|
+
var monthsShortDot =
|
44776
|
+
'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
|
44777
|
+
'_'
|
44778
|
+
),
|
44733
44779
|
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
|
44734
44780
|
monthsParse = [
|
44735
44781
|
/^ene/i,
|
@@ -44745,7 +44791,8 @@ module.exports = __webpack_require__(348);
|
|
44745
44791
|
/^nov/i,
|
44746
44792
|
/^dic/i,
|
44747
44793
|
],
|
44748
|
-
monthsRegex =
|
44794
|
+
monthsRegex =
|
44795
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
|
44749
44796
|
|
44750
44797
|
var es = moment.defineLocale('es', {
|
44751
44798
|
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
|
@@ -44762,8 +44809,10 @@ module.exports = __webpack_require__(348);
|
|
44762
44809
|
},
|
44763
44810
|
monthsRegex: monthsRegex,
|
44764
44811
|
monthsShortRegex: monthsRegex,
|
44765
|
-
monthsStrictRegex:
|
44766
|
-
|
44812
|
+
monthsStrictRegex:
|
44813
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
44814
|
+
monthsShortStrictRegex:
|
44815
|
+
/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
44767
44816
|
monthsParse: monthsParse,
|
44768
44817
|
longMonthsParse: monthsParse,
|
44769
44818
|
shortMonthsParse: monthsParse,
|
@@ -44848,9 +44897,10 @@ module.exports = __webpack_require__(348);
|
|
44848
44897
|
|
44849
44898
|
//! moment.js locale configuration
|
44850
44899
|
|
44851
|
-
var monthsShortDot =
|
44852
|
-
'
|
44853
|
-
|
44900
|
+
var monthsShortDot =
|
44901
|
+
'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
|
44902
|
+
'_'
|
44903
|
+
),
|
44854
44904
|
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
|
44855
44905
|
monthsParse = [
|
44856
44906
|
/^ene/i,
|
@@ -44866,7 +44916,8 @@ module.exports = __webpack_require__(348);
|
|
44866
44916
|
/^nov/i,
|
44867
44917
|
/^dic/i,
|
44868
44918
|
],
|
44869
|
-
monthsRegex =
|
44919
|
+
monthsRegex =
|
44920
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
|
44870
44921
|
|
44871
44922
|
var esDo = moment.defineLocale('es-do', {
|
44872
44923
|
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
|
@@ -44883,8 +44934,10 @@ module.exports = __webpack_require__(348);
|
|
44883
44934
|
},
|
44884
44935
|
monthsRegex: monthsRegex,
|
44885
44936
|
monthsShortRegex: monthsRegex,
|
44886
|
-
monthsStrictRegex:
|
44887
|
-
|
44937
|
+
monthsStrictRegex:
|
44938
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
44939
|
+
monthsShortStrictRegex:
|
44940
|
+
/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
44888
44941
|
monthsParse: monthsParse,
|
44889
44942
|
longMonthsParse: monthsParse,
|
44890
44943
|
shortMonthsParse: monthsParse,
|
@@ -44969,9 +45022,10 @@ module.exports = __webpack_require__(348);
|
|
44969
45022
|
|
44970
45023
|
//! moment.js locale configuration
|
44971
45024
|
|
44972
|
-
var monthsShortDot =
|
44973
|
-
'
|
44974
|
-
|
45025
|
+
var monthsShortDot =
|
45026
|
+
'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
|
45027
|
+
'_'
|
45028
|
+
),
|
44975
45029
|
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
|
44976
45030
|
monthsParse = [
|
44977
45031
|
/^ene/i,
|
@@ -44987,7 +45041,8 @@ module.exports = __webpack_require__(348);
|
|
44987
45041
|
/^nov/i,
|
44988
45042
|
/^dic/i,
|
44989
45043
|
],
|
44990
|
-
monthsRegex =
|
45044
|
+
monthsRegex =
|
45045
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
|
44991
45046
|
|
44992
45047
|
var esMx = moment.defineLocale('es-mx', {
|
44993
45048
|
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
|
@@ -45004,8 +45059,10 @@ module.exports = __webpack_require__(348);
|
|
45004
45059
|
},
|
45005
45060
|
monthsRegex: monthsRegex,
|
45006
45061
|
monthsShortRegex: monthsRegex,
|
45007
|
-
monthsStrictRegex:
|
45008
|
-
|
45062
|
+
monthsStrictRegex:
|
45063
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
45064
|
+
monthsShortStrictRegex:
|
45065
|
+
/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
45009
45066
|
monthsParse: monthsParse,
|
45010
45067
|
longMonthsParse: monthsParse,
|
45011
45068
|
shortMonthsParse: monthsParse,
|
@@ -45092,9 +45149,10 @@ module.exports = __webpack_require__(348);
|
|
45092
45149
|
|
45093
45150
|
//! moment.js locale configuration
|
45094
45151
|
|
45095
|
-
var monthsShortDot =
|
45096
|
-
'
|
45097
|
-
|
45152
|
+
var monthsShortDot =
|
45153
|
+
'ene._feb._mar._abr._may._jun._jul._ago._sep._oct._nov._dic.'.split(
|
45154
|
+
'_'
|
45155
|
+
),
|
45098
45156
|
monthsShort = 'ene_feb_mar_abr_may_jun_jul_ago_sep_oct_nov_dic'.split('_'),
|
45099
45157
|
monthsParse = [
|
45100
45158
|
/^ene/i,
|
@@ -45110,7 +45168,8 @@ module.exports = __webpack_require__(348);
|
|
45110
45168
|
/^nov/i,
|
45111
45169
|
/^dic/i,
|
45112
45170
|
],
|
45113
|
-
monthsRegex =
|
45171
|
+
monthsRegex =
|
45172
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre|ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i;
|
45114
45173
|
|
45115
45174
|
var esUs = moment.defineLocale('es-us', {
|
45116
45175
|
months: 'enero_febrero_marzo_abril_mayo_junio_julio_agosto_septiembre_octubre_noviembre_diciembre'.split(
|
@@ -45127,8 +45186,10 @@ module.exports = __webpack_require__(348);
|
|
45127
45186
|
},
|
45128
45187
|
monthsRegex: monthsRegex,
|
45129
45188
|
monthsShortRegex: monthsRegex,
|
45130
|
-
monthsStrictRegex:
|
45131
|
-
|
45189
|
+
monthsStrictRegex:
|
45190
|
+
/^(enero|febrero|marzo|abril|mayo|junio|julio|agosto|septiembre|octubre|noviembre|diciembre)/i,
|
45191
|
+
monthsShortStrictRegex:
|
45192
|
+
/^(ene\.?|feb\.?|mar\.?|abr\.?|may\.?|jun\.?|jul\.?|ago\.?|sep\.?|oct\.?|nov\.?|dic\.?)/i,
|
45132
45193
|
monthsParse: monthsParse,
|
45133
45194
|
longMonthsParse: monthsParse,
|
45134
45195
|
shortMonthsParse: monthsParse,
|
@@ -45238,12 +45299,12 @@ module.exports = __webpack_require__(348);
|
|
45238
45299
|
months: 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember'.split(
|
45239
45300
|
'_'
|
45240
45301
|
),
|
45241
|
-
monthsShort:
|
45242
|
-
'_'
|
45243
|
-
|
45244
|
-
|
45245
|
-
|
45246
|
-
|
45302
|
+
monthsShort:
|
45303
|
+
'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets'.split('_'),
|
45304
|
+
weekdays:
|
45305
|
+
'pühapäev_esmaspäev_teisipäev_kolmapäev_neljapäev_reede_laupäev'.split(
|
45306
|
+
'_'
|
45307
|
+
),
|
45247
45308
|
weekdaysShort: 'P_E_T_K_N_R_L'.split('_'),
|
45248
45309
|
weekdaysMin: 'P_E_T_K_N_R_L'.split('_'),
|
45249
45310
|
longDateFormat: {
|
@@ -45311,13 +45372,15 @@ module.exports = __webpack_require__(348);
|
|
45311
45372
|
months: 'urtarrila_otsaila_martxoa_apirila_maiatza_ekaina_uztaila_abuztua_iraila_urria_azaroa_abendua'.split(
|
45312
45373
|
'_'
|
45313
45374
|
),
|
45314
|
-
monthsShort:
|
45315
|
-
'
|
45316
|
-
|
45375
|
+
monthsShort:
|
45376
|
+
'urt._ots._mar._api._mai._eka._uzt._abu._ira._urr._aza._abe.'.split(
|
45377
|
+
'_'
|
45378
|
+
),
|
45317
45379
|
monthsParseExact: true,
|
45318
|
-
weekdays:
|
45319
|
-
'
|
45320
|
-
|
45380
|
+
weekdays:
|
45381
|
+
'igandea_astelehena_asteartea_asteazkena_osteguna_ostirala_larunbata'.split(
|
45382
|
+
'_'
|
45383
|
+
),
|
45321
45384
|
weekdaysShort: 'ig._al._ar._az._og._ol._lr.'.split('_'),
|
45322
45385
|
weekdaysMin: 'ig_al_ar_az_og_ol_lr'.split('_'),
|
45323
45386
|
weekdaysParseExact: true,
|
@@ -45415,15 +45478,18 @@ module.exports = __webpack_require__(348);
|
|
45415
45478
|
months: 'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
|
45416
45479
|
'_'
|
45417
45480
|
),
|
45418
|
-
monthsShort:
|
45419
|
-
'_'
|
45420
|
-
|
45421
|
-
|
45422
|
-
|
45423
|
-
|
45424
|
-
|
45425
|
-
|
45426
|
-
|
45481
|
+
monthsShort:
|
45482
|
+
'ژانویه_فوریه_مارس_آوریل_مه_ژوئن_ژوئیه_اوت_سپتامبر_اکتبر_نوامبر_دسامبر'.split(
|
45483
|
+
'_'
|
45484
|
+
),
|
45485
|
+
weekdays:
|
45486
|
+
'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
|
45487
|
+
'_'
|
45488
|
+
),
|
45489
|
+
weekdaysShort:
|
45490
|
+
'یک\u200cشنبه_دوشنبه_سه\u200cشنبه_چهارشنبه_پنج\u200cشنبه_جمعه_شنبه'.split(
|
45491
|
+
'_'
|
45492
|
+
),
|
45427
45493
|
weekdaysMin: 'ی_د_س_چ_پ_ج_ش'.split('_'),
|
45428
45494
|
weekdaysParseExact: true,
|
45429
45495
|
longDateFormat: {
|
@@ -45512,9 +45578,10 @@ module.exports = __webpack_require__(348);
|
|
45512
45578
|
|
45513
45579
|
//! moment.js locale configuration
|
45514
45580
|
|
45515
|
-
var numbersPast =
|
45516
|
-
' '
|
45517
|
-
|
45581
|
+
var numbersPast =
|
45582
|
+
'nolla yksi kaksi kolme neljä viisi kuusi seitsemän kahdeksan yhdeksän'.split(
|
45583
|
+
' '
|
45584
|
+
),
|
45518
45585
|
numbersFuture = [
|
45519
45586
|
'nolla',
|
45520
45587
|
'yhden',
|
@@ -45576,12 +45643,14 @@ module.exports = __webpack_require__(348);
|
|
45576
45643
|
months: 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu'.split(
|
45577
45644
|
'_'
|
45578
45645
|
),
|
45579
|
-
monthsShort:
|
45580
|
-
'
|
45581
|
-
|
45582
|
-
|
45583
|
-
|
45584
|
-
|
45646
|
+
monthsShort:
|
45647
|
+
'tammi_helmi_maalis_huhti_touko_kesä_heinä_elo_syys_loka_marras_joulu'.split(
|
45648
|
+
'_'
|
45649
|
+
),
|
45650
|
+
weekdays:
|
45651
|
+
'sunnuntai_maanantai_tiistai_keskiviikko_torstai_perjantai_lauantai'.split(
|
45652
|
+
'_'
|
45653
|
+
),
|
45585
45654
|
weekdaysShort: 'su_ma_ti_ke_to_pe_la'.split('_'),
|
45586
45655
|
weekdaysMin: 'su_ma_ti_ke_to_pe_la'.split('_'),
|
45587
45656
|
longDateFormat: {
|
@@ -45729,9 +45798,10 @@ module.exports = __webpack_require__(348);
|
|
45729
45798
|
'_'
|
45730
45799
|
),
|
45731
45800
|
monthsShort: 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_'),
|
45732
|
-
weekdays:
|
45733
|
-
'
|
45734
|
-
|
45801
|
+
weekdays:
|
45802
|
+
'sunnudagur_mánadagur_týsdagur_mikudagur_hósdagur_fríggjadagur_leygardagur'.split(
|
45803
|
+
'_'
|
45804
|
+
),
|
45735
45805
|
weekdaysShort: 'sun_mán_týs_mik_hós_frí_ley'.split('_'),
|
45736
45806
|
weekdaysMin: 'su_má_tý_mi_hó_fr_le'.split('_'),
|
45737
45807
|
longDateFormat: {
|
@@ -45795,9 +45865,12 @@ module.exports = __webpack_require__(348);
|
|
45795
45865
|
|
45796
45866
|
//! moment.js locale configuration
|
45797
45867
|
|
45798
|
-
var monthsStrictRegex =
|
45799
|
-
|
45800
|
-
|
45868
|
+
var monthsStrictRegex =
|
45869
|
+
/^(janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
|
45870
|
+
monthsShortStrictRegex =
|
45871
|
+
/(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?)/i,
|
45872
|
+
monthsRegex =
|
45873
|
+
/(janv\.?|févr\.?|mars|avr\.?|mai|juin|juil\.?|août|sept\.?|oct\.?|nov\.?|déc\.?|janvier|février|mars|avril|mai|juin|juillet|août|septembre|octobre|novembre|décembre)/i,
|
45801
45874
|
monthsParse = [
|
45802
45875
|
/^janv/i,
|
45803
45876
|
/^févr/i,
|
@@ -45817,9 +45890,10 @@ module.exports = __webpack_require__(348);
|
|
45817
45890
|
months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
|
45818
45891
|
'_'
|
45819
45892
|
),
|
45820
|
-
monthsShort:
|
45821
|
-
'
|
45822
|
-
|
45893
|
+
monthsShort:
|
45894
|
+
'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
|
45895
|
+
'_'
|
45896
|
+
),
|
45823
45897
|
monthsRegex: monthsRegex,
|
45824
45898
|
monthsShortRegex: monthsRegex,
|
45825
45899
|
monthsStrictRegex: monthsStrictRegex,
|
@@ -45919,9 +45993,10 @@ module.exports = __webpack_require__(348);
|
|
45919
45993
|
months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
|
45920
45994
|
'_'
|
45921
45995
|
),
|
45922
|
-
monthsShort:
|
45923
|
-
'
|
45924
|
-
|
45996
|
+
monthsShort:
|
45997
|
+
'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
|
45998
|
+
'_'
|
45999
|
+
),
|
45925
46000
|
monthsParseExact: true,
|
45926
46001
|
weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
|
45927
46002
|
weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
|
@@ -46004,9 +46079,10 @@ module.exports = __webpack_require__(348);
|
|
46004
46079
|
months: 'janvier_février_mars_avril_mai_juin_juillet_août_septembre_octobre_novembre_décembre'.split(
|
46005
46080
|
'_'
|
46006
46081
|
),
|
46007
|
-
monthsShort:
|
46008
|
-
'
|
46009
|
-
|
46082
|
+
monthsShort:
|
46083
|
+
'janv._févr._mars_avr._mai_juin_juil._août_sept._oct._nov._déc.'.split(
|
46084
|
+
'_'
|
46085
|
+
),
|
46010
46086
|
monthsParseExact: true,
|
46011
46087
|
weekdays: 'dimanche_lundi_mardi_mercredi_jeudi_vendredi_samedi'.split('_'),
|
46012
46088
|
weekdaysShort: 'dim._lun._mar._mer._jeu._ven._sam.'.split('_'),
|
@@ -46089,12 +46165,10 @@ module.exports = __webpack_require__(348);
|
|
46089
46165
|
|
46090
46166
|
//! moment.js locale configuration
|
46091
46167
|
|
46092
|
-
var monthsShortWithDots =
|
46093
|
-
'_'
|
46094
|
-
|
46095
|
-
|
46096
|
-
'_'
|
46097
|
-
);
|
46168
|
+
var monthsShortWithDots =
|
46169
|
+
'jan._feb._mrt._apr._mai_jun._jul._aug._sep._okt._nov._des.'.split('_'),
|
46170
|
+
monthsShortWithoutDots =
|
46171
|
+
'jan_feb_mrt_apr_mai_jun_jul_aug_sep_okt_nov_des'.split('_');
|
46098
46172
|
|
46099
46173
|
var fy = moment.defineLocale('fy', {
|
46100
46174
|
months: 'jannewaris_febrewaris_maart_april_maaie_juny_july_augustus_septimber_oktober_novimber_desimber'.split(
|
@@ -46408,9 +46482,10 @@ module.exports = __webpack_require__(348);
|
|
46408
46482
|
months: 'xaneiro_febreiro_marzo_abril_maio_xuño_xullo_agosto_setembro_outubro_novembro_decembro'.split(
|
46409
46483
|
'_'
|
46410
46484
|
),
|
46411
|
-
monthsShort:
|
46412
|
-
'
|
46413
|
-
|
46485
|
+
monthsShort:
|
46486
|
+
'xan._feb._mar._abr._mai._xuñ._xul._ago._set._out._nov._dec.'.split(
|
46487
|
+
'_'
|
46488
|
+
),
|
46414
46489
|
monthsParseExact: true,
|
46415
46490
|
weekdays: 'domingo_luns_martes_mércores_xoves_venres_sábado'.split('_'),
|
46416
46491
|
weekdaysShort: 'dom._lun._mar._mér._xov._ven._sáb.'.split('_'),
|
@@ -46514,17 +46589,19 @@ module.exports = __webpack_require__(348);
|
|
46514
46589
|
|
46515
46590
|
var gomDeva = moment.defineLocale('gom-deva', {
|
46516
46591
|
months: {
|
46517
|
-
standalone:
|
46518
|
-
'_'
|
46519
|
-
|
46592
|
+
standalone:
|
46593
|
+
'जानेवारी_फेब्रुवारी_मार्च_एप्रील_मे_जून_जुलय_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
|
46594
|
+
'_'
|
46595
|
+
),
|
46520
46596
|
format: 'जानेवारीच्या_फेब्रुवारीच्या_मार्चाच्या_एप्रीलाच्या_मेयाच्या_जूनाच्या_जुलयाच्या_ऑगस्टाच्या_सप्टेंबराच्या_ऑक्टोबराच्या_नोव्हेंबराच्या_डिसेंबराच्या'.split(
|
46521
46597
|
'_'
|
46522
46598
|
),
|
46523
46599
|
isFormat: /MMMM(\s)+D[oD]?/,
|
46524
46600
|
},
|
46525
|
-
monthsShort:
|
46526
|
-
'_'
|
46527
|
-
|
46601
|
+
monthsShort:
|
46602
|
+
'जाने._फेब्रु._मार्च_एप्री._मे_जून_जुल._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
|
46603
|
+
'_'
|
46604
|
+
),
|
46528
46605
|
monthsParseExact: true,
|
46529
46606
|
weekdays: 'आयतार_सोमार_मंगळार_बुधवार_बिरेस्तार_सुक्रार_शेनवार'.split('_'),
|
46530
46607
|
weekdaysShort: 'आयत._सोम._मंगळ._बुध._ब्रेस्त._सुक्र._शेन.'.split('_'),
|
@@ -46654,17 +46731,17 @@ module.exports = __webpack_require__(348);
|
|
46654
46731
|
|
46655
46732
|
var gomLatn = moment.defineLocale('gom-latn', {
|
46656
46733
|
months: {
|
46657
|
-
standalone:
|
46658
|
-
'
|
46659
|
-
|
46734
|
+
standalone:
|
46735
|
+
'Janer_Febrer_Mars_Abril_Mai_Jun_Julai_Agost_Setembr_Otubr_Novembr_Dezembr'.split(
|
46736
|
+
'_'
|
46737
|
+
),
|
46660
46738
|
format: 'Janerachea_Febrerachea_Marsachea_Abrilachea_Maiachea_Junachea_Julaiachea_Agostachea_Setembrachea_Otubrachea_Novembrachea_Dezembrachea'.split(
|
46661
46739
|
'_'
|
46662
46740
|
),
|
46663
46741
|
isFormat: /MMMM(\s)+D[oD]?/,
|
46664
46742
|
},
|
46665
|
-
monthsShort:
|
46666
|
-
'_'
|
46667
|
-
),
|
46743
|
+
monthsShort:
|
46744
|
+
'Jan._Feb._Mars_Abr._Mai_Jun_Jul._Ago._Set._Otu._Nov._Dez.'.split('_'),
|
46668
46745
|
monthsParseExact: true,
|
46669
46746
|
weekdays: "Aitar_Somar_Mongllar_Budhvar_Birestar_Sukrar_Son'var".split('_'),
|
46670
46747
|
weekdaysShort: 'Ait._Som._Mon._Bud._Bre._Suk._Son.'.split('_'),
|
@@ -46803,9 +46880,10 @@ module.exports = __webpack_require__(348);
|
|
46803
46880
|
months: 'જાન્યુઆરી_ફેબ્રુઆરી_માર્ચ_એપ્રિલ_મે_જૂન_જુલાઈ_ઑગસ્ટ_સપ્ટેમ્બર_ઑક્ટ્બર_નવેમ્બર_ડિસેમ્બર'.split(
|
46804
46881
|
'_'
|
46805
46882
|
),
|
46806
|
-
monthsShort:
|
46807
|
-
'_'
|
46808
|
-
|
46883
|
+
monthsShort:
|
46884
|
+
'જાન્યુ._ફેબ્રુ._માર્ચ_એપ્રિ._મે_જૂન_જુલા._ઑગ._સપ્ટે._ઑક્ટ્._નવે._ડિસે.'.split(
|
46885
|
+
'_'
|
46886
|
+
),
|
46809
46887
|
monthsParseExact: true,
|
46810
46888
|
weekdays: 'રવિવાર_સોમવાર_મંગળવાર_બુધ્વાર_ગુરુવાર_શુક્રવાર_શનિવાર'.split(
|
46811
46889
|
'_'
|
@@ -46917,9 +46995,8 @@ module.exports = __webpack_require__(348);
|
|
46917
46995
|
months: 'ינואר_פברואר_מרץ_אפריל_מאי_יוני_יולי_אוגוסט_ספטמבר_אוקטובר_נובמבר_דצמבר'.split(
|
46918
46996
|
'_'
|
46919
46997
|
),
|
46920
|
-
monthsShort:
|
46921
|
-
'_'
|
46922
|
-
),
|
46998
|
+
monthsShort:
|
46999
|
+
'ינו׳_פבר׳_מרץ_אפר׳_מאי_יוני_יולי_אוג׳_ספט׳_אוק׳_נוב׳_דצמ׳'.split('_'),
|
46923
47000
|
weekdays: 'ראשון_שני_שלישי_רביעי_חמישי_שישי_שבת'.split('_'),
|
46924
47001
|
weekdaysShort: 'א׳_ב׳_ג׳_ד׳_ה׳_ו׳_ש׳'.split('_'),
|
46925
47002
|
weekdaysMin: 'א_ב_ג_ד_ה_ו_ש'.split('_'),
|
@@ -46981,7 +47058,8 @@ module.exports = __webpack_require__(348);
|
|
46981
47058
|
return number + ' שנים';
|
46982
47059
|
},
|
46983
47060
|
},
|
46984
|
-
meridiemParse:
|
47061
|
+
meridiemParse:
|
47062
|
+
/אחה"צ|לפנה"צ|אחרי הצהריים|לפני הצהריים|לפנות בוקר|בבוקר|בערב/i,
|
46985
47063
|
isPM: function (input) {
|
46986
47064
|
return /^(אחה"צ|אחרי הצהריים|בערב)$/.test(input);
|
46987
47065
|
},
|
@@ -47079,13 +47157,13 @@ module.exports = __webpack_require__(348);
|
|
47079
47157
|
format: 'जनवरी_फ़रवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितम्बर_अक्टूबर_नवम्बर_दिसम्बर'.split(
|
47080
47158
|
'_'
|
47081
47159
|
),
|
47082
|
-
standalone:
|
47083
|
-
'_'
|
47084
|
-
|
47160
|
+
standalone:
|
47161
|
+
'जनवरी_फरवरी_मार्च_अप्रैल_मई_जून_जुलाई_अगस्त_सितंबर_अक्टूबर_नवंबर_दिसंबर'.split(
|
47162
|
+
'_'
|
47163
|
+
),
|
47085
47164
|
},
|
47086
|
-
monthsShort:
|
47087
|
-
'_'
|
47088
|
-
),
|
47165
|
+
monthsShort:
|
47166
|
+
'जन._फ़र._मार्च_अप्रै._मई_जून_जुल._अग._सित._अक्टू._नव._दिस.'.split('_'),
|
47089
47167
|
weekdays: 'रविवार_सोमवार_मंगलवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
|
47090
47168
|
weekdaysShort: 'रवि_सोम_मंगल_बुध_गुरू_शुक्र_शनि'.split('_'),
|
47091
47169
|
weekdaysMin: 'र_सो_मं_बु_गु_शु_श'.split('_'),
|
@@ -47102,13 +47180,17 @@ module.exports = __webpack_require__(348);
|
|
47102
47180
|
longMonthsParse: monthsParse,
|
47103
47181
|
shortMonthsParse: shortMonthsParse,
|
47104
47182
|
|
47105
|
-
monthsRegex:
|
47183
|
+
monthsRegex:
|
47184
|
+
/^(जनवरी|जन\.?|फ़रवरी|फरवरी|फ़र\.?|मार्च?|अप्रैल|अप्रै\.?|मई?|जून?|जुलाई|जुल\.?|अगस्त|अग\.?|सितम्बर|सितंबर|सित\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर|नव\.?|दिसम्बर|दिसंबर|दिस\.?)/i,
|
47106
47185
|
|
47107
|
-
monthsShortRegex:
|
47186
|
+
monthsShortRegex:
|
47187
|
+
/^(जनवरी|जन\.?|फ़रवरी|फरवरी|फ़र\.?|मार्च?|अप्रैल|अप्रै\.?|मई?|जून?|जुलाई|जुल\.?|अगस्त|अग\.?|सितम्बर|सितंबर|सित\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर|नव\.?|दिसम्बर|दिसंबर|दिस\.?)/i,
|
47108
47188
|
|
47109
|
-
monthsStrictRegex:
|
47189
|
+
monthsStrictRegex:
|
47190
|
+
/^(जनवरी?|फ़रवरी|फरवरी?|मार्च?|अप्रैल?|मई?|जून?|जुलाई?|अगस्त?|सितम्बर|सितंबर|सित?\.?|अक्टूबर|अक्टू\.?|नवम्बर|नवंबर?|दिसम्बर|दिसंबर?)/i,
|
47110
47191
|
|
47111
|
-
monthsShortStrictRegex:
|
47192
|
+
monthsShortStrictRegex:
|
47193
|
+
/^(जन\.?|फ़र\.?|मार्च?|अप्रै\.?|मई?|जून?|जुल\.?|अग\.?|सित\.?|अक्टू\.?|नव\.?|दिस\.?)/i,
|
47112
47194
|
|
47113
47195
|
calendar: {
|
47114
47196
|
sameDay: '[आज] LT',
|
@@ -47268,13 +47350,15 @@ module.exports = __webpack_require__(348);
|
|
47268
47350
|
format: 'siječnja_veljače_ožujka_travnja_svibnja_lipnja_srpnja_kolovoza_rujna_listopada_studenoga_prosinca'.split(
|
47269
47351
|
'_'
|
47270
47352
|
),
|
47271
|
-
standalone:
|
47353
|
+
standalone:
|
47354
|
+
'siječanj_veljača_ožujak_travanj_svibanj_lipanj_srpanj_kolovoz_rujan_listopad_studeni_prosinac'.split(
|
47355
|
+
'_'
|
47356
|
+
),
|
47357
|
+
},
|
47358
|
+
monthsShort:
|
47359
|
+
'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split(
|
47272
47360
|
'_'
|
47273
47361
|
),
|
47274
|
-
},
|
47275
|
-
monthsShort: 'sij._velj._ožu._tra._svi._lip._srp._kol._ruj._lis._stu._pro.'.split(
|
47276
|
-
'_'
|
47277
|
-
),
|
47278
47362
|
monthsParseExact: true,
|
47279
47363
|
weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
|
47280
47364
|
'_'
|
@@ -47372,9 +47456,8 @@ module.exports = __webpack_require__(348);
|
|
47372
47456
|
|
47373
47457
|
//! moment.js locale configuration
|
47374
47458
|
|
47375
|
-
var weekEndings =
|
47376
|
-
' '
|
47377
|
-
);
|
47459
|
+
var weekEndings =
|
47460
|
+
'vasárnap hétfőn kedden szerdán csütörtökön pénteken szombaton'.split(' ');
|
47378
47461
|
function translate(number, withoutSuffix, key, isFuture) {
|
47379
47462
|
var num = number;
|
47380
47463
|
switch (key) {
|
@@ -47422,9 +47505,10 @@ module.exports = __webpack_require__(348);
|
|
47422
47505
|
months: 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december'.split(
|
47423
47506
|
'_'
|
47424
47507
|
),
|
47425
|
-
monthsShort:
|
47426
|
-
'_'
|
47427
|
-
|
47508
|
+
monthsShort:
|
47509
|
+
'jan._feb._márc._ápr._máj._jún._júl._aug._szept._okt._nov._dec.'.split(
|
47510
|
+
'_'
|
47511
|
+
),
|
47428
47512
|
monthsParseExact: true,
|
47429
47513
|
weekdays: 'vasárnap_hétfő_kedd_szerda_csütörtök_péntek_szombat'.split('_'),
|
47430
47514
|
weekdaysShort: 'vas_hét_kedd_sze_csüt_pén_szo'.split('_'),
|
@@ -47510,14 +47594,16 @@ module.exports = __webpack_require__(348);
|
|
47510
47594
|
format: 'հունվարի_փետրվարի_մարտի_ապրիլի_մայիսի_հունիսի_հուլիսի_օգոստոսի_սեպտեմբերի_հոկտեմբերի_նոյեմբերի_դեկտեմբերի'.split(
|
47511
47595
|
'_'
|
47512
47596
|
),
|
47513
|
-
standalone:
|
47514
|
-
'_'
|
47515
|
-
|
47597
|
+
standalone:
|
47598
|
+
'հունվար_փետրվար_մարտ_ապրիլ_մայիս_հունիս_հուլիս_օգոստոս_սեպտեմբեր_հոկտեմբեր_նոյեմբեր_դեկտեմբեր'.split(
|
47599
|
+
'_'
|
47600
|
+
),
|
47516
47601
|
},
|
47517
47602
|
monthsShort: 'հնվ_փտր_մրտ_ապր_մյս_հնս_հլս_օգս_սպտ_հկտ_նմբ_դկտ'.split('_'),
|
47518
|
-
weekdays:
|
47519
|
-
'_'
|
47520
|
-
|
47603
|
+
weekdays:
|
47604
|
+
'կիրակի_երկուշաբթի_երեքշաբթի_չորեքշաբթի_հինգշաբթի_ուրբաթ_շաբաթ'.split(
|
47605
|
+
'_'
|
47606
|
+
),
|
47521
47607
|
weekdaysShort: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
|
47522
47608
|
weekdaysMin: 'կրկ_երկ_երք_չրք_հնգ_ուրբ_շբթ'.split('_'),
|
47523
47609
|
longDateFormat: {
|
@@ -47794,9 +47880,10 @@ module.exports = __webpack_require__(348);
|
|
47794
47880
|
'_'
|
47795
47881
|
),
|
47796
47882
|
monthsShort: 'jan_feb_mar_apr_maí_jún_júl_ágú_sep_okt_nóv_des'.split('_'),
|
47797
|
-
weekdays:
|
47798
|
-
'
|
47799
|
-
|
47883
|
+
weekdays:
|
47884
|
+
'sunnudagur_mánudagur_þriðjudagur_miðvikudagur_fimmtudagur_föstudagur_laugardagur'.split(
|
47885
|
+
'_'
|
47886
|
+
),
|
47800
47887
|
weekdaysShort: 'sun_mán_þri_mið_fim_fös_lau'.split('_'),
|
47801
47888
|
weekdaysMin: 'Su_Má_Þr_Mi_Fi_Fö_La'.split('_'),
|
47802
47889
|
longDateFormat: {
|
@@ -48324,9 +48411,10 @@ module.exports = __webpack_require__(348);
|
|
48324
48411
|
),
|
48325
48412
|
monthsShort: 'იან_თებ_მარ_აპრ_მაი_ივნ_ივლ_აგვ_სექ_ოქტ_ნოე_დეკ'.split('_'),
|
48326
48413
|
weekdays: {
|
48327
|
-
standalone:
|
48328
|
-
'_'
|
48329
|
-
|
48414
|
+
standalone:
|
48415
|
+
'კვირა_ორშაბათი_სამშაბათი_ოთხშაბათი_ხუთშაბათი_პარასკევი_შაბათი'.split(
|
48416
|
+
'_'
|
48417
|
+
),
|
48330
48418
|
format: 'კვირას_ორშაბათს_სამშაბათს_ოთხშაბათს_ხუთშაბათს_პარასკევს_შაბათს'.split(
|
48331
48419
|
'_'
|
48332
48420
|
),
|
@@ -48352,13 +48440,12 @@ module.exports = __webpack_require__(348);
|
|
48352
48440
|
},
|
48353
48441
|
relativeTime: {
|
48354
48442
|
future: function (s) {
|
48355
|
-
return s.replace(
|
48356
|
-
|
48357
|
-
$1,
|
48358
|
-
|
48359
|
-
|
48360
|
-
|
48361
|
-
});
|
48443
|
+
return s.replace(
|
48444
|
+
/(წამ|წუთ|საათ|წელ|დღ|თვ)(ი|ე)/,
|
48445
|
+
function ($0, $1, $2) {
|
48446
|
+
return $2 === 'ი' ? $1 + 'ში' : $1 + $2 + 'ში';
|
48447
|
+
}
|
48448
|
+
);
|
48362
48449
|
},
|
48363
48450
|
past: function (s) {
|
48364
48451
|
if (/(წამი|წუთი|საათი|დღე|თვე)/.test(s)) {
|
@@ -48553,9 +48640,10 @@ module.exports = __webpack_require__(348);
|
|
48553
48640
|
months: 'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
|
48554
48641
|
'_'
|
48555
48642
|
),
|
48556
|
-
monthsShort:
|
48557
|
-
'_'
|
48558
|
-
|
48643
|
+
monthsShort:
|
48644
|
+
'មករា_កុម្ភៈ_មីនា_មេសា_ឧសភា_មិថុនា_កក្កដា_សីហា_កញ្ញា_តុលា_វិច្ឆិកា_ធ្នូ'.split(
|
48645
|
+
'_'
|
48646
|
+
),
|
48559
48647
|
weekdays: 'អាទិត្យ_ច័ន្ទ_អង្គារ_ពុធ_ព្រហស្បតិ៍_សុក្រ_សៅរ៍'.split('_'),
|
48560
48648
|
weekdaysShort: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
|
48561
48649
|
weekdaysMin: 'អា_ច_អ_ព_ព្រ_សុ_ស'.split('_'),
|
@@ -48671,9 +48759,10 @@ module.exports = __webpack_require__(348);
|
|
48671
48759
|
months: 'ಜನವರಿ_ಫೆಬ್ರವರಿ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂಬರ್_ಅಕ್ಟೋಬರ್_ನವೆಂಬರ್_ಡಿಸೆಂಬರ್'.split(
|
48672
48760
|
'_'
|
48673
48761
|
),
|
48674
|
-
monthsShort:
|
48675
|
-
'_'
|
48676
|
-
|
48762
|
+
monthsShort:
|
48763
|
+
'ಜನ_ಫೆಬ್ರ_ಮಾರ್ಚ್_ಏಪ್ರಿಲ್_ಮೇ_ಜೂನ್_ಜುಲೈ_ಆಗಸ್ಟ್_ಸೆಪ್ಟೆಂ_ಅಕ್ಟೋ_ನವೆಂ_ಡಿಸೆಂ'.split(
|
48764
|
+
'_'
|
48765
|
+
),
|
48677
48766
|
monthsParseExact: true,
|
48678
48767
|
weekdays: 'ಭಾನುವಾರ_ಸೋಮವಾರ_ಮಂಗಳವಾರ_ಬುಧವಾರ_ಗುರುವಾರ_ಶುಕ್ರವಾರ_ಶನಿವಾರ'.split(
|
48679
48768
|
'_'
|
@@ -48914,12 +49003,12 @@ module.exports = __webpack_require__(348);
|
|
48914
49003
|
var ku = moment.defineLocale('ku', {
|
48915
49004
|
months: months,
|
48916
49005
|
monthsShort: months,
|
48917
|
-
weekdays:
|
48918
|
-
'_'
|
48919
|
-
|
48920
|
-
|
48921
|
-
|
48922
|
-
|
49006
|
+
weekdays:
|
49007
|
+
'یهكشهممه_دووشهممه_سێشهممه_چوارشهممه_پێنجشهممه_ههینی_شهممه'.split(
|
49008
|
+
'_'
|
49009
|
+
),
|
49010
|
+
weekdaysShort:
|
49011
|
+
'یهكشهم_دووشهم_سێشهم_چوارشهم_پێنجشهم_ههینی_شهممه'.split('_'),
|
48923
49012
|
weekdaysMin: 'ی_د_س_چ_پ_ه_ش'.split('_'),
|
48924
49013
|
weekdaysParseExact: true,
|
48925
49014
|
longDateFormat: {
|
@@ -49177,13 +49266,15 @@ module.exports = __webpack_require__(348);
|
|
49177
49266
|
months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split(
|
49178
49267
|
'_'
|
49179
49268
|
),
|
49180
|
-
monthsShort:
|
49181
|
-
'
|
49182
|
-
|
49269
|
+
monthsShort:
|
49270
|
+
'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split(
|
49271
|
+
'_'
|
49272
|
+
),
|
49183
49273
|
monthsParseExact: true,
|
49184
|
-
weekdays:
|
49185
|
-
'
|
49186
|
-
|
49274
|
+
weekdays:
|
49275
|
+
'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split(
|
49276
|
+
'_'
|
49277
|
+
),
|
49187
49278
|
weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),
|
49188
49279
|
weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),
|
49189
49280
|
weekdaysParseExact: true,
|
@@ -49261,9 +49352,10 @@ module.exports = __webpack_require__(348);
|
|
49261
49352
|
months: 'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
|
49262
49353
|
'_'
|
49263
49354
|
),
|
49264
|
-
monthsShort:
|
49265
|
-
'_'
|
49266
|
-
|
49355
|
+
monthsShort:
|
49356
|
+
'ມັງກອນ_ກຸມພາ_ມີນາ_ເມສາ_ພຶດສະພາ_ມິຖຸນາ_ກໍລະກົດ_ສິງຫາ_ກັນຍາ_ຕຸລາ_ພະຈິກ_ທັນວາ'.split(
|
49357
|
+
'_'
|
49358
|
+
),
|
49267
49359
|
weekdays: 'ອາທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
|
49268
49360
|
weekdaysShort: 'ທິດ_ຈັນ_ອັງຄານ_ພຸດ_ພະຫັດ_ສຸກ_ເສົາ'.split('_'),
|
49269
49361
|
weekdaysMin: 'ທ_ຈ_ອຄ_ພ_ພຫ_ສກ_ສ'.split('_'),
|
@@ -49392,9 +49484,10 @@ module.exports = __webpack_require__(348);
|
|
49392
49484
|
format: 'sausio_vasario_kovo_balandžio_gegužės_birželio_liepos_rugpjūčio_rugsėjo_spalio_lapkričio_gruodžio'.split(
|
49393
49485
|
'_'
|
49394
49486
|
),
|
49395
|
-
standalone:
|
49396
|
-
'
|
49397
|
-
|
49487
|
+
standalone:
|
49488
|
+
'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis'.split(
|
49489
|
+
'_'
|
49490
|
+
),
|
49398
49491
|
isFormat: /D[oD]?(\[[^\[\]]*\]|\s)+MMMM?|MMMM?(\[[^\[\]]*\]|\s)+D[oD]?/,
|
49399
49492
|
},
|
49400
49493
|
monthsShort: 'sau_vas_kov_bal_geg_bir_lie_rgp_rgs_spa_lap_grd'.split('_'),
|
@@ -49402,9 +49495,10 @@ module.exports = __webpack_require__(348);
|
|
49402
49495
|
format: 'sekmadienį_pirmadienį_antradienį_trečiadienį_ketvirtadienį_penktadienį_šeštadienį'.split(
|
49403
49496
|
'_'
|
49404
49497
|
),
|
49405
|
-
standalone:
|
49406
|
-
'
|
49407
|
-
|
49498
|
+
standalone:
|
49499
|
+
'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis'.split(
|
49500
|
+
'_'
|
49501
|
+
),
|
49408
49502
|
isFormat: /dddd HH:mm/,
|
49409
49503
|
},
|
49410
49504
|
weekdaysShort: 'Sek_Pir_Ant_Tre_Ket_Pen_Šeš'.split('_'),
|
@@ -49519,9 +49613,10 @@ module.exports = __webpack_require__(348);
|
|
49519
49613
|
'_'
|
49520
49614
|
),
|
49521
49615
|
monthsShort: 'jan_feb_mar_apr_mai_jūn_jūl_aug_sep_okt_nov_dec'.split('_'),
|
49522
|
-
weekdays:
|
49523
|
-
'
|
49524
|
-
|
49616
|
+
weekdays:
|
49617
|
+
'svētdiena_pirmdiena_otrdiena_trešdiena_ceturtdiena_piektdiena_sestdiena'.split(
|
49618
|
+
'_'
|
49619
|
+
),
|
49525
49620
|
weekdaysShort: 'Sv_P_O_T_C_Pk_S'.split('_'),
|
49526
49621
|
weekdaysMin: 'Sv_P_O_T_C_Pk_S'.split('_'),
|
49527
49622
|
weekdaysParseExact: true,
|
@@ -49623,9 +49718,8 @@ module.exports = __webpack_require__(348);
|
|
49623
49718
|
months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split(
|
49624
49719
|
'_'
|
49625
49720
|
),
|
49626
|
-
monthsShort:
|
49627
|
-
'_'
|
49628
|
-
),
|
49721
|
+
monthsShort:
|
49722
|
+
'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
|
49629
49723
|
monthsParseExact: true,
|
49630
49724
|
weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split(
|
49631
49725
|
'_'
|
@@ -49724,9 +49818,10 @@ module.exports = __webpack_require__(348);
|
|
49724
49818
|
months: 'Kohi-tāte_Hui-tanguru_Poutū-te-rangi_Paenga-whāwhā_Haratua_Pipiri_Hōngoingoi_Here-turi-kōkā_Mahuru_Whiringa-ā-nuku_Whiringa-ā-rangi_Hakihea'.split(
|
49725
49819
|
'_'
|
49726
49820
|
),
|
49727
|
-
monthsShort:
|
49728
|
-
'
|
49729
|
-
|
49821
|
+
monthsShort:
|
49822
|
+
'Kohi_Hui_Pou_Pae_Hara_Pipi_Hōngoi_Here_Mahu_Whi-nu_Whi-ra_Haki'.split(
|
49823
|
+
'_'
|
49824
|
+
),
|
49730
49825
|
monthsRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
|
49731
49826
|
monthsStrictRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
|
49732
49827
|
monthsShortRegex: /(?:['a-z\u0101\u014D\u016B]+\-?){1,3}/i,
|
@@ -49901,13 +49996,15 @@ module.exports = __webpack_require__(348);
|
|
49901
49996
|
months: 'ജനുവരി_ഫെബ്രുവരി_മാർച്ച്_ഏപ്രിൽ_മേയ്_ജൂൺ_ജൂലൈ_ഓഗസ്റ്റ്_സെപ്റ്റംബർ_ഒക്ടോബർ_നവംബർ_ഡിസംബർ'.split(
|
49902
49997
|
'_'
|
49903
49998
|
),
|
49904
|
-
monthsShort:
|
49905
|
-
'_'
|
49906
|
-
|
49999
|
+
monthsShort:
|
50000
|
+
'ജനു._ഫെബ്രു._മാർ._ഏപ്രി._മേയ്_ജൂൺ_ജൂലൈ._ഓഗ._സെപ്റ്റ._ഒക്ടോ._നവം._ഡിസം.'.split(
|
50001
|
+
'_'
|
50002
|
+
),
|
49907
50003
|
monthsParseExact: true,
|
49908
|
-
weekdays:
|
49909
|
-
'_'
|
49910
|
-
|
50004
|
+
weekdays:
|
50005
|
+
'ഞായറാഴ്ച_തിങ്കളാഴ്ച_ചൊവ്വാഴ്ച_ബുധനാഴ്ച_വ്യാഴാഴ്ച_വെള്ളിയാഴ്ച_ശനിയാഴ്ച'.split(
|
50006
|
+
'_'
|
50007
|
+
),
|
49911
50008
|
weekdaysShort: 'ഞായർ_തിങ്കൾ_ചൊവ്വ_ബുധൻ_വ്യാഴം_വെള്ളി_ശനി'.split('_'),
|
49912
50009
|
weekdaysMin: 'ഞാ_തി_ചൊ_ബു_വ്യാ_വെ_ശ'.split('_'),
|
49913
50010
|
longDateFormat: {
|
@@ -50023,9 +50120,10 @@ module.exports = __webpack_require__(348);
|
|
50023
50120
|
months: 'Нэгдүгээр сар_Хоёрдугаар сар_Гуравдугаар сар_Дөрөвдүгээр сар_Тавдугаар сар_Зургадугаар сар_Долдугаар сар_Наймдугаар сар_Есдүгээр сар_Аравдугаар сар_Арван нэгдүгээр сар_Арван хоёрдугаар сар'.split(
|
50024
50121
|
'_'
|
50025
50122
|
),
|
50026
|
-
monthsShort:
|
50027
|
-
'
|
50028
|
-
|
50123
|
+
monthsShort:
|
50124
|
+
'1 сар_2 сар_3 сар_4 сар_5 сар_6 сар_7 сар_8 сар_9 сар_10 сар_11 сар_12 сар'.split(
|
50125
|
+
'_'
|
50126
|
+
),
|
50029
50127
|
monthsParseExact: true,
|
50030
50128
|
weekdays: 'Ням_Даваа_Мягмар_Лхагва_Пүрэв_Баасан_Бямба'.split('_'),
|
50031
50129
|
weekdaysShort: 'Ням_Дав_Мяг_Лха_Пүр_Баа_Бям'.split('_'),
|
@@ -50222,9 +50320,10 @@ module.exports = __webpack_require__(348);
|
|
50222
50320
|
months: 'जानेवारी_फेब्रुवारी_मार्च_एप्रिल_मे_जून_जुलै_ऑगस्ट_सप्टेंबर_ऑक्टोबर_नोव्हेंबर_डिसेंबर'.split(
|
50223
50321
|
'_'
|
50224
50322
|
),
|
50225
|
-
monthsShort:
|
50226
|
-
'_'
|
50227
|
-
|
50323
|
+
monthsShort:
|
50324
|
+
'जाने._फेब्रु._मार्च._एप्रि._मे._जून._जुलै._ऑग._सप्टें._ऑक्टो._नोव्हें._डिसें.'.split(
|
50325
|
+
'_'
|
50326
|
+
),
|
50228
50327
|
monthsParseExact: true,
|
50229
50328
|
weekdays: 'रविवार_सोमवार_मंगळवार_बुधवार_गुरूवार_शुक्रवार_शनिवार'.split('_'),
|
50230
50329
|
weekdaysShort: 'रवि_सोम_मंगळ_बुध_गुरू_शुक्र_शनि'.split('_'),
|
@@ -50514,9 +50613,10 @@ module.exports = __webpack_require__(348);
|
|
50514
50613
|
'_'
|
50515
50614
|
),
|
50516
50615
|
monthsShort: 'Jan_Fra_Mar_Apr_Mej_Ġun_Lul_Aww_Set_Ott_Nov_Diċ'.split('_'),
|
50517
|
-
weekdays:
|
50518
|
-
'
|
50519
|
-
|
50616
|
+
weekdays:
|
50617
|
+
'Il-Ħadd_It-Tnejn_It-Tlieta_L-Erbgħa_Il-Ħamis_Il-Ġimgħa_Is-Sibt'.split(
|
50618
|
+
'_'
|
50619
|
+
),
|
50520
50620
|
weekdaysShort: 'Ħad_Tne_Tli_Erb_Ħam_Ġim_Sib'.split('_'),
|
50521
50621
|
weekdaysMin: 'Ħa_Tn_Tl_Er_Ħa_Ġi_Si'.split('_'),
|
50522
50622
|
longDateFormat: {
|
@@ -50693,9 +50793,8 @@ module.exports = __webpack_require__(348);
|
|
50693
50793
|
months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
|
50694
50794
|
'_'
|
50695
50795
|
),
|
50696
|
-
monthsShort:
|
50697
|
-
'_'
|
50698
|
-
),
|
50796
|
+
monthsShort:
|
50797
|
+
'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
|
50699
50798
|
monthsParseExact: true,
|
50700
50799
|
weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
|
50701
50800
|
weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
|
@@ -50793,9 +50892,10 @@ module.exports = __webpack_require__(348);
|
|
50793
50892
|
months: 'जनवरी_फेब्रुवरी_मार्च_अप्रिल_मई_जुन_जुलाई_अगष्ट_सेप्टेम्बर_अक्टोबर_नोभेम्बर_डिसेम्बर'.split(
|
50794
50893
|
'_'
|
50795
50894
|
),
|
50796
|
-
monthsShort:
|
50797
|
-
'_'
|
50798
|
-
|
50895
|
+
monthsShort:
|
50896
|
+
'जन._फेब्रु._मार्च_अप्रि._मई_जुन_जुलाई._अग._सेप्ट._अक्टो._नोभे._डिसे.'.split(
|
50897
|
+
'_'
|
50898
|
+
),
|
50799
50899
|
monthsParseExact: true,
|
50800
50900
|
weekdays: 'आइतबार_सोमबार_मङ्गलबार_बुधबार_बिहिबार_शुक्रबार_शनिबार'.split(
|
50801
50901
|
'_'
|
@@ -50901,12 +51001,10 @@ module.exports = __webpack_require__(348);
|
|
50901
51001
|
|
50902
51002
|
//! moment.js locale configuration
|
50903
51003
|
|
50904
|
-
var monthsShortWithDots =
|
50905
|
-
'_'
|
50906
|
-
|
50907
|
-
|
50908
|
-
'_'
|
50909
|
-
),
|
51004
|
+
var monthsShortWithDots =
|
51005
|
+
'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
|
51006
|
+
monthsShortWithoutDots =
|
51007
|
+
'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'),
|
50910
51008
|
monthsParse = [
|
50911
51009
|
/^jan/i,
|
50912
51010
|
/^feb/i,
|
@@ -50921,7 +51019,8 @@ module.exports = __webpack_require__(348);
|
|
50921
51019
|
/^nov/i,
|
50922
51020
|
/^dec/i,
|
50923
51021
|
],
|
50924
|
-
monthsRegex =
|
51022
|
+
monthsRegex =
|
51023
|
+
/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
|
50925
51024
|
|
50926
51025
|
var nl = moment.defineLocale('nl', {
|
50927
51026
|
months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split(
|
@@ -50939,16 +51038,17 @@ module.exports = __webpack_require__(348);
|
|
50939
51038
|
|
50940
51039
|
monthsRegex: monthsRegex,
|
50941
51040
|
monthsShortRegex: monthsRegex,
|
50942
|
-
monthsStrictRegex:
|
50943
|
-
|
51041
|
+
monthsStrictRegex:
|
51042
|
+
/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
|
51043
|
+
monthsShortStrictRegex:
|
51044
|
+
/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
|
50944
51045
|
|
50945
51046
|
monthsParse: monthsParse,
|
50946
51047
|
longMonthsParse: monthsParse,
|
50947
51048
|
shortMonthsParse: monthsParse,
|
50948
51049
|
|
50949
|
-
weekdays:
|
50950
|
-
'_'
|
50951
|
-
),
|
51050
|
+
weekdays:
|
51051
|
+
'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
|
50952
51052
|
weekdaysShort: 'zo._ma._di._wo._do._vr._za.'.split('_'),
|
50953
51053
|
weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'),
|
50954
51054
|
weekdaysParseExact: true,
|
@@ -51021,12 +51121,10 @@ module.exports = __webpack_require__(348);
|
|
51021
51121
|
|
51022
51122
|
//! moment.js locale configuration
|
51023
51123
|
|
51024
|
-
var monthsShortWithDots =
|
51025
|
-
'_'
|
51026
|
-
|
51027
|
-
|
51028
|
-
'_'
|
51029
|
-
),
|
51124
|
+
var monthsShortWithDots =
|
51125
|
+
'jan._feb._mrt._apr._mei_jun._jul._aug._sep._okt._nov._dec.'.split('_'),
|
51126
|
+
monthsShortWithoutDots =
|
51127
|
+
'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'),
|
51030
51128
|
monthsParse = [
|
51031
51129
|
/^jan/i,
|
51032
51130
|
/^feb/i,
|
@@ -51041,7 +51139,8 @@ module.exports = __webpack_require__(348);
|
|
51041
51139
|
/^nov/i,
|
51042
51140
|
/^dec/i,
|
51043
51141
|
],
|
51044
|
-
monthsRegex =
|
51142
|
+
monthsRegex =
|
51143
|
+
/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december|jan\.?|feb\.?|mrt\.?|apr\.?|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i;
|
51045
51144
|
|
51046
51145
|
var nlBe = moment.defineLocale('nl-be', {
|
51047
51146
|
months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split(
|
@@ -51059,16 +51158,17 @@ module.exports = __webpack_require__(348);
|
|
51059
51158
|
|
51060
51159
|
monthsRegex: monthsRegex,
|
51061
51160
|
monthsShortRegex: monthsRegex,
|
51062
|
-
monthsStrictRegex:
|
51063
|
-
|
51161
|
+
monthsStrictRegex:
|
51162
|
+
/^(januari|februari|maart|april|mei|ju[nl]i|augustus|september|oktober|november|december)/i,
|
51163
|
+
monthsShortStrictRegex:
|
51164
|
+
/^(jan\.?|feb\.?|mrt\.?|apr\.?|mei|ju[nl]\.?|aug\.?|sep\.?|okt\.?|nov\.?|dec\.?)/i,
|
51064
51165
|
|
51065
51166
|
monthsParse: monthsParse,
|
51066
51167
|
longMonthsParse: monthsParse,
|
51067
51168
|
shortMonthsParse: monthsParse,
|
51068
51169
|
|
51069
|
-
weekdays:
|
51070
|
-
'_'
|
51071
|
-
),
|
51170
|
+
weekdays:
|
51171
|
+
'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
|
51072
51172
|
weekdaysShort: 'zo._ma._di._wo._do._vr._za.'.split('_'),
|
51073
51173
|
weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'),
|
51074
51174
|
weekdaysParseExact: true,
|
@@ -51143,9 +51243,8 @@ module.exports = __webpack_require__(348);
|
|
51143
51243
|
months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split(
|
51144
51244
|
'_'
|
51145
51245
|
),
|
51146
|
-
monthsShort:
|
51147
|
-
'_'
|
51148
|
-
),
|
51246
|
+
monthsShort:
|
51247
|
+
'jan._feb._mars_apr._mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
|
51149
51248
|
monthsParseExact: true,
|
51150
51249
|
weekdays: 'sundag_måndag_tysdag_onsdag_torsdag_fredag_laurdag'.split('_'),
|
51151
51250
|
weekdaysShort: 'su._må._ty._on._to._fr._lau.'.split('_'),
|
@@ -51216,17 +51315,19 @@ module.exports = __webpack_require__(348);
|
|
51216
51315
|
|
51217
51316
|
var ocLnc = moment.defineLocale('oc-lnc', {
|
51218
51317
|
months: {
|
51219
|
-
standalone:
|
51220
|
-
'
|
51221
|
-
|
51318
|
+
standalone:
|
51319
|
+
'genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octòbre_novembre_decembre'.split(
|
51320
|
+
'_'
|
51321
|
+
),
|
51222
51322
|
format: "de genièr_de febrièr_de març_d'abril_de mai_de junh_de julhet_d'agost_de setembre_d'octòbre_de novembre_de decembre".split(
|
51223
51323
|
'_'
|
51224
51324
|
),
|
51225
51325
|
isFormat: /D[oD]?(\s)+MMMM/,
|
51226
51326
|
},
|
51227
|
-
monthsShort:
|
51228
|
-
'
|
51229
|
-
|
51327
|
+
monthsShort:
|
51328
|
+
'gen._febr._març_abr._mai_junh_julh._ago._set._oct._nov._dec.'.split(
|
51329
|
+
'_'
|
51330
|
+
),
|
51230
51331
|
monthsParseExact: true,
|
51231
51332
|
weekdays: 'dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte'.split(
|
51232
51333
|
'_'
|
@@ -51343,9 +51444,10 @@ module.exports = __webpack_require__(348);
|
|
51343
51444
|
months: 'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split(
|
51344
51445
|
'_'
|
51345
51446
|
),
|
51346
|
-
monthsShort:
|
51347
|
-
'_'
|
51348
|
-
|
51447
|
+
monthsShort:
|
51448
|
+
'ਜਨਵਰੀ_ਫ਼ਰਵਰੀ_ਮਾਰਚ_ਅਪ੍ਰੈਲ_ਮਈ_ਜੂਨ_ਜੁਲਾਈ_ਅਗਸਤ_ਸਤੰਬਰ_ਅਕਤੂਬਰ_ਨਵੰਬਰ_ਦਸੰਬਰ'.split(
|
51449
|
+
'_'
|
51450
|
+
),
|
51349
51451
|
weekdays: 'ਐਤਵਾਰ_ਸੋਮਵਾਰ_ਮੰਗਲਵਾਰ_ਬੁਧਵਾਰ_ਵੀਰਵਾਰ_ਸ਼ੁੱਕਰਵਾਰ_ਸ਼ਨੀਚਰਵਾਰ'.split(
|
51350
51452
|
'_'
|
51351
51453
|
),
|
@@ -51450,12 +51552,14 @@ module.exports = __webpack_require__(348);
|
|
51450
51552
|
|
51451
51553
|
//! moment.js locale configuration
|
51452
51554
|
|
51453
|
-
var monthsNominative =
|
51454
|
-
'
|
51455
|
-
|
51456
|
-
|
51457
|
-
|
51458
|
-
|
51555
|
+
var monthsNominative =
|
51556
|
+
'styczeń_luty_marzec_kwiecień_maj_czerwiec_lipiec_sierpień_wrzesień_październik_listopad_grudzień'.split(
|
51557
|
+
'_'
|
51558
|
+
),
|
51559
|
+
monthsSubjective =
|
51560
|
+
'stycznia_lutego_marca_kwietnia_maja_czerwca_lipca_sierpnia_września_października_listopada_grudnia'.split(
|
51561
|
+
'_'
|
51562
|
+
),
|
51459
51563
|
monthsParse = [
|
51460
51564
|
/^sty/i,
|
51461
51565
|
/^lut/i,
|
@@ -51509,9 +51613,8 @@ module.exports = __webpack_require__(348);
|
|
51509
51613
|
monthsParse: monthsParse,
|
51510
51614
|
longMonthsParse: monthsParse,
|
51511
51615
|
shortMonthsParse: monthsParse,
|
51512
|
-
weekdays:
|
51513
|
-
'_'
|
51514
|
-
),
|
51616
|
+
weekdays:
|
51617
|
+
'niedziela_poniedziałek_wtorek_środa_czwartek_piątek_sobota'.split('_'),
|
51515
51618
|
weekdaysShort: 'ndz_pon_wt_śr_czw_pt_sob'.split('_'),
|
51516
51619
|
weekdaysMin: 'Nd_Pn_Wt_Śr_Cz_Pt_So'.split('_'),
|
51517
51620
|
longDateFormat: {
|
@@ -51610,9 +51713,10 @@ module.exports = __webpack_require__(348);
|
|
51610
51713
|
'_'
|
51611
51714
|
),
|
51612
51715
|
monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
|
51613
|
-
weekdays:
|
51614
|
-
'
|
51615
|
-
|
51716
|
+
weekdays:
|
51717
|
+
'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado'.split(
|
51718
|
+
'_'
|
51719
|
+
),
|
51616
51720
|
weekdaysShort: 'Dom_Seg_Ter_Qua_Qui_Sex_Sáb'.split('_'),
|
51617
51721
|
weekdaysMin: 'Do_2ª_3ª_4ª_5ª_6ª_Sá'.split('_'),
|
51618
51722
|
weekdaysParseExact: true,
|
@@ -51688,9 +51792,10 @@ module.exports = __webpack_require__(348);
|
|
51688
51792
|
'_'
|
51689
51793
|
),
|
51690
51794
|
monthsShort: 'jan_fev_mar_abr_mai_jun_jul_ago_set_out_nov_dez'.split('_'),
|
51691
|
-
weekdays:
|
51692
|
-
'
|
51693
|
-
|
51795
|
+
weekdays:
|
51796
|
+
'domingo_segunda-feira_terça-feira_quarta-feira_quinta-feira_sexta-feira_sábado'.split(
|
51797
|
+
'_'
|
51798
|
+
),
|
51694
51799
|
weekdaysShort: 'dom_seg_ter_qua_qui_sex_sáb'.split('_'),
|
51695
51800
|
weekdaysMin: 'do_2ª_3ª_4ª_5ª_6ª_sá'.split('_'),
|
51696
51801
|
weekdaysParseExact: true,
|
@@ -51779,9 +51884,10 @@ module.exports = __webpack_require__(348);
|
|
51779
51884
|
months: 'ianuarie_februarie_martie_aprilie_mai_iunie_iulie_august_septembrie_octombrie_noiembrie_decembrie'.split(
|
51780
51885
|
'_'
|
51781
51886
|
),
|
51782
|
-
monthsShort:
|
51783
|
-
'
|
51784
|
-
|
51887
|
+
monthsShort:
|
51888
|
+
'ian._feb._mart._apr._mai_iun._iul._aug._sept._oct._nov._dec.'.split(
|
51889
|
+
'_'
|
51890
|
+
),
|
51785
51891
|
monthsParseExact: true,
|
51786
51892
|
weekdays: 'duminică_luni_marți_miercuri_joi_vineri_sâmbătă'.split('_'),
|
51787
51893
|
weekdaysShort: 'Dum_Lun_Mar_Mie_Joi_Vin_Sâm'.split('_'),
|
@@ -51896,23 +52002,26 @@ module.exports = __webpack_require__(348);
|
|
51896
52002
|
format: 'января_февраля_марта_апреля_мая_июня_июля_августа_сентября_октября_ноября_декабря'.split(
|
51897
52003
|
'_'
|
51898
52004
|
),
|
51899
|
-
standalone:
|
51900
|
-
'_'
|
51901
|
-
|
52005
|
+
standalone:
|
52006
|
+
'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь'.split(
|
52007
|
+
'_'
|
52008
|
+
),
|
51902
52009
|
},
|
51903
52010
|
monthsShort: {
|
51904
52011
|
// по CLDR именно "июл." и "июн.", но какой смысл менять букву на точку?
|
51905
52012
|
format: 'янв._февр._мар._апр._мая_июня_июля_авг._сент._окт._нояб._дек.'.split(
|
51906
52013
|
'_'
|
51907
52014
|
),
|
51908
|
-
standalone:
|
51909
|
-
'_'
|
51910
|
-
|
52015
|
+
standalone:
|
52016
|
+
'янв._февр._март_апр._май_июнь_июль_авг._сент._окт._нояб._дек.'.split(
|
52017
|
+
'_'
|
52018
|
+
),
|
51911
52019
|
},
|
51912
52020
|
weekdays: {
|
51913
|
-
standalone:
|
51914
|
-
'_'
|
51915
|
-
|
52021
|
+
standalone:
|
52022
|
+
'воскресенье_понедельник_вторник_среда_четверг_пятница_суббота'.split(
|
52023
|
+
'_'
|
52024
|
+
),
|
51916
52025
|
format: 'воскресенье_понедельник_вторник_среду_четверг_пятницу_субботу'.split(
|
51917
52026
|
'_'
|
51918
52027
|
),
|
@@ -51925,16 +52034,20 @@ module.exports = __webpack_require__(348);
|
|
51925
52034
|
shortMonthsParse: monthsParse,
|
51926
52035
|
|
51927
52036
|
// полные названия с падежами, по три буквы, для некоторых, по 4 буквы, сокращения с точкой и без точки
|
51928
|
-
monthsRegex:
|
52037
|
+
monthsRegex:
|
52038
|
+
/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
|
51929
52039
|
|
51930
52040
|
// копия предыдущего
|
51931
|
-
monthsShortRegex:
|
52041
|
+
monthsShortRegex:
|
52042
|
+
/^(январ[ья]|янв\.?|феврал[ья]|февр?\.?|марта?|мар\.?|апрел[ья]|апр\.?|ма[йя]|июн[ья]|июн\.?|июл[ья]|июл\.?|августа?|авг\.?|сентябр[ья]|сент?\.?|октябр[ья]|окт\.?|ноябр[ья]|нояб?\.?|декабр[ья]|дек\.?)/i,
|
51932
52043
|
|
51933
52044
|
// полные названия с падежами
|
51934
|
-
monthsStrictRegex:
|
52045
|
+
monthsStrictRegex:
|
52046
|
+
/^(январ[яь]|феврал[яь]|марта?|апрел[яь]|ма[яй]|июн[яь]|июл[яь]|августа?|сентябр[яь]|октябр[яь]|ноябр[яь]|декабр[яь])/i,
|
51935
52047
|
|
51936
52048
|
// Выражение, которое соответствует только сокращённым формам
|
51937
|
-
monthsShortStrictRegex:
|
52049
|
+
monthsShortStrictRegex:
|
52050
|
+
/^(янв\.|февр?\.|мар[т.]|апр\.|ма[яй]|июн[ья.]|июл[ья.]|авг\.|сент?\.|окт\.|нояб?\.|дек\.)/i,
|
51938
52051
|
longDateFormat: {
|
51939
52052
|
LT: 'H:mm',
|
51940
52053
|
LTS: 'H:mm:ss',
|
@@ -52170,12 +52283,12 @@ module.exports = __webpack_require__(348);
|
|
52170
52283
|
months: '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'.split(
|
52171
52284
|
'_'
|
52172
52285
|
),
|
52173
|
-
monthsShort:
|
52174
|
-
'_'
|
52175
|
-
|
52176
|
-
|
52177
|
-
|
52178
|
-
|
52286
|
+
monthsShort:
|
52287
|
+
'ođđj_guov_njuk_cuo_mies_geas_suoi_borg_čakč_golg_skáb_juov'.split('_'),
|
52288
|
+
weekdays:
|
52289
|
+
'sotnabeaivi_vuossárga_maŋŋebárga_gaskavahkku_duorastat_bearjadat_lávvardat'.split(
|
52290
|
+
'_'
|
52291
|
+
),
|
52179
52292
|
weekdaysShort: 'sotn_vuos_maŋ_gask_duor_bear_láv'.split('_'),
|
52180
52293
|
weekdaysMin: 's_v_m_g_d_b_L'.split('_'),
|
52181
52294
|
longDateFormat: {
|
@@ -52247,9 +52360,10 @@ module.exports = __webpack_require__(348);
|
|
52247
52360
|
monthsShort: 'ජන_පෙබ_මාර්_අප්_මැයි_ජූනි_ජූලි_අගෝ_සැප්_ඔක්_නොවැ_දෙසැ'.split(
|
52248
52361
|
'_'
|
52249
52362
|
),
|
52250
|
-
weekdays:
|
52251
|
-
'_'
|
52252
|
-
|
52363
|
+
weekdays:
|
52364
|
+
'ඉරිදා_සඳුදා_අඟහරුවාදා_බදාදා_බ්රහස්පතින්දා_සිකුරාදා_සෙනසුරාදා'.split(
|
52365
|
+
'_'
|
52366
|
+
),
|
52253
52367
|
weekdaysShort: 'ඉරි_සඳු_අඟ_බදා_බ්රහ_සිකු_සෙන'.split('_'),
|
52254
52368
|
weekdaysMin: 'ඉ_ස_අ_බ_බ්ර_සි_සෙ'.split('_'),
|
52255
52369
|
weekdaysParseExact: true,
|
@@ -52324,9 +52438,10 @@ module.exports = __webpack_require__(348);
|
|
52324
52438
|
|
52325
52439
|
//! moment.js locale configuration
|
52326
52440
|
|
52327
|
-
var months =
|
52328
|
-
'
|
52329
|
-
|
52441
|
+
var months =
|
52442
|
+
'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december'.split(
|
52443
|
+
'_'
|
52444
|
+
),
|
52330
52445
|
monthsShort = 'jan_feb_mar_apr_máj_jún_júl_aug_sep_okt_nov_dec'.split('_');
|
52331
52446
|
function plural(n) {
|
52332
52447
|
return n > 1 && n < 5;
|
@@ -52571,9 +52686,10 @@ module.exports = __webpack_require__(348);
|
|
52571
52686
|
months: 'januar_februar_marec_april_maj_junij_julij_avgust_september_oktober_november_december'.split(
|
52572
52687
|
'_'
|
52573
52688
|
),
|
52574
|
-
monthsShort:
|
52575
|
-
'
|
52576
|
-
|
52689
|
+
monthsShort:
|
52690
|
+
'jan._feb._mar._apr._maj._jun._jul._avg._sep._okt._nov._dec.'.split(
|
52691
|
+
'_'
|
52692
|
+
),
|
52577
52693
|
monthsParseExact: true,
|
52578
52694
|
weekdays: 'nedelja_ponedeljek_torek_sreda_četrtek_petek_sobota'.split('_'),
|
52579
52695
|
weekdaysShort: 'ned._pon._tor._sre._čet._pet._sob.'.split('_'),
|
@@ -52755,32 +52871,44 @@ module.exports = __webpack_require__(348);
|
|
52755
52871
|
words: {
|
52756
52872
|
//Different grammatical cases
|
52757
52873
|
ss: ['sekunda', 'sekunde', 'sekundi'],
|
52758
|
-
m: ['jedan minut', '
|
52759
|
-
mm: ['minut', '
|
52874
|
+
m: ['jedan minut', 'jednog minuta'],
|
52875
|
+
mm: ['minut', 'minuta', 'minuta'],
|
52760
52876
|
h: ['jedan sat', 'jednog sata'],
|
52761
52877
|
hh: ['sat', 'sata', 'sati'],
|
52878
|
+
d: ['jedan dan', 'jednog dana'],
|
52762
52879
|
dd: ['dan', 'dana', 'dana'],
|
52880
|
+
M: ['jedan mesec', 'jednog meseca'],
|
52763
52881
|
MM: ['mesec', 'meseca', 'meseci'],
|
52764
|
-
|
52882
|
+
y: ['jednu godinu', 'jedne godine'],
|
52883
|
+
yy: ['godinu', 'godine', 'godina'],
|
52765
52884
|
},
|
52766
52885
|
correctGrammaticalCase: function (number, wordKey) {
|
52767
|
-
|
52768
|
-
|
52769
|
-
|
52770
|
-
|
52771
|
-
|
52886
|
+
if (
|
52887
|
+
number % 10 >= 1 &&
|
52888
|
+
number % 10 <= 4 &&
|
52889
|
+
(number % 100 < 10 || number % 100 >= 20)
|
52890
|
+
) {
|
52891
|
+
return number % 10 === 1 ? wordKey[0] : wordKey[1];
|
52892
|
+
}
|
52893
|
+
return wordKey[2];
|
52772
52894
|
},
|
52773
|
-
translate: function (number, withoutSuffix, key) {
|
52774
|
-
var wordKey = translator.words[key]
|
52895
|
+
translate: function (number, withoutSuffix, key, isFuture) {
|
52896
|
+
var wordKey = translator.words[key],
|
52897
|
+
word;
|
52898
|
+
|
52775
52899
|
if (key.length === 1) {
|
52776
|
-
|
52777
|
-
|
52778
|
-
return
|
52779
|
-
|
52780
|
-
|
52781
|
-
|
52782
|
-
|
52900
|
+
// Nominativ
|
52901
|
+
if (key === 'y' && withoutSuffix) return 'jedna godina';
|
52902
|
+
return isFuture || withoutSuffix ? wordKey[0] : wordKey[1];
|
52903
|
+
}
|
52904
|
+
|
52905
|
+
word = translator.correctGrammaticalCase(number, wordKey);
|
52906
|
+
// Nominativ
|
52907
|
+
if (key === 'yy' && withoutSuffix && word === 'godinu') {
|
52908
|
+
return number + ' godina';
|
52783
52909
|
}
|
52910
|
+
|
52911
|
+
return number + ' ' + word;
|
52784
52912
|
},
|
52785
52913
|
};
|
52786
52914
|
|
@@ -52788,9 +52916,8 @@ module.exports = __webpack_require__(348);
|
|
52788
52916
|
months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split(
|
52789
52917
|
'_'
|
52790
52918
|
),
|
52791
|
-
monthsShort:
|
52792
|
-
'_'
|
52793
|
-
),
|
52919
|
+
monthsShort:
|
52920
|
+
'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
|
52794
52921
|
monthsParseExact: true,
|
52795
52922
|
weekdays: 'nedelja_ponedeljak_utorak_sreda_četvrtak_petak_subota'.split(
|
52796
52923
|
'_'
|
@@ -52848,11 +52975,11 @@ module.exports = __webpack_require__(348);
|
|
52848
52975
|
mm: translator.translate,
|
52849
52976
|
h: translator.translate,
|
52850
52977
|
hh: translator.translate,
|
52851
|
-
d:
|
52978
|
+
d: translator.translate,
|
52852
52979
|
dd: translator.translate,
|
52853
|
-
M:
|
52980
|
+
M: translator.translate,
|
52854
52981
|
MM: translator.translate,
|
52855
|
-
y:
|
52982
|
+
y: translator.translate,
|
52856
52983
|
yy: translator.translate,
|
52857
52984
|
},
|
52858
52985
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
@@ -52889,32 +53016,44 @@ module.exports = __webpack_require__(348);
|
|
52889
53016
|
words: {
|
52890
53017
|
//Different grammatical cases
|
52891
53018
|
ss: ['секунда', 'секунде', 'секунди'],
|
52892
|
-
m: ['један минут', '
|
52893
|
-
mm: ['минут', '
|
53019
|
+
m: ['један минут', 'једног минута'],
|
53020
|
+
mm: ['минут', 'минута', 'минута'],
|
52894
53021
|
h: ['један сат', 'једног сата'],
|
52895
53022
|
hh: ['сат', 'сата', 'сати'],
|
53023
|
+
d: ['један дан', 'једног дана'],
|
52896
53024
|
dd: ['дан', 'дана', 'дана'],
|
53025
|
+
M: ['један месец', 'једног месеца'],
|
52897
53026
|
MM: ['месец', 'месеца', 'месеци'],
|
52898
|
-
|
53027
|
+
y: ['једну годину', 'једне године'],
|
53028
|
+
yy: ['годину', 'године', 'година'],
|
52899
53029
|
},
|
52900
53030
|
correctGrammaticalCase: function (number, wordKey) {
|
52901
|
-
|
52902
|
-
|
52903
|
-
|
52904
|
-
|
52905
|
-
|
53031
|
+
if (
|
53032
|
+
number % 10 >= 1 &&
|
53033
|
+
number % 10 <= 4 &&
|
53034
|
+
(number % 100 < 10 || number % 100 >= 20)
|
53035
|
+
) {
|
53036
|
+
return number % 10 === 1 ? wordKey[0] : wordKey[1];
|
53037
|
+
}
|
53038
|
+
return wordKey[2];
|
52906
53039
|
},
|
52907
|
-
translate: function (number, withoutSuffix, key) {
|
52908
|
-
var wordKey = translator.words[key]
|
53040
|
+
translate: function (number, withoutSuffix, key, isFuture) {
|
53041
|
+
var wordKey = translator.words[key],
|
53042
|
+
word;
|
53043
|
+
|
52909
53044
|
if (key.length === 1) {
|
52910
|
-
|
52911
|
-
|
52912
|
-
return
|
52913
|
-
|
52914
|
-
|
52915
|
-
|
52916
|
-
|
53045
|
+
// Nominativ
|
53046
|
+
if (key === 'y' && withoutSuffix) return 'једна година';
|
53047
|
+
return isFuture || withoutSuffix ? wordKey[0] : wordKey[1];
|
53048
|
+
}
|
53049
|
+
|
53050
|
+
word = translator.correctGrammaticalCase(number, wordKey);
|
53051
|
+
// Nominativ
|
53052
|
+
if (key === 'yy' && withoutSuffix && word === 'годину') {
|
53053
|
+
return number + ' година';
|
52917
53054
|
}
|
53055
|
+
|
53056
|
+
return number + ' ' + word;
|
52918
53057
|
},
|
52919
53058
|
};
|
52920
53059
|
|
@@ -52922,9 +53061,8 @@ module.exports = __webpack_require__(348);
|
|
52922
53061
|
months: 'јануар_фебруар_март_април_мај_јун_јул_август_септембар_октобар_новембар_децембар'.split(
|
52923
53062
|
'_'
|
52924
53063
|
),
|
52925
|
-
monthsShort:
|
52926
|
-
'_'
|
52927
|
-
),
|
53064
|
+
monthsShort:
|
53065
|
+
'јан._феб._мар._апр._мај_јун_јул_авг._сеп._окт._нов._дец.'.split('_'),
|
52928
53066
|
monthsParseExact: true,
|
52929
53067
|
weekdays: 'недеља_понедељак_уторак_среда_четвртак_петак_субота'.split('_'),
|
52930
53068
|
weekdaysShort: 'нед._пон._уто._сре._чет._пет._суб.'.split('_'),
|
@@ -52980,11 +53118,11 @@ module.exports = __webpack_require__(348);
|
|
52980
53118
|
mm: translator.translate,
|
52981
53119
|
h: translator.translate,
|
52982
53120
|
hh: translator.translate,
|
52983
|
-
d:
|
53121
|
+
d: translator.translate,
|
52984
53122
|
dd: translator.translate,
|
52985
|
-
M:
|
53123
|
+
M: translator.translate,
|
52986
53124
|
MM: translator.translate,
|
52987
|
-
y:
|
53125
|
+
y: translator.translate,
|
52988
53126
|
yy: translator.translate,
|
52989
53127
|
},
|
52990
53128
|
dayOfMonthOrdinalParse: /\d{1,2}\./,
|
@@ -53021,9 +53159,10 @@ module.exports = __webpack_require__(348);
|
|
53021
53159
|
'_'
|
53022
53160
|
),
|
53023
53161
|
monthsShort: 'Bhi_Ina_Inu_Mab_Ink_Inh_Kho_Igc_Iny_Imp_Lwe_Igo'.split('_'),
|
53024
|
-
weekdays:
|
53025
|
-
'
|
53026
|
-
|
53162
|
+
weekdays:
|
53163
|
+
'Lisontfo_Umsombuluko_Lesibili_Lesitsatfu_Lesine_Lesihlanu_Umgcibelo'.split(
|
53164
|
+
'_'
|
53165
|
+
),
|
53027
53166
|
weekdaysShort: 'Lis_Umb_Lsb_Les_Lsi_Lsh_Umg'.split('_'),
|
53028
53167
|
weekdaysMin: 'Li_Us_Lb_Lt_Ls_Lh_Ug'.split('_'),
|
53029
53168
|
weekdaysParseExact: true,
|
@@ -53204,9 +53343,10 @@ module.exports = __webpack_require__(348);
|
|
53204
53343
|
'_'
|
53205
53344
|
),
|
53206
53345
|
monthsShort: 'Jan_Feb_Mac_Apr_Mei_Jun_Jul_Ago_Sep_Okt_Nov_Des'.split('_'),
|
53207
|
-
weekdays:
|
53208
|
-
'
|
53209
|
-
|
53346
|
+
weekdays:
|
53347
|
+
'Jumapili_Jumatatu_Jumanne_Jumatano_Alhamisi_Ijumaa_Jumamosi'.split(
|
53348
|
+
'_'
|
53349
|
+
),
|
53210
53350
|
weekdaysShort: 'Jpl_Jtat_Jnne_Jtan_Alh_Ijm_Jmos'.split('_'),
|
53211
53351
|
weekdaysMin: 'J2_J3_J4_J5_Al_Ij_J1'.split('_'),
|
53212
53352
|
weekdaysParseExact: true,
|
@@ -53298,12 +53438,14 @@ module.exports = __webpack_require__(348);
|
|
53298
53438
|
months: 'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(
|
53299
53439
|
'_'
|
53300
53440
|
),
|
53301
|
-
monthsShort:
|
53302
|
-
'_'
|
53303
|
-
|
53304
|
-
|
53305
|
-
|
53306
|
-
|
53441
|
+
monthsShort:
|
53442
|
+
'ஜனவரி_பிப்ரவரி_மார்ச்_ஏப்ரல்_மே_ஜூன்_ஜூலை_ஆகஸ்ட்_செப்டெம்பர்_அக்டோபர்_நவம்பர்_டிசம்பர்'.split(
|
53443
|
+
'_'
|
53444
|
+
),
|
53445
|
+
weekdays:
|
53446
|
+
'ஞாயிற்றுக்கிழமை_திங்கட்கிழமை_செவ்வாய்கிழமை_புதன்கிழமை_வியாழக்கிழமை_வெள்ளிக்கிழமை_சனிக்கிழமை'.split(
|
53447
|
+
'_'
|
53448
|
+
),
|
53307
53449
|
weekdaysShort: 'ஞாயிறு_திங்கள்_செவ்வாய்_புதன்_வியாழன்_வெள்ளி_சனி'.split(
|
53308
53450
|
'_'
|
53309
53451
|
),
|
@@ -53418,13 +53560,15 @@ module.exports = __webpack_require__(348);
|
|
53418
53560
|
months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split(
|
53419
53561
|
'_'
|
53420
53562
|
),
|
53421
|
-
monthsShort:
|
53422
|
-
'_'
|
53423
|
-
|
53563
|
+
monthsShort:
|
53564
|
+
'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split(
|
53565
|
+
'_'
|
53566
|
+
),
|
53424
53567
|
monthsParseExact: true,
|
53425
|
-
weekdays:
|
53426
|
-
'_'
|
53427
|
-
|
53568
|
+
weekdays:
|
53569
|
+
'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split(
|
53570
|
+
'_'
|
53571
|
+
),
|
53428
53572
|
weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
|
53429
53573
|
weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
|
53430
53574
|
longDateFormat: {
|
@@ -53630,9 +53774,10 @@ module.exports = __webpack_require__(348);
|
|
53630
53774
|
format: 'январи_феврали_марти_апрели_майи_июни_июли_августи_сентябри_октябри_ноябри_декабри'.split(
|
53631
53775
|
'_'
|
53632
53776
|
),
|
53633
|
-
standalone:
|
53634
|
-
'_'
|
53635
|
-
|
53777
|
+
standalone:
|
53778
|
+
'январ_феврал_март_апрел_май_июн_июл_август_сентябр_октябр_ноябр_декабр'.split(
|
53779
|
+
'_'
|
53780
|
+
),
|
53636
53781
|
},
|
53637
53782
|
monthsShort: 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек'.split('_'),
|
53638
53783
|
weekdays: 'якшанбе_душанбе_сешанбе_чоршанбе_панҷшанбе_ҷумъа_шанбе'.split(
|
@@ -53736,9 +53881,10 @@ module.exports = __webpack_require__(348);
|
|
53736
53881
|
months: 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'.split(
|
53737
53882
|
'_'
|
53738
53883
|
),
|
53739
|
-
monthsShort:
|
53740
|
-
'_'
|
53741
|
-
|
53884
|
+
monthsShort:
|
53885
|
+
'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'.split(
|
53886
|
+
'_'
|
53887
|
+
),
|
53742
53888
|
monthsParseExact: true,
|
53743
53889
|
weekdays: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์'.split('_'),
|
53744
53890
|
weekdaysShort: 'อาทิตย์_จันทร์_อังคาร_พุธ_พฤหัส_ศุกร์_เสาร์'.split('_'), // yes, three characters difference
|
@@ -54059,19 +54205,18 @@ module.exports = __webpack_require__(348);
|
|
54059
54205
|
months: 'tera’ jar wa’_tera’ jar cha’_tera’ jar wej_tera’ jar loS_tera’ jar vagh_tera’ jar jav_tera’ jar Soch_tera’ jar chorgh_tera’ jar Hut_tera’ jar wa’maH_tera’ jar wa’maH wa’_tera’ jar wa’maH cha’'.split(
|
54060
54206
|
'_'
|
54061
54207
|
),
|
54062
|
-
monthsShort:
|
54063
|
-
'
|
54064
|
-
|
54208
|
+
monthsShort:
|
54209
|
+
'jar wa’_jar cha’_jar wej_jar loS_jar vagh_jar jav_jar Soch_jar chorgh_jar Hut_jar wa’maH_jar wa’maH wa’_jar wa’maH cha’'.split(
|
54210
|
+
'_'
|
54211
|
+
),
|
54065
54212
|
monthsParseExact: true,
|
54066
54213
|
weekdays: 'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split(
|
54067
54214
|
'_'
|
54068
54215
|
),
|
54069
|
-
weekdaysShort:
|
54070
|
-
'_'
|
54071
|
-
|
54072
|
-
|
54073
|
-
'_'
|
54074
|
-
),
|
54216
|
+
weekdaysShort:
|
54217
|
+
'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),
|
54218
|
+
weekdaysMin:
|
54219
|
+
'lojmItjaj_DaSjaj_povjaj_ghItlhjaj_loghjaj_buqjaj_ghInjaj'.split('_'),
|
54075
54220
|
longDateFormat: {
|
54076
54221
|
LT: 'HH:mm',
|
54077
54222
|
LTS: 'HH:mm:ss',
|
@@ -54163,7 +54308,7 @@ module.exports = __webpack_require__(348);
|
|
54163
54308
|
weekdays: 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi'.split(
|
54164
54309
|
'_'
|
54165
54310
|
),
|
54166
|
-
weekdaysShort: '
|
54311
|
+
weekdaysShort: 'Paz_Pzt_Sal_Çar_Per_Cum_Cmt'.split('_'),
|
54167
54312
|
weekdaysMin: 'Pz_Pt_Sa_Ça_Pe_Cu_Ct'.split('_'),
|
54168
54313
|
meridiem: function (hours, minutes, isLower) {
|
54169
54314
|
if (hours < 12) {
|
@@ -54364,9 +54509,10 @@ module.exports = __webpack_require__(348);
|
|
54364
54509
|
months: 'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split(
|
54365
54510
|
'_'
|
54366
54511
|
),
|
54367
|
-
monthsShort:
|
54368
|
-
'_'
|
54369
|
-
|
54512
|
+
monthsShort:
|
54513
|
+
'ⵉⵏⵏⴰⵢⵔ_ⴱⵕⴰⵢⵕ_ⵎⴰⵕⵚ_ⵉⴱⵔⵉⵔ_ⵎⴰⵢⵢⵓ_ⵢⵓⵏⵢⵓ_ⵢⵓⵍⵢⵓⵣ_ⵖⵓⵛⵜ_ⵛⵓⵜⴰⵏⴱⵉⵔ_ⴽⵟⵓⴱⵕ_ⵏⵓⵡⴰⵏⴱⵉⵔ_ⴷⵓⵊⵏⴱⵉⵔ'.split(
|
54514
|
+
'_'
|
54515
|
+
),
|
54370
54516
|
weekdays: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
|
54371
54517
|
weekdaysShort: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
|
54372
54518
|
weekdaysMin: 'ⴰⵙⴰⵎⴰⵙ_ⴰⵢⵏⴰⵙ_ⴰⵙⵉⵏⴰⵙ_ⴰⴽⵔⴰⵙ_ⴰⴽⵡⴰⵙ_ⴰⵙⵉⵎⵡⴰⵙ_ⴰⵙⵉⴹⵢⴰⵙ'.split('_'),
|
@@ -54433,9 +54579,10 @@ module.exports = __webpack_require__(348);
|
|
54433
54579
|
months: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split(
|
54434
54580
|
'_'
|
54435
54581
|
),
|
54436
|
-
monthsShort:
|
54437
|
-
'
|
54438
|
-
|
54582
|
+
monthsShort:
|
54583
|
+
'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split(
|
54584
|
+
'_'
|
54585
|
+
),
|
54439
54586
|
weekdays: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
|
54440
54587
|
weekdaysShort: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
|
54441
54588
|
weekdaysMin: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'),
|
@@ -54502,9 +54649,10 @@ module.exports = __webpack_require__(348);
|
|
54502
54649
|
months: 'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
|
54503
54650
|
'_'
|
54504
54651
|
),
|
54505
|
-
monthsShort:
|
54506
|
-
'_'
|
54507
|
-
|
54652
|
+
monthsShort:
|
54653
|
+
'يانۋار_فېۋرال_مارت_ئاپرېل_ماي_ئىيۇن_ئىيۇل_ئاۋغۇست_سېنتەبىر_ئۆكتەبىر_نويابىر_دېكابىر'.split(
|
54654
|
+
'_'
|
54655
|
+
),
|
54508
54656
|
weekdays: 'يەكشەنبە_دۈشەنبە_سەيشەنبە_چارشەنبە_پەيشەنبە_جۈمە_شەنبە'.split(
|
54509
54657
|
'_'
|
54510
54658
|
),
|
@@ -54652,15 +54800,18 @@ module.exports = __webpack_require__(348);
|
|
54652
54800
|
}
|
54653
54801
|
function weekdaysCaseReplace(m, format) {
|
54654
54802
|
var weekdays = {
|
54655
|
-
nominative:
|
54656
|
-
'_'
|
54657
|
-
|
54658
|
-
|
54659
|
-
|
54660
|
-
|
54661
|
-
|
54662
|
-
|
54663
|
-
|
54803
|
+
nominative:
|
54804
|
+
'неділя_понеділок_вівторок_середа_четвер_п’ятниця_субота'.split(
|
54805
|
+
'_'
|
54806
|
+
),
|
54807
|
+
accusative:
|
54808
|
+
'неділю_понеділок_вівторок_середу_четвер_п’ятницю_суботу'.split(
|
54809
|
+
'_'
|
54810
|
+
),
|
54811
|
+
genitive:
|
54812
|
+
'неділі_понеділка_вівторка_середи_четверга_п’ятниці_суботи'.split(
|
54813
|
+
'_'
|
54814
|
+
),
|
54664
54815
|
},
|
54665
54816
|
nounCase;
|
54666
54817
|
|
@@ -54691,9 +54842,10 @@ module.exports = __webpack_require__(348);
|
|
54691
54842
|
format: 'січня_лютого_березня_квітня_травня_червня_липня_серпня_вересня_жовтня_листопада_грудня'.split(
|
54692
54843
|
'_'
|
54693
54844
|
),
|
54694
|
-
standalone:
|
54695
|
-
'_'
|
54696
|
-
|
54845
|
+
standalone:
|
54846
|
+
'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень'.split(
|
54847
|
+
'_'
|
54848
|
+
),
|
54697
54849
|
},
|
54698
54850
|
monthsShort: 'січ_лют_бер_квіт_трав_черв_лип_серп_вер_жовт_лист_груд'.split(
|
54699
54851
|
'_'
|
@@ -54973,9 +55125,10 @@ module.exports = __webpack_require__(348);
|
|
54973
55125
|
'_'
|
54974
55126
|
),
|
54975
55127
|
monthsShort: 'Yan_Fev_Mar_Apr_May_Iyun_Iyul_Avg_Sen_Okt_Noy_Dek'.split('_'),
|
54976
|
-
weekdays:
|
54977
|
-
'
|
54978
|
-
|
55128
|
+
weekdays:
|
55129
|
+
'Yakshanba_Dushanba_Seshanba_Chorshanba_Payshanba_Juma_Shanba'.split(
|
55130
|
+
'_'
|
55131
|
+
),
|
54979
55132
|
weekdaysShort: 'Yak_Dush_Sesh_Chor_Pay_Jum_Shan'.split('_'),
|
54980
55133
|
weekdaysMin: 'Ya_Du_Se_Cho_Pa_Ju_Sha'.split('_'),
|
54981
55134
|
longDateFormat: {
|
@@ -55042,9 +55195,10 @@ module.exports = __webpack_require__(348);
|
|
55042
55195
|
months: 'tháng 1_tháng 2_tháng 3_tháng 4_tháng 5_tháng 6_tháng 7_tháng 8_tháng 9_tháng 10_tháng 11_tháng 12'.split(
|
55043
55196
|
'_'
|
55044
55197
|
),
|
55045
|
-
monthsShort:
|
55046
|
-
'
|
55047
|
-
|
55198
|
+
monthsShort:
|
55199
|
+
'Thg 01_Thg 02_Thg 03_Thg 04_Thg 05_Thg 06_Thg 07_Thg 08_Thg 09_Thg 10_Thg 11_Thg 12'.split(
|
55200
|
+
'_'
|
55201
|
+
),
|
55048
55202
|
monthsParseExact: true,
|
55049
55203
|
weekdays: 'chủ nhật_thứ hai_thứ ba_thứ tư_thứ năm_thứ sáu_thứ bảy'.split(
|
55050
55204
|
'_'
|
@@ -55136,13 +55290,15 @@ module.exports = __webpack_require__(348);
|
|
55136
55290
|
months: 'J~áñúá~rý_F~ébrú~árý_~Márc~h_Áp~ríl_~Máý_~Júñé~_Júl~ý_Áú~gúst~_Sép~témb~ér_Ó~ctób~ér_Ñ~óvém~bér_~Décé~mbér'.split(
|
55137
55291
|
'_'
|
55138
55292
|
),
|
55139
|
-
monthsShort:
|
55140
|
-
'_'
|
55141
|
-
|
55293
|
+
monthsShort:
|
55294
|
+
'J~áñ_~Féb_~Már_~Ápr_~Máý_~Júñ_~Júl_~Áúg_~Sép_~Óct_~Ñóv_~Déc'.split(
|
55295
|
+
'_'
|
55296
|
+
),
|
55142
55297
|
monthsParseExact: true,
|
55143
|
-
weekdays:
|
55144
|
-
'_'
|
55145
|
-
|
55298
|
+
weekdays:
|
55299
|
+
'S~úñdá~ý_Mó~ñdáý~_Túé~sdáý~_Wéd~ñésd~áý_T~húrs~dáý_~Fríd~áý_S~átúr~dáý'.split(
|
55300
|
+
'_'
|
55301
|
+
),
|
55146
55302
|
weekdaysShort: 'S~úñ_~Móñ_~Túé_~Wéd_~Thú_~Frí_~Sát'.split('_'),
|
55147
55303
|
weekdaysMin: 'S~ú_Mó~_Tú_~Wé_T~h_Fr~_Sá'.split('_'),
|
55148
55304
|
weekdaysParseExact: true,
|
@@ -60376,6 +60532,7 @@ var Input = /** @class */ (function (_super) {
|
|
60376
60532
|
}
|
60377
60533
|
};
|
60378
60534
|
Input.prototype.render = function () {
|
60535
|
+
var _a;
|
60379
60536
|
var classes = classnames_1.default('sd-input', {
|
60380
60537
|
'sd-input--inline-label': this.props.inlineLabel,
|
60381
60538
|
'sd-input--required': this.props.required,
|
@@ -60387,7 +60544,7 @@ var Input = /** @class */ (function (_super) {
|
|
60387
60544
|
});
|
60388
60545
|
return (React.createElement("div", { className: classes },
|
60389
60546
|
React.createElement("label", { className: labelClasses, htmlFor: this.htmlId, id: this.htmlId + 'label' }, this.props.label),
|
60390
|
-
React.createElement("input", { className: 'sd-input__input', type: 'text', id: this.htmlId, value: this.state.value, "aria-label": this.props.label, "aria-describedby": this.htmlId + 'label', onChange: this.handleChange, disabled: this.props.disabled }),
|
60547
|
+
React.createElement("input", { className: 'sd-input__input', type: (_a = this.props.type) !== null && _a !== void 0 ? _a : 'text', id: this.htmlId, value: this.state.value, "aria-label": this.props.label, "aria-describedby": this.htmlId + 'label', onChange: this.handleChange, disabled: this.props.disabled }),
|
60391
60548
|
this.props.maxLength ?
|
60392
60549
|
React.createElement("div", { className: 'sd-input__char-count' },
|
60393
60550
|
this.state.value.length,
|
@@ -72195,14 +72352,14 @@ var React = __importStar(__webpack_require__(1));
|
|
72195
72352
|
var classnames_1 = __importDefault(__webpack_require__(2));
|
72196
72353
|
exports.Tag = function (_a) {
|
72197
72354
|
var _b;
|
72198
|
-
var text = _a.text, keyValue = _a.keyValue, shade = _a.shade, shape = _a.shape, readOnly = _a.readOnly,
|
72355
|
+
var text = _a.text, keyValue = _a.keyValue, shade = _a.shade, shape = _a.shape, readOnly = _a.readOnly, onRemove = _a.onRemove;
|
72199
72356
|
var classes = classnames_1.default('tag-label', (_b = {},
|
72200
72357
|
_b["tag-label--" + shade] = shade && shade !== 'light',
|
72201
72358
|
_b['tag-label--square'] = shape === 'square',
|
72202
72359
|
_b));
|
72203
72360
|
return (React.createElement("span", { className: classes, key: keyValue },
|
72204
72361
|
text,
|
72205
|
-
!readOnly ? React.createElement("button", { className: 'tag-label__remove', onClick:
|
72362
|
+
!readOnly ? React.createElement("button", { className: 'tag-label__remove', onClick: onRemove },
|
72206
72363
|
React.createElement("i", { className: 'icon-close-small' })) : null));
|
72207
72364
|
};
|
72208
72365
|
|
@@ -98610,7 +98767,7 @@ function sdCheck($parse) {
|
|
98610
98767
|
value = ngModel.$viewValue === attrs.ngTrueValue;
|
98611
98768
|
}
|
98612
98769
|
|
98613
|
-
if (attrs.disabled) {
|
98770
|
+
if (attrs.disabled || attrs.disabled === '') {
|
98614
98771
|
checkbox.addClass('sd-checkbox sd-checkbox--disabled');
|
98615
98772
|
label.addClass('sd-label--disabled');
|
98616
98773
|
}
|