@nocobase/plugin-client 0.17.0-alpha.7 → 0.18.0-alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/externalVersion.js +4 -4
- package/dist/locale/antd/eu_ES.js +1 -1
- package/dist/locale/antd/ko_KR.js +1 -1
- package/dist/locale/antd/my_MM.js +1 -1
- package/dist/locale/antd/pl_PL.js +1 -1
- package/dist/locale/antd/tr_TR.js +1 -1
- package/dist/locale/en_US.js +5 -1
- package/dist/locale/pt_BR.js +0 -1
- package/dist/locale/zh-CN.js +8 -1
- package/dist/node_modules/cronstrue/dist/cronstrue-i18n.js +657 -28
- package/dist/node_modules/cronstrue/dist/cronstrue-i18n.min.js +1 -1
- package/dist/node_modules/cronstrue/dist/cronstrue.js +1 -1
- package/dist/node_modules/cronstrue/dist/cronstrue.min.js +1 -1
- package/dist/node_modules/cronstrue/dist/expressionDescriptor.d.ts +1 -1
- package/dist/node_modules/cronstrue/dist/i18n/allLocales.d.ts +3 -0
- package/dist/node_modules/cronstrue/dist/i18n/locales/bg.d.ts +56 -0
- package/dist/node_modules/cronstrue/dist/i18n/locales/my.d.ts +56 -0
- package/dist/node_modules/cronstrue/dist/i18n/locales/pt_BR.d.ts +2 -2
- package/dist/node_modules/cronstrue/dist/i18n/locales/vi.d.ts +56 -0
- package/dist/node_modules/cronstrue/dist/options.d.ts +1 -0
- package/dist/node_modules/cronstrue/locales/ar.js +1 -1
- package/dist/node_modules/cronstrue/locales/ar.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/be.js +1 -1
- package/dist/node_modules/cronstrue/locales/be.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/bg.js +290 -0
- package/dist/node_modules/cronstrue/locales/bg.min.js +1 -0
- package/dist/node_modules/cronstrue/locales/ca.js +1 -1
- package/dist/node_modules/cronstrue/locales/ca.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/es.js +1 -1
- package/dist/node_modules/cronstrue/locales/es.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/fi.js +1 -1
- package/dist/node_modules/cronstrue/locales/fi.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/hu.js +1 -1
- package/dist/node_modules/cronstrue/locales/hu.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/id.js +1 -1
- package/dist/node_modules/cronstrue/locales/id.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/ja.js +1 -1
- package/dist/node_modules/cronstrue/locales/ja.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/ko.js +4 -4
- package/dist/node_modules/cronstrue/locales/ko.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/my.js +287 -0
- package/dist/node_modules/cronstrue/locales/my.min.js +1 -0
- package/dist/node_modules/cronstrue/locales/nb.js +1 -1
- package/dist/node_modules/cronstrue/locales/nb.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/nl.js +1 -1
- package/dist/node_modules/cronstrue/locales/nl.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/pt_BR.js +5 -5
- package/dist/node_modules/cronstrue/locales/pt_BR.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/sw.js +1 -1
- package/dist/node_modules/cronstrue/locales/sw.min.js +1 -1
- package/dist/node_modules/cronstrue/locales/vi.js +287 -0
- package/dist/node_modules/cronstrue/locales/vi.min.js +1 -0
- package/dist/node_modules/cronstrue/locales/zh_TW.js +1 -1
- package/dist/node_modules/cronstrue/locales/zh_TW.min.js +1 -1
- package/dist/node_modules/cronstrue/package.json +1 -1
- package/dist/server/migrations/20230620203216-admin-ui-schema-uid.js +5 -1
- package/dist/server/migrations/20231215215247-admin-menu-uid.d.ts +4 -0
- package/dist/server/migrations/20231215215247-admin-menu-uid.js +75 -0
- package/dist/server/server.d.ts +1 -0
- package/dist/server/server.js +17 -20
- package/package.json +2 -2
|
@@ -35,9 +35,24 @@ var CronParser = (function () {
|
|
|
35
35
|
};
|
|
36
36
|
CronParser.prototype.extractParts = function (expression) {
|
|
37
37
|
if (!this.expression) {
|
|
38
|
-
throw new Error("
|
|
38
|
+
throw new Error("cron expression is empty");
|
|
39
39
|
}
|
|
40
40
|
var parsed = expression.trim().split(/[ ]+/);
|
|
41
|
+
for (var i = 0; i < parsed.length; i++) {
|
|
42
|
+
if (parsed[i].includes(",")) {
|
|
43
|
+
var arrayElement = parsed[i]
|
|
44
|
+
.split(",")
|
|
45
|
+
.map(function (item) { return item.trim(); })
|
|
46
|
+
.filter(function (item) { return item !== ""; })
|
|
47
|
+
.map(function (item) { return (!isNaN(Number(item)) ? Number(item) : item); })
|
|
48
|
+
.filter(function (item) { return item !== null && item !== ""; });
|
|
49
|
+
if (arrayElement.length === 0) {
|
|
50
|
+
arrayElement.push("*");
|
|
51
|
+
}
|
|
52
|
+
arrayElement.sort(function (a, b) { return (a !== null && b !== null ? a - b : 0); });
|
|
53
|
+
parsed[i] = arrayElement.map(function (item) { return (item !== null ? item.toString() : ""); }).join(",");
|
|
54
|
+
}
|
|
55
|
+
}
|
|
41
56
|
if (parsed.length < 5) {
|
|
42
57
|
throw new Error("Expression has only ".concat(parsed.length, " part").concat(parsed.length == 1 ? "" : "s", ". At least 5 parts are required."));
|
|
43
58
|
}
|
|
@@ -236,7 +251,7 @@ var ExpressionDescriptor = (function () {
|
|
|
236
251
|
}
|
|
237
252
|
}
|
|
238
253
|
ExpressionDescriptor.toString = function (expression, _a) {
|
|
239
|
-
var _b = _a === void 0 ? {} : _a, _c = _b.throwExceptionOnParseError, throwExceptionOnParseError = _c === void 0 ? true : _c, _d = _b.verbose, verbose = _d === void 0 ? false : _d, _e = _b.dayOfWeekStartIndexZero, dayOfWeekStartIndexZero = _e === void 0 ? true : _e, _f = _b.monthStartIndexZero, monthStartIndexZero = _f === void 0 ? false : _f, use24HourTimeFormat = _b.use24HourTimeFormat, _g = _b.locale, locale = _g === void 0 ? null : _g;
|
|
254
|
+
var _b = _a === void 0 ? {} : _a, _c = _b.throwExceptionOnParseError, throwExceptionOnParseError = _c === void 0 ? true : _c, _d = _b.verbose, verbose = _d === void 0 ? false : _d, _e = _b.dayOfWeekStartIndexZero, dayOfWeekStartIndexZero = _e === void 0 ? true : _e, _f = _b.monthStartIndexZero, monthStartIndexZero = _f === void 0 ? false : _f, use24HourTimeFormat = _b.use24HourTimeFormat, _g = _b.locale, locale = _g === void 0 ? null : _g, _h = _b.tzOffset, tzOffset = _h === void 0 ? 0 : _h;
|
|
240
255
|
var options = {
|
|
241
256
|
throwExceptionOnParseError: throwExceptionOnParseError,
|
|
242
257
|
verbose: verbose,
|
|
@@ -244,6 +259,7 @@ var ExpressionDescriptor = (function () {
|
|
|
244
259
|
monthStartIndexZero: monthStartIndexZero,
|
|
245
260
|
use24HourTimeFormat: use24HourTimeFormat,
|
|
246
261
|
locale: locale,
|
|
262
|
+
tzOffset: tzOffset
|
|
247
263
|
};
|
|
248
264
|
var descripter = new ExpressionDescriptor(expression, options);
|
|
249
265
|
return descripter.getFullDescription();
|
|
@@ -414,9 +430,26 @@ var ExpressionDescriptor = (function () {
|
|
|
414
430
|
else if (s.indexOf("L") > -1) {
|
|
415
431
|
exp = exp.replace("L", "");
|
|
416
432
|
}
|
|
433
|
+
var parsedExp = parseInt(exp);
|
|
434
|
+
if (_this.options.tzOffset) {
|
|
435
|
+
var hourExpression = _this.expressionParts[2];
|
|
436
|
+
var hour = parseInt(hourExpression) + (_this.options.tzOffset ? _this.options.tzOffset : 0);
|
|
437
|
+
if (hour >= 24) {
|
|
438
|
+
parsedExp++;
|
|
439
|
+
}
|
|
440
|
+
else if (hour < 0) {
|
|
441
|
+
parsedExp--;
|
|
442
|
+
}
|
|
443
|
+
if (parsedExp > 6) {
|
|
444
|
+
parsedExp = 0;
|
|
445
|
+
}
|
|
446
|
+
else if (parsedExp < 0) {
|
|
447
|
+
parsedExp = 6;
|
|
448
|
+
}
|
|
449
|
+
}
|
|
417
450
|
var description = _this.i18n.daysOfTheWeekInCase
|
|
418
|
-
? _this.i18n.daysOfTheWeekInCase(form)[
|
|
419
|
-
: daysOfWeekNames[
|
|
451
|
+
? _this.i18n.daysOfTheWeekInCase(form)[parsedExp]
|
|
452
|
+
: daysOfWeekNames[parsedExp];
|
|
420
453
|
if (s.indexOf("#") > -1) {
|
|
421
454
|
var dayOfWeekOfMonthDescription = null;
|
|
422
455
|
var dayOfWeekOfMonthNumber = s.substring(s.indexOf("#") + 1);
|
|
@@ -636,7 +669,31 @@ var ExpressionDescriptor = (function () {
|
|
|
636
669
|
return description;
|
|
637
670
|
};
|
|
638
671
|
ExpressionDescriptor.prototype.formatTime = function (hourExpression, minuteExpression, secondExpression) {
|
|
639
|
-
var
|
|
672
|
+
var hourOffset = 0;
|
|
673
|
+
var minuteOffset = 0;
|
|
674
|
+
if (this.options.tzOffset) {
|
|
675
|
+
hourOffset = this.options.tzOffset > 0 ? Math.floor(this.options.tzOffset) : Math.ceil(this.options.tzOffset);
|
|
676
|
+
minuteOffset = (parseFloat((this.options.tzOffset % 1).toFixed(2)));
|
|
677
|
+
if (minuteOffset != 0) {
|
|
678
|
+
minuteOffset *= 60;
|
|
679
|
+
}
|
|
680
|
+
}
|
|
681
|
+
var hour = parseInt(hourExpression) + (hourOffset);
|
|
682
|
+
var minute = parseInt(minuteExpression) + (minuteOffset);
|
|
683
|
+
if (minute >= 60) {
|
|
684
|
+
minute -= 60;
|
|
685
|
+
hour += 1;
|
|
686
|
+
}
|
|
687
|
+
else if (minute < 0) {
|
|
688
|
+
minute += 60;
|
|
689
|
+
hour -= 1;
|
|
690
|
+
}
|
|
691
|
+
if (hour >= 24) {
|
|
692
|
+
hour = hour - 24;
|
|
693
|
+
}
|
|
694
|
+
else if (hour < 0) {
|
|
695
|
+
hour = 24 + hour;
|
|
696
|
+
}
|
|
640
697
|
var period = "";
|
|
641
698
|
var setPeriodBeforeTime = false;
|
|
642
699
|
if (!this.options.use24HourTimeFormat) {
|
|
@@ -649,7 +706,6 @@ var ExpressionDescriptor = (function () {
|
|
|
649
706
|
hour = 12;
|
|
650
707
|
}
|
|
651
708
|
}
|
|
652
|
-
var minute = minuteExpression;
|
|
653
709
|
var second = "";
|
|
654
710
|
if (secondExpression) {
|
|
655
711
|
second = ":".concat(("00" + secondExpression).substring(secondExpression.length));
|
|
@@ -681,7 +737,7 @@ exports.ExpressionDescriptor = ExpressionDescriptor;
|
|
|
681
737
|
|
|
682
738
|
|
|
683
739
|
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
684
|
-
exports.ar = exports.th = exports.af = exports.hu = exports.be = exports.ca = exports.fa = exports.sw = exports.sl = exports.fi = exports.sk = exports.cs = exports.he = exports.ja = exports.zh_TW = exports.zh_CN = exports.uk = exports.tr = exports.ru = exports.ro = exports.pt_PT = exports.pt_BR = exports.pl = exports.sv = exports.nb = exports.nl = exports.ko = exports.id = exports.it = exports.fr = exports.es = exports.de = exports.da = exports.en = void 0;
|
|
740
|
+
exports.bg = exports.my = exports.vi = exports.ar = exports.th = exports.af = exports.hu = exports.be = exports.ca = exports.fa = exports.sw = exports.sl = exports.fi = exports.sk = exports.cs = exports.he = exports.ja = exports.zh_TW = exports.zh_CN = exports.uk = exports.tr = exports.ru = exports.ro = exports.pt_PT = exports.pt_BR = exports.pl = exports.sv = exports.nb = exports.nl = exports.ko = exports.id = exports.it = exports.fr = exports.es = exports.de = exports.da = exports.en = void 0;
|
|
685
741
|
var en_1 = __webpack_require__(751);
|
|
686
742
|
Object.defineProperty(exports, "en", ({ enumerable: true, get: function () { return en_1.en; } }));
|
|
687
743
|
var da_1 = __webpack_require__(904);
|
|
@@ -750,6 +806,12 @@ var th_1 = __webpack_require__(312);
|
|
|
750
806
|
Object.defineProperty(exports, "th", ({ enumerable: true, get: function () { return th_1.th; } }));
|
|
751
807
|
var ar_1 = __webpack_require__(935);
|
|
752
808
|
Object.defineProperty(exports, "ar", ({ enumerable: true, get: function () { return ar_1.ar; } }));
|
|
809
|
+
var vi_1 = __webpack_require__(533);
|
|
810
|
+
Object.defineProperty(exports, "vi", ({ enumerable: true, get: function () { return vi_1.vi; } }));
|
|
811
|
+
var my_1 = __webpack_require__(863);
|
|
812
|
+
Object.defineProperty(exports, "my", ({ enumerable: true, get: function () { return my_1.my; } }));
|
|
813
|
+
var bg_1 = __webpack_require__(431);
|
|
814
|
+
Object.defineProperty(exports, "bg", ({ enumerable: true, get: function () { return bg_1.bg; } }));
|
|
753
815
|
|
|
754
816
|
|
|
755
817
|
/***/ }),
|
|
@@ -988,7 +1050,7 @@ var ar = (function () {
|
|
|
988
1050
|
return null;
|
|
989
1051
|
};
|
|
990
1052
|
ar.prototype.use24HourTimeFormatByDefault = function () {
|
|
991
|
-
return
|
|
1053
|
+
return true;
|
|
992
1054
|
};
|
|
993
1055
|
ar.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
994
1056
|
return "حدث خطأ في إنشاء وصف المصطلح٠ تأكد من تركيب مصطلح الكرون";
|
|
@@ -1176,7 +1238,7 @@ var be = (function () {
|
|
|
1176
1238
|
return null;
|
|
1177
1239
|
};
|
|
1178
1240
|
be.prototype.use24HourTimeFormatByDefault = function () {
|
|
1179
|
-
return
|
|
1241
|
+
return false;
|
|
1180
1242
|
};
|
|
1181
1243
|
be.prototype.everyMinute = function () {
|
|
1182
1244
|
return "кожную хвіліну";
|
|
@@ -1337,6 +1399,197 @@ var be = (function () {
|
|
|
1337
1399
|
exports.be = be;
|
|
1338
1400
|
|
|
1339
1401
|
|
|
1402
|
+
/***/ }),
|
|
1403
|
+
|
|
1404
|
+
/***/ 431:
|
|
1405
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
1406
|
+
|
|
1407
|
+
|
|
1408
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
1409
|
+
exports.bg = void 0;
|
|
1410
|
+
var getPhraseByPlural = function (str, words) {
|
|
1411
|
+
var strAsNumber = str != null ? Number(str) : 0;
|
|
1412
|
+
return strAsNumber < 2 ? words[0] : words[1];
|
|
1413
|
+
};
|
|
1414
|
+
var getPhraseByDayOfWeek = function (str, words) {
|
|
1415
|
+
var strAsNumber = str != null ? Number(str) : 0;
|
|
1416
|
+
return words[[1, 0, 0, 1, 0, 0, 1][strAsNumber]];
|
|
1417
|
+
};
|
|
1418
|
+
var getNumberEnding = function (str, gender) {
|
|
1419
|
+
var strAsNumber = str != null ? Number(str) : 1;
|
|
1420
|
+
strAsNumber = Math.max(Math.min(strAsNumber < 10 || (strAsNumber > 20 && strAsNumber % 10 !== 0) ? strAsNumber % 10 : 3, 3), 1) - 1;
|
|
1421
|
+
var genderIndex = ['м', 'ж', 'ср'].indexOf(gender);
|
|
1422
|
+
return ['в', 'р', 'т'][strAsNumber] + ['и', 'а', 'о'][genderIndex];
|
|
1423
|
+
};
|
|
1424
|
+
var bg = (function () {
|
|
1425
|
+
function bg() {
|
|
1426
|
+
}
|
|
1427
|
+
bg.prototype.atX0SecondsPastTheMinuteGt20 = function () {
|
|
1428
|
+
return null;
|
|
1429
|
+
};
|
|
1430
|
+
bg.prototype.atX0MinutesPastTheHourGt20 = function () {
|
|
1431
|
+
return null;
|
|
1432
|
+
};
|
|
1433
|
+
bg.prototype.commaMonthX0ThroughMonthX1 = function () {
|
|
1434
|
+
return null;
|
|
1435
|
+
};
|
|
1436
|
+
bg.prototype.commaYearX0ThroughYearX1 = function () {
|
|
1437
|
+
return null;
|
|
1438
|
+
};
|
|
1439
|
+
bg.prototype.use24HourTimeFormatByDefault = function () {
|
|
1440
|
+
return true;
|
|
1441
|
+
};
|
|
1442
|
+
bg.prototype.everyMinute = function () {
|
|
1443
|
+
return 'всяка минута';
|
|
1444
|
+
};
|
|
1445
|
+
bg.prototype.everyHour = function () {
|
|
1446
|
+
return 'всеки час';
|
|
1447
|
+
};
|
|
1448
|
+
bg.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
1449
|
+
return 'Възникна грешка при генериране на описанието на израза. Проверете синтаксиса на cron израза.';
|
|
1450
|
+
};
|
|
1451
|
+
bg.prototype.atSpace = function () {
|
|
1452
|
+
return 'В ';
|
|
1453
|
+
};
|
|
1454
|
+
bg.prototype.everyMinuteBetweenX0AndX1 = function () {
|
|
1455
|
+
return 'Всяка минута от %s до %s';
|
|
1456
|
+
};
|
|
1457
|
+
bg.prototype.at = function () {
|
|
1458
|
+
return 'В';
|
|
1459
|
+
};
|
|
1460
|
+
bg.prototype.spaceAnd = function () {
|
|
1461
|
+
return ' и';
|
|
1462
|
+
};
|
|
1463
|
+
bg.prototype.everySecond = function () {
|
|
1464
|
+
return 'всяка секунда';
|
|
1465
|
+
};
|
|
1466
|
+
bg.prototype.everyX0Seconds = function (s) {
|
|
1467
|
+
return 'всеки %s секунди';
|
|
1468
|
+
};
|
|
1469
|
+
bg.prototype.secondsX0ThroughX1PastTheMinute = function () {
|
|
1470
|
+
return 'секунди от %s до %s';
|
|
1471
|
+
};
|
|
1472
|
+
bg.prototype.atX0SecondsPastTheMinute = function (s) {
|
|
1473
|
+
return "%s-".concat(getNumberEnding(s, 'ж'), " \u0441\u0435\u043A\u0443\u043D\u0434\u0430");
|
|
1474
|
+
};
|
|
1475
|
+
bg.prototype.everyX0Minutes = function (s) {
|
|
1476
|
+
return 'всеки %s минути';
|
|
1477
|
+
};
|
|
1478
|
+
bg.prototype.minutesX0ThroughX1PastTheHour = function () {
|
|
1479
|
+
return 'минути от %s до %s';
|
|
1480
|
+
};
|
|
1481
|
+
bg.prototype.atX0MinutesPastTheHour = function (s) {
|
|
1482
|
+
return "%s-".concat(getNumberEnding(s, 'ж'), " \u043C\u0438\u043D\u0443\u0442a");
|
|
1483
|
+
};
|
|
1484
|
+
bg.prototype.everyX0Hours = function (s) {
|
|
1485
|
+
return 'всеки %s часа';
|
|
1486
|
+
};
|
|
1487
|
+
bg.prototype.betweenX0AndX1 = function () {
|
|
1488
|
+
return 'от %s до %s';
|
|
1489
|
+
};
|
|
1490
|
+
bg.prototype.atX0 = function () {
|
|
1491
|
+
return 'в %s';
|
|
1492
|
+
};
|
|
1493
|
+
bg.prototype.commaEveryDay = function () {
|
|
1494
|
+
return ', всеки ден';
|
|
1495
|
+
};
|
|
1496
|
+
bg.prototype.commaEveryX0DaysOfTheWeek = function (s) {
|
|
1497
|
+
return getPhraseByPlural(s, [', всеки %s ден от седмицата', ', всеки %s дена от седмицата']);
|
|
1498
|
+
};
|
|
1499
|
+
bg.prototype.commaX0ThroughX1 = function (s) {
|
|
1500
|
+
return ', от %s до %s';
|
|
1501
|
+
};
|
|
1502
|
+
bg.prototype.commaAndX0ThroughX1 = function (s) {
|
|
1503
|
+
return ' и от %s до %s';
|
|
1504
|
+
};
|
|
1505
|
+
bg.prototype.first = function (s) {
|
|
1506
|
+
return getPhraseByDayOfWeek(s, ['первият', 'первата']);
|
|
1507
|
+
};
|
|
1508
|
+
bg.prototype.second = function (s) {
|
|
1509
|
+
return getPhraseByDayOfWeek(s, ['вторият', 'втората']);
|
|
1510
|
+
};
|
|
1511
|
+
bg.prototype.third = function (s) {
|
|
1512
|
+
return getPhraseByDayOfWeek(s, ['третият', 'третата']);
|
|
1513
|
+
};
|
|
1514
|
+
bg.prototype.fourth = function (s) {
|
|
1515
|
+
return getPhraseByDayOfWeek(s, ['четвертият', 'четвертата']);
|
|
1516
|
+
};
|
|
1517
|
+
bg.prototype.fifth = function (s) {
|
|
1518
|
+
return getPhraseByDayOfWeek(s, ['петият', 'петата']);
|
|
1519
|
+
};
|
|
1520
|
+
bg.prototype.commaOnThe = function (s) {
|
|
1521
|
+
return ', ';
|
|
1522
|
+
};
|
|
1523
|
+
bg.prototype.spaceX0OfTheMonth = function () {
|
|
1524
|
+
return ' %s на месеца';
|
|
1525
|
+
};
|
|
1526
|
+
bg.prototype.lastDay = function () {
|
|
1527
|
+
return 'последният ден';
|
|
1528
|
+
};
|
|
1529
|
+
bg.prototype.commaOnTheLastX0OfTheMonth = function (s) {
|
|
1530
|
+
return getPhraseByDayOfWeek(s, [', в последният %s от месеца', ', в последната %s отмесеца']);
|
|
1531
|
+
};
|
|
1532
|
+
bg.prototype.commaOnlyOnX0 = function (s) {
|
|
1533
|
+
return ', %s';
|
|
1534
|
+
};
|
|
1535
|
+
bg.prototype.commaAndOnX0 = function () {
|
|
1536
|
+
return ' и %s';
|
|
1537
|
+
};
|
|
1538
|
+
bg.prototype.commaEveryX0Months = function (s) {
|
|
1539
|
+
return ' всеки %s месеца';
|
|
1540
|
+
};
|
|
1541
|
+
bg.prototype.commaOnlyInMonthX0 = function () {
|
|
1542
|
+
return ', %s';
|
|
1543
|
+
};
|
|
1544
|
+
bg.prototype.commaOnlyInX0 = function () {
|
|
1545
|
+
return ', в %s';
|
|
1546
|
+
};
|
|
1547
|
+
bg.prototype.commaOnTheLastDayOfTheMonth = function () {
|
|
1548
|
+
return ', в последният ден на месеца';
|
|
1549
|
+
};
|
|
1550
|
+
bg.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
|
|
1551
|
+
return ', в последния делничен ден от месеца';
|
|
1552
|
+
};
|
|
1553
|
+
bg.prototype.commaDaysBeforeTheLastDayOfTheMonth = function (s) {
|
|
1554
|
+
return getPhraseByPlural(s, [', %s ден преди края на месеца', ', %s дена преди края на месеца']);
|
|
1555
|
+
};
|
|
1556
|
+
bg.prototype.firstWeekday = function () {
|
|
1557
|
+
return 'първият делничен ден';
|
|
1558
|
+
};
|
|
1559
|
+
bg.prototype.weekdayNearestDayX0 = function () {
|
|
1560
|
+
return 'най-близкият делничен ден до %s число';
|
|
1561
|
+
};
|
|
1562
|
+
bg.prototype.commaOnTheX0OfTheMonth = function () {
|
|
1563
|
+
return ', на %s число от месеца';
|
|
1564
|
+
};
|
|
1565
|
+
bg.prototype.commaEveryX0Days = function (s) {
|
|
1566
|
+
return getPhraseByPlural(s, [', всеки %s ден', ', всеки %s дена']);
|
|
1567
|
+
};
|
|
1568
|
+
bg.prototype.commaBetweenDayX0AndX1OfTheMonth = function (s) {
|
|
1569
|
+
var _a;
|
|
1570
|
+
var values = (_a = s === null || s === void 0 ? void 0 : s.split('-')) !== null && _a !== void 0 ? _a : [];
|
|
1571
|
+
return ", \u043E\u0442 %s-".concat(getNumberEnding(values[0], 'ср'), " \u0434\u043E %s-").concat(getNumberEnding(values[1], 'ср'), " \u0447\u0438\u0441\u043B\u043E \u043D\u0430 \u043C\u0435\u0441\u0435\u0446\u0430");
|
|
1572
|
+
};
|
|
1573
|
+
bg.prototype.commaOnDayX0OfTheMonth = function (s) {
|
|
1574
|
+
return ", \u043D\u0430 %s-".concat(getNumberEnding(s, 'ср'), " \u0447\u0438\u0441\u043B\u043E \u043E\u0442 \u043C\u0435\u0441\u0435\u0446\u0430");
|
|
1575
|
+
};
|
|
1576
|
+
bg.prototype.commaEveryX0Years = function (s) {
|
|
1577
|
+
return getPhraseByPlural(s, [', всяка %s година', ', всеки %s години']);
|
|
1578
|
+
};
|
|
1579
|
+
bg.prototype.commaStartingX0 = function () {
|
|
1580
|
+
return ', започвайки %s';
|
|
1581
|
+
};
|
|
1582
|
+
bg.prototype.daysOfTheWeek = function () {
|
|
1583
|
+
return ['неделя', 'понеделник', 'вторник', 'сряда', 'четвъртък', 'петък', 'събота'];
|
|
1584
|
+
};
|
|
1585
|
+
bg.prototype.monthsOfTheYear = function () {
|
|
1586
|
+
return ['януари', 'февруари', 'март', 'април', 'май', 'юни', 'юли', 'август', 'септевмври', 'октомври', 'ноември', 'декември'];
|
|
1587
|
+
};
|
|
1588
|
+
return bg;
|
|
1589
|
+
}());
|
|
1590
|
+
exports.bg = bg;
|
|
1591
|
+
|
|
1592
|
+
|
|
1340
1593
|
/***/ }),
|
|
1341
1594
|
|
|
1342
1595
|
/***/ 708:
|
|
@@ -1361,7 +1614,7 @@ var ca = (function () {
|
|
|
1361
1614
|
return null;
|
|
1362
1615
|
};
|
|
1363
1616
|
ca.prototype.use24HourTimeFormatByDefault = function () {
|
|
1364
|
-
return
|
|
1617
|
+
return true;
|
|
1365
1618
|
};
|
|
1366
1619
|
ca.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
1367
1620
|
return "S'ha produït un error mentres es generava la descripció de l'expressió. Revisi la sintaxi de la expressió de cron.";
|
|
@@ -2289,7 +2542,7 @@ var es = (function () {
|
|
|
2289
2542
|
return null;
|
|
2290
2543
|
};
|
|
2291
2544
|
es.prototype.use24HourTimeFormatByDefault = function () {
|
|
2292
|
-
return
|
|
2545
|
+
return true;
|
|
2293
2546
|
};
|
|
2294
2547
|
es.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
2295
2548
|
return "Ocurrió un error mientras se generaba la descripción de la expresión. Revise la sintaxis de la expresión de cron.";
|
|
@@ -2640,7 +2893,7 @@ var fi = (function () {
|
|
|
2640
2893
|
function fi() {
|
|
2641
2894
|
}
|
|
2642
2895
|
fi.prototype.use24HourTimeFormatByDefault = function () {
|
|
2643
|
-
return
|
|
2896
|
+
return true;
|
|
2644
2897
|
};
|
|
2645
2898
|
fi.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
2646
2899
|
return "Virhe kuvauksen generoinnissa. Tarkista cron-syntaksi.";
|
|
@@ -3206,7 +3459,7 @@ var hu = (function () {
|
|
|
3206
3459
|
return null;
|
|
3207
3460
|
};
|
|
3208
3461
|
hu.prototype.use24HourTimeFormatByDefault = function () {
|
|
3209
|
-
return
|
|
3462
|
+
return true;
|
|
3210
3463
|
};
|
|
3211
3464
|
hu.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
3212
3465
|
return "Hiba történt a kifejezésleírás generálásakor. Ellenőrizze a cron kifejezés szintaxisát.";
|
|
@@ -3394,7 +3647,7 @@ var id = (function () {
|
|
|
3394
3647
|
return null;
|
|
3395
3648
|
};
|
|
3396
3649
|
id.prototype.use24HourTimeFormatByDefault = function () {
|
|
3397
|
-
return
|
|
3650
|
+
return true;
|
|
3398
3651
|
};
|
|
3399
3652
|
id.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
3400
3653
|
return "Terjadi kesalahan saat membuat deskripsi ekspresi. Periksa sintaks ekspresi cron.";
|
|
@@ -3755,7 +4008,7 @@ var ja = (function () {
|
|
|
3755
4008
|
function ja() {
|
|
3756
4009
|
}
|
|
3757
4010
|
ja.prototype.use24HourTimeFormatByDefault = function () {
|
|
3758
|
-
return
|
|
4011
|
+
return true;
|
|
3759
4012
|
};
|
|
3760
4013
|
ja.prototype.everyMinute = function () {
|
|
3761
4014
|
return "毎分";
|
|
@@ -4002,7 +4255,7 @@ var ko = (function () {
|
|
|
4002
4255
|
return "%s분마다";
|
|
4003
4256
|
};
|
|
4004
4257
|
ko.prototype.minutesX0ThroughX1PastTheHour = function () {
|
|
4005
|
-
return "정시 후 %s분에서 %s
|
|
4258
|
+
return "정시 후 %s분에서 %s분까지";
|
|
4006
4259
|
};
|
|
4007
4260
|
ko.prototype.atX0MinutesPastTheHour = function () {
|
|
4008
4261
|
return "정시 후 %s분에서";
|
|
@@ -4065,7 +4318,7 @@ var ko = (function () {
|
|
|
4065
4318
|
return ", %s개월마다";
|
|
4066
4319
|
};
|
|
4067
4320
|
ko.prototype.commaOnlyInX0 = function () {
|
|
4068
|
-
return ", %s
|
|
4321
|
+
return ", %s에만";
|
|
4069
4322
|
};
|
|
4070
4323
|
ko.prototype.commaOnTheLastDayOfTheMonth = function () {
|
|
4071
4324
|
return ", 해당 월의 마지막 날에";
|
|
@@ -4080,7 +4333,7 @@ var ko = (function () {
|
|
|
4080
4333
|
return "첫 번째 평일";
|
|
4081
4334
|
};
|
|
4082
4335
|
ko.prototype.weekdayNearestDayX0 = function () {
|
|
4083
|
-
return "
|
|
4336
|
+
return "%s일과 가장 가까운 평일";
|
|
4084
4337
|
};
|
|
4085
4338
|
ko.prototype.commaOnTheX0OfTheMonth = function () {
|
|
4086
4339
|
return ", 해당 월의 %s에";
|
|
@@ -4089,7 +4342,7 @@ var ko = (function () {
|
|
|
4089
4342
|
return ", %s일마다";
|
|
4090
4343
|
};
|
|
4091
4344
|
ko.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
|
|
4092
|
-
return ", 해당 월의 %s
|
|
4345
|
+
return ", 해당 월의 %s일에서 %s일까지";
|
|
4093
4346
|
};
|
|
4094
4347
|
ko.prototype.commaOnDayX0OfTheMonth = function () {
|
|
4095
4348
|
return ", 해당 월의 %s일에";
|
|
@@ -4117,6 +4370,194 @@ var ko = (function () {
|
|
|
4117
4370
|
exports.ko = ko;
|
|
4118
4371
|
|
|
4119
4372
|
|
|
4373
|
+
/***/ }),
|
|
4374
|
+
|
|
4375
|
+
/***/ 863:
|
|
4376
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
4377
|
+
|
|
4378
|
+
|
|
4379
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
4380
|
+
exports.my = void 0;
|
|
4381
|
+
var my = (function () {
|
|
4382
|
+
function my() {
|
|
4383
|
+
}
|
|
4384
|
+
my.prototype.atX0SecondsPastTheMinuteGt20 = function () {
|
|
4385
|
+
return null;
|
|
4386
|
+
};
|
|
4387
|
+
my.prototype.atX0MinutesPastTheHourGt20 = function () {
|
|
4388
|
+
return null;
|
|
4389
|
+
};
|
|
4390
|
+
my.prototype.commaMonthX0ThroughMonthX1 = function () {
|
|
4391
|
+
return null;
|
|
4392
|
+
};
|
|
4393
|
+
my.prototype.commaYearX0ThroughYearX1 = function () {
|
|
4394
|
+
return null;
|
|
4395
|
+
};
|
|
4396
|
+
my.prototype.use24HourTimeFormatByDefault = function () {
|
|
4397
|
+
return false;
|
|
4398
|
+
};
|
|
4399
|
+
my.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
4400
|
+
return "Terdapat ralat semasa menjana penerangan ungkapan. Sila periksa sintaks ungkapan cron.";
|
|
4401
|
+
};
|
|
4402
|
+
my.prototype.everyMinute = function () {
|
|
4403
|
+
return "setiap minit";
|
|
4404
|
+
};
|
|
4405
|
+
my.prototype.everyHour = function () {
|
|
4406
|
+
return "setiap jam";
|
|
4407
|
+
};
|
|
4408
|
+
my.prototype.atSpace = function () {
|
|
4409
|
+
return "Pada ";
|
|
4410
|
+
};
|
|
4411
|
+
my.prototype.everyMinuteBetweenX0AndX1 = function () {
|
|
4412
|
+
return "Setiap minit antara %s dan %s";
|
|
4413
|
+
};
|
|
4414
|
+
my.prototype.at = function () {
|
|
4415
|
+
return "Pada";
|
|
4416
|
+
};
|
|
4417
|
+
my.prototype.spaceAnd = function () {
|
|
4418
|
+
return " dan";
|
|
4419
|
+
};
|
|
4420
|
+
my.prototype.everySecond = function () {
|
|
4421
|
+
return "setiap saat";
|
|
4422
|
+
};
|
|
4423
|
+
my.prototype.everyX0Seconds = function () {
|
|
4424
|
+
return "setiap %s saat";
|
|
4425
|
+
};
|
|
4426
|
+
my.prototype.secondsX0ThroughX1PastTheMinute = function () {
|
|
4427
|
+
return "saat ke %s hingga %s selepas minit";
|
|
4428
|
+
};
|
|
4429
|
+
my.prototype.atX0SecondsPastTheMinute = function () {
|
|
4430
|
+
return "pada %s saat selepas minit";
|
|
4431
|
+
};
|
|
4432
|
+
my.prototype.everyX0Minutes = function () {
|
|
4433
|
+
return "setiap %s minit";
|
|
4434
|
+
};
|
|
4435
|
+
my.prototype.minutesX0ThroughX1PastTheHour = function () {
|
|
4436
|
+
return "minit ke %s hingga %s selepas jam";
|
|
4437
|
+
};
|
|
4438
|
+
my.prototype.atX0MinutesPastTheHour = function () {
|
|
4439
|
+
return "pada %s minit selepas jam";
|
|
4440
|
+
};
|
|
4441
|
+
my.prototype.everyX0Hours = function () {
|
|
4442
|
+
return "setiap %s jam";
|
|
4443
|
+
};
|
|
4444
|
+
my.prototype.betweenX0AndX1 = function () {
|
|
4445
|
+
return "antara %s dan %s";
|
|
4446
|
+
};
|
|
4447
|
+
my.prototype.atX0 = function () {
|
|
4448
|
+
return "pada %s";
|
|
4449
|
+
};
|
|
4450
|
+
my.prototype.commaEveryDay = function () {
|
|
4451
|
+
return ", setiap hari";
|
|
4452
|
+
};
|
|
4453
|
+
my.prototype.commaEveryX0DaysOfTheWeek = function () {
|
|
4454
|
+
return ", setiap %s hari dalam minggu";
|
|
4455
|
+
};
|
|
4456
|
+
my.prototype.commaX0ThroughX1 = function () {
|
|
4457
|
+
return ", %s hingga %s";
|
|
4458
|
+
};
|
|
4459
|
+
my.prototype.commaAndX0ThroughX1 = function () {
|
|
4460
|
+
return ", dan %s hingga %s";
|
|
4461
|
+
};
|
|
4462
|
+
my.prototype.first = function () {
|
|
4463
|
+
return "pertama";
|
|
4464
|
+
};
|
|
4465
|
+
my.prototype.second = function () {
|
|
4466
|
+
return "kedua";
|
|
4467
|
+
};
|
|
4468
|
+
my.prototype.third = function () {
|
|
4469
|
+
return "ketiga";
|
|
4470
|
+
};
|
|
4471
|
+
my.prototype.fourth = function () {
|
|
4472
|
+
return "keempat";
|
|
4473
|
+
};
|
|
4474
|
+
my.prototype.fifth = function () {
|
|
4475
|
+
return "kelima";
|
|
4476
|
+
};
|
|
4477
|
+
my.prototype.commaOnThe = function () {
|
|
4478
|
+
return ", pada ";
|
|
4479
|
+
};
|
|
4480
|
+
my.prototype.spaceX0OfTheMonth = function () {
|
|
4481
|
+
return " %s pada bulan";
|
|
4482
|
+
};
|
|
4483
|
+
my.prototype.lastDay = function () {
|
|
4484
|
+
return "hari terakhir";
|
|
4485
|
+
};
|
|
4486
|
+
my.prototype.commaOnTheLastX0OfTheMonth = function () {
|
|
4487
|
+
return ", pada %s terakhir bulan";
|
|
4488
|
+
};
|
|
4489
|
+
my.prototype.commaOnlyOnX0 = function () {
|
|
4490
|
+
return ", hanya pada %s";
|
|
4491
|
+
};
|
|
4492
|
+
my.prototype.commaAndOnX0 = function () {
|
|
4493
|
+
return ", dan pada %s";
|
|
4494
|
+
};
|
|
4495
|
+
my.prototype.commaEveryX0Months = function () {
|
|
4496
|
+
return ", setiap bulan %s";
|
|
4497
|
+
};
|
|
4498
|
+
my.prototype.commaOnlyInX0 = function () {
|
|
4499
|
+
return ", hanya pada %s";
|
|
4500
|
+
};
|
|
4501
|
+
my.prototype.commaOnTheLastDayOfTheMonth = function () {
|
|
4502
|
+
return ", pada hari terakhir bulan";
|
|
4503
|
+
};
|
|
4504
|
+
my.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
|
|
4505
|
+
return ", pada minggu terakhir bulan";
|
|
4506
|
+
};
|
|
4507
|
+
my.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
|
|
4508
|
+
return ", %s hari sebelum hari terakhir bulan";
|
|
4509
|
+
};
|
|
4510
|
+
my.prototype.firstWeekday = function () {
|
|
4511
|
+
return "hari pertama minggu bekerja";
|
|
4512
|
+
};
|
|
4513
|
+
my.prototype.weekdayNearestDayX0 = function () {
|
|
4514
|
+
return "hari bekerja yang terdekat dengan %s";
|
|
4515
|
+
};
|
|
4516
|
+
my.prototype.commaOnTheX0OfTheMonth = function () {
|
|
4517
|
+
return ", pada %s bulan";
|
|
4518
|
+
};
|
|
4519
|
+
my.prototype.commaEveryX0Days = function () {
|
|
4520
|
+
return ", setiap %s hari";
|
|
4521
|
+
};
|
|
4522
|
+
my.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
|
|
4523
|
+
return ", antara hari %s dan %s dalam bulan";
|
|
4524
|
+
};
|
|
4525
|
+
my.prototype.commaOnDayX0OfTheMonth = function () {
|
|
4526
|
+
return ", pada hari %s dalam bulan";
|
|
4527
|
+
};
|
|
4528
|
+
my.prototype.commaEveryHour = function () {
|
|
4529
|
+
return ", setiap jam";
|
|
4530
|
+
};
|
|
4531
|
+
my.prototype.commaEveryX0Years = function () {
|
|
4532
|
+
return ", setiap %s tahun";
|
|
4533
|
+
};
|
|
4534
|
+
my.prototype.commaStartingX0 = function () {
|
|
4535
|
+
return ", bermula %s";
|
|
4536
|
+
};
|
|
4537
|
+
my.prototype.daysOfTheWeek = function () {
|
|
4538
|
+
return ["Ahad", "Isnin", "Selasa", "Rabu", "Khamis", "Jumaat", "Sabtu"];
|
|
4539
|
+
};
|
|
4540
|
+
my.prototype.monthsOfTheYear = function () {
|
|
4541
|
+
return [
|
|
4542
|
+
"Januari",
|
|
4543
|
+
"Februari",
|
|
4544
|
+
"Mac",
|
|
4545
|
+
"April",
|
|
4546
|
+
"Mei",
|
|
4547
|
+
"Jun",
|
|
4548
|
+
"Julai",
|
|
4549
|
+
"Ogos",
|
|
4550
|
+
"September",
|
|
4551
|
+
"Oktober",
|
|
4552
|
+
"November",
|
|
4553
|
+
"Disember",
|
|
4554
|
+
];
|
|
4555
|
+
};
|
|
4556
|
+
return my;
|
|
4557
|
+
}());
|
|
4558
|
+
exports.my = my;
|
|
4559
|
+
|
|
4560
|
+
|
|
4120
4561
|
/***/ }),
|
|
4121
4562
|
|
|
4122
4563
|
/***/ 869:
|
|
@@ -4141,7 +4582,7 @@ var nb = (function () {
|
|
|
4141
4582
|
return null;
|
|
4142
4583
|
};
|
|
4143
4584
|
nb.prototype.use24HourTimeFormatByDefault = function () {
|
|
4144
|
-
return
|
|
4585
|
+
return true;
|
|
4145
4586
|
};
|
|
4146
4587
|
nb.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
4147
4588
|
return "En feil inntraff ved generering av uttrykksbeskrivelse. Sjekk cron syntaks.";
|
|
@@ -4326,7 +4767,7 @@ var nl = (function () {
|
|
|
4326
4767
|
return null;
|
|
4327
4768
|
};
|
|
4328
4769
|
nl.prototype.use24HourTimeFormatByDefault = function () {
|
|
4329
|
-
return
|
|
4770
|
+
return true;
|
|
4330
4771
|
};
|
|
4331
4772
|
nl.prototype.everyMinute = function () {
|
|
4332
4773
|
return "elke minuut";
|
|
@@ -4696,7 +5137,7 @@ var pt_BR = (function () {
|
|
|
4696
5137
|
return null;
|
|
4697
5138
|
};
|
|
4698
5139
|
pt_BR.prototype.use24HourTimeFormatByDefault = function () {
|
|
4699
|
-
return
|
|
5140
|
+
return true;
|
|
4700
5141
|
};
|
|
4701
5142
|
pt_BR.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
4702
5143
|
return "Ocorreu um erro ao gerar a descrição da expressão Cron.";
|
|
@@ -4737,11 +5178,11 @@ var pt_BR = (function () {
|
|
|
4737
5178
|
pt_BR.prototype.commaOnDayX0OfTheMonth = function () {
|
|
4738
5179
|
return ", no dia %s do mês";
|
|
4739
5180
|
};
|
|
4740
|
-
pt_BR.prototype.commaOnlyInX0 = function () {
|
|
4741
|
-
return ", somente em %s";
|
|
5181
|
+
pt_BR.prototype.commaOnlyInX0 = function (s) {
|
|
5182
|
+
return s && s.length > 1 && s[1] === "-" ? "somente %s" : ", somente em %s";
|
|
4742
5183
|
};
|
|
4743
|
-
pt_BR.prototype.commaOnlyOnX0 = function () {
|
|
4744
|
-
return ", somente de %s";
|
|
5184
|
+
pt_BR.prototype.commaOnlyOnX0 = function (s) {
|
|
5185
|
+
return s && s.length > 1 && s[1] === "-" ? ", somente %s" : ", somente de %s";
|
|
4745
5186
|
};
|
|
4746
5187
|
pt_BR.prototype.commaAndOnX0 = function () {
|
|
4747
5188
|
return ", e de %s";
|
|
@@ -6034,7 +6475,7 @@ var sw = (function () {
|
|
|
6034
6475
|
return null;
|
|
6035
6476
|
};
|
|
6036
6477
|
sw.prototype.use24HourTimeFormatByDefault = function () {
|
|
6037
|
-
return
|
|
6478
|
+
return true;
|
|
6038
6479
|
};
|
|
6039
6480
|
sw.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
6040
6481
|
return "Kuna tatizo wakati wa kutunga msemo. Angalia cron expression syntax.";
|
|
@@ -6753,6 +7194,194 @@ var uk = (function () {
|
|
|
6753
7194
|
exports.uk = uk;
|
|
6754
7195
|
|
|
6755
7196
|
|
|
7197
|
+
/***/ }),
|
|
7198
|
+
|
|
7199
|
+
/***/ 533:
|
|
7200
|
+
/***/ ((__unused_webpack_module, exports) => {
|
|
7201
|
+
|
|
7202
|
+
|
|
7203
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
7204
|
+
exports.vi = void 0;
|
|
7205
|
+
var vi = (function () {
|
|
7206
|
+
function vi() {
|
|
7207
|
+
}
|
|
7208
|
+
vi.prototype.atX0SecondsPastTheMinuteGt20 = function () {
|
|
7209
|
+
return null;
|
|
7210
|
+
};
|
|
7211
|
+
vi.prototype.atX0MinutesPastTheHourGt20 = function () {
|
|
7212
|
+
return null;
|
|
7213
|
+
};
|
|
7214
|
+
vi.prototype.commaMonthX0ThroughMonthX1 = function () {
|
|
7215
|
+
return null;
|
|
7216
|
+
};
|
|
7217
|
+
vi.prototype.commaYearX0ThroughYearX1 = function () {
|
|
7218
|
+
return null;
|
|
7219
|
+
};
|
|
7220
|
+
vi.prototype.use24HourTimeFormatByDefault = function () {
|
|
7221
|
+
return true;
|
|
7222
|
+
};
|
|
7223
|
+
vi.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
|
|
7224
|
+
return "Đã xảy ra lỗi khi tạo mô tả biểu thức. Vui lòng kiểm tra cú pháp biểu thức cron.";
|
|
7225
|
+
};
|
|
7226
|
+
vi.prototype.everyMinute = function () {
|
|
7227
|
+
return "mỗi phút";
|
|
7228
|
+
};
|
|
7229
|
+
vi.prototype.everyHour = function () {
|
|
7230
|
+
return "mỗi giờ";
|
|
7231
|
+
};
|
|
7232
|
+
vi.prototype.atSpace = function () {
|
|
7233
|
+
return "Vào ";
|
|
7234
|
+
};
|
|
7235
|
+
vi.prototype.everyMinuteBetweenX0AndX1 = function () {
|
|
7236
|
+
return "Mỗi phút giữa %s and %s";
|
|
7237
|
+
};
|
|
7238
|
+
vi.prototype.at = function () {
|
|
7239
|
+
return "Vào";
|
|
7240
|
+
};
|
|
7241
|
+
vi.prototype.spaceAnd = function () {
|
|
7242
|
+
return " và";
|
|
7243
|
+
};
|
|
7244
|
+
vi.prototype.everySecond = function () {
|
|
7245
|
+
return "mỗi giây";
|
|
7246
|
+
};
|
|
7247
|
+
vi.prototype.everyX0Seconds = function () {
|
|
7248
|
+
return "mỗi %s giây";
|
|
7249
|
+
};
|
|
7250
|
+
vi.prototype.secondsX0ThroughX1PastTheMinute = function () {
|
|
7251
|
+
return "giây thứ %s qua phút thứ %s";
|
|
7252
|
+
};
|
|
7253
|
+
vi.prototype.atX0SecondsPastTheMinute = function () {
|
|
7254
|
+
return "tại giây thứ %s của mỗi phút";
|
|
7255
|
+
};
|
|
7256
|
+
vi.prototype.everyX0Minutes = function () {
|
|
7257
|
+
return "mỗi %s phút";
|
|
7258
|
+
};
|
|
7259
|
+
vi.prototype.minutesX0ThroughX1PastTheHour = function () {
|
|
7260
|
+
return "phút thứ %s qua %s tiếng";
|
|
7261
|
+
};
|
|
7262
|
+
vi.prototype.atX0MinutesPastTheHour = function () {
|
|
7263
|
+
return "vào %s phút của mỗi tiếng";
|
|
7264
|
+
};
|
|
7265
|
+
vi.prototype.everyX0Hours = function () {
|
|
7266
|
+
return "mỗi %s tiếng";
|
|
7267
|
+
};
|
|
7268
|
+
vi.prototype.betweenX0AndX1 = function () {
|
|
7269
|
+
return "giữa %s và %s";
|
|
7270
|
+
};
|
|
7271
|
+
vi.prototype.atX0 = function () {
|
|
7272
|
+
return "vào %s";
|
|
7273
|
+
};
|
|
7274
|
+
vi.prototype.commaEveryDay = function () {
|
|
7275
|
+
return ", mỗi ngày";
|
|
7276
|
+
};
|
|
7277
|
+
vi.prototype.commaEveryX0DaysOfTheWeek = function () {
|
|
7278
|
+
return ", mỗi %s ngày trong tuần";
|
|
7279
|
+
};
|
|
7280
|
+
vi.prototype.commaX0ThroughX1 = function () {
|
|
7281
|
+
return ", %s đến %s";
|
|
7282
|
+
};
|
|
7283
|
+
vi.prototype.commaAndX0ThroughX1 = function () {
|
|
7284
|
+
return ", %s đến %s";
|
|
7285
|
+
};
|
|
7286
|
+
vi.prototype.first = function () {
|
|
7287
|
+
return "đầu tiên";
|
|
7288
|
+
};
|
|
7289
|
+
vi.prototype.second = function () {
|
|
7290
|
+
return "thứ 2";
|
|
7291
|
+
};
|
|
7292
|
+
vi.prototype.third = function () {
|
|
7293
|
+
return "thứ 3";
|
|
7294
|
+
};
|
|
7295
|
+
vi.prototype.fourth = function () {
|
|
7296
|
+
return "thứ 4";
|
|
7297
|
+
};
|
|
7298
|
+
vi.prototype.fifth = function () {
|
|
7299
|
+
return "thứ 5";
|
|
7300
|
+
};
|
|
7301
|
+
vi.prototype.commaOnThe = function () {
|
|
7302
|
+
return ", trên ";
|
|
7303
|
+
};
|
|
7304
|
+
vi.prototype.spaceX0OfTheMonth = function () {
|
|
7305
|
+
return " %s của tháng";
|
|
7306
|
+
};
|
|
7307
|
+
vi.prototype.lastDay = function () {
|
|
7308
|
+
return "ngày cuối cùng";
|
|
7309
|
+
};
|
|
7310
|
+
vi.prototype.commaOnTheLastX0OfTheMonth = function () {
|
|
7311
|
+
return ", vào ngày %s cuối cùng của tháng";
|
|
7312
|
+
};
|
|
7313
|
+
vi.prototype.commaOnlyOnX0 = function () {
|
|
7314
|
+
return ", chỉ trên %s";
|
|
7315
|
+
};
|
|
7316
|
+
vi.prototype.commaAndOnX0 = function () {
|
|
7317
|
+
return ", và hơn %s";
|
|
7318
|
+
};
|
|
7319
|
+
vi.prototype.commaEveryX0Months = function () {
|
|
7320
|
+
return ", mỗi ngày %s tháng";
|
|
7321
|
+
};
|
|
7322
|
+
vi.prototype.commaOnlyInX0 = function () {
|
|
7323
|
+
return ", chỉ trong %s";
|
|
7324
|
+
};
|
|
7325
|
+
vi.prototype.commaOnTheLastDayOfTheMonth = function () {
|
|
7326
|
+
return ", vào ngày cuối cùng của tháng";
|
|
7327
|
+
};
|
|
7328
|
+
vi.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
|
|
7329
|
+
return ", vào ngày cuối tuần của tháng";
|
|
7330
|
+
};
|
|
7331
|
+
vi.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
|
|
7332
|
+
return ", %s ngày trước ngày cuối cùng của tháng";
|
|
7333
|
+
};
|
|
7334
|
+
vi.prototype.firstWeekday = function () {
|
|
7335
|
+
return "ngày đầu tuần";
|
|
7336
|
+
};
|
|
7337
|
+
vi.prototype.weekdayNearestDayX0 = function () {
|
|
7338
|
+
return "ngày trong tuần ngày gần nhất %s";
|
|
7339
|
+
};
|
|
7340
|
+
vi.prototype.commaOnTheX0OfTheMonth = function () {
|
|
7341
|
+
return ", vào ngày %s của tháng";
|
|
7342
|
+
};
|
|
7343
|
+
vi.prototype.commaEveryX0Days = function () {
|
|
7344
|
+
return ", mỗi %s ngày";
|
|
7345
|
+
};
|
|
7346
|
+
vi.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
|
|
7347
|
+
return ", giữa ngày %s và %s trong tháng";
|
|
7348
|
+
};
|
|
7349
|
+
vi.prototype.commaOnDayX0OfTheMonth = function () {
|
|
7350
|
+
return ", vào %s ngày trong tháng";
|
|
7351
|
+
};
|
|
7352
|
+
vi.prototype.commaEveryHour = function () {
|
|
7353
|
+
return ", mỗi tiếng";
|
|
7354
|
+
};
|
|
7355
|
+
vi.prototype.commaEveryX0Years = function () {
|
|
7356
|
+
return ", mỗi %s năm";
|
|
7357
|
+
};
|
|
7358
|
+
vi.prototype.commaStartingX0 = function () {
|
|
7359
|
+
return ", bắt đầu %s";
|
|
7360
|
+
};
|
|
7361
|
+
vi.prototype.daysOfTheWeek = function () {
|
|
7362
|
+
return ["Chủ nhật", "Thứ 2", "Thứ 3", "Thứ 4", "Thứ 5", "Thứ 6", "Thứ 7"];
|
|
7363
|
+
};
|
|
7364
|
+
vi.prototype.monthsOfTheYear = function () {
|
|
7365
|
+
return [
|
|
7366
|
+
"Tháng 1",
|
|
7367
|
+
"Tháng 2",
|
|
7368
|
+
"Tháng 3",
|
|
7369
|
+
"Tháng 4",
|
|
7370
|
+
"Tháng 5",
|
|
7371
|
+
"Tháng 6",
|
|
7372
|
+
"Tháng 7",
|
|
7373
|
+
"Tháng 8",
|
|
7374
|
+
"Tháng 9",
|
|
7375
|
+
"Tháng 10",
|
|
7376
|
+
"Tháng 11",
|
|
7377
|
+
"Tháng 12",
|
|
7378
|
+
];
|
|
7379
|
+
};
|
|
7380
|
+
return vi;
|
|
7381
|
+
}());
|
|
7382
|
+
exports.vi = vi;
|
|
7383
|
+
|
|
7384
|
+
|
|
6756
7385
|
/***/ }),
|
|
6757
7386
|
|
|
6758
7387
|
/***/ 419:
|
|
@@ -6967,7 +7596,7 @@ var zh_TW = (function () {
|
|
|
6967
7596
|
return ", 從 %s 年至 %s 年";
|
|
6968
7597
|
};
|
|
6969
7598
|
zh_TW.prototype.use24HourTimeFormatByDefault = function () {
|
|
6970
|
-
return
|
|
7599
|
+
return true;
|
|
6971
7600
|
};
|
|
6972
7601
|
zh_TW.prototype.everyMinute = function () {
|
|
6973
7602
|
return "每分鐘";
|