react-cron-generator 2.1.5 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.js CHANGED
@@ -19,8 +19,8 @@ function requireCronstrueI18n () {
19
19
  return /******/ (() => { // webpackBootstrap
20
20
  /******/ var __webpack_modules__ = ({
21
21
 
22
- /***/ 949:
23
- /***/ ((__unused_webpack_module, exports$1, __webpack_require__) => {
22
+ /***/ 949
23
+ (__unused_webpack_module, exports$1, __webpack_require__) {
24
24
 
25
25
 
26
26
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -38,7 +38,11 @@ function requireCronstrueI18n () {
38
38
  var _a;
39
39
  var parsed;
40
40
  var expression = (_a = this.expression) !== null && _a !== void 0 ? _a : '';
41
- if (expression.startsWith('@')) {
41
+ if (expression === "@reboot") {
42
+ parsed = ["@reboot", "", "", "", "", "", ""];
43
+ return parsed;
44
+ }
45
+ else if (expression.startsWith('@')) {
42
46
  var special = this.parseSpecial(this.expression);
43
47
  parsed = this.extractParts(special);
44
48
  }
@@ -57,7 +61,8 @@ function requireCronstrueI18n () {
57
61
  '@weekly': '0 0 * * 0',
58
62
  '@daily': '0 0 * * *',
59
63
  '@midnight': '0 0 * * *',
60
- '@hourly': '0 * * * *'
64
+ '@hourly': '0 * * * *',
65
+ '@reboot': '@reboot'
61
66
  };
62
67
  var special = specialExpressions[expression];
63
68
  if (!special) {
@@ -260,10 +265,10 @@ function requireCronstrueI18n () {
260
265
  exports$1.CronParser = CronParser;
261
266
 
262
267
 
263
- /***/ }),
268
+ /***/ },
264
269
 
265
- /***/ 333:
266
- /***/ ((__unused_webpack_module, exports$1, __webpack_require__) => {
270
+ /***/ 333
271
+ (__unused_webpack_module, exports$1, __webpack_require__) {
267
272
 
268
273
 
269
274
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -289,7 +294,7 @@ function requireCronstrueI18n () {
289
294
  }
290
295
  }
291
296
  ExpressionDescriptor.toString = function (expression, _a) {
292
- 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;
297
+ 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.logicalAndDayFields, logicalAndDayFields = _h === void 0 ? false : _h;
293
298
  var options = {
294
299
  throwExceptionOnParseError: throwExceptionOnParseError,
295
300
  verbose: verbose,
@@ -297,10 +302,10 @@ function requireCronstrueI18n () {
297
302
  monthStartIndexZero: monthStartIndexZero,
298
303
  use24HourTimeFormat: use24HourTimeFormat,
299
304
  locale: locale,
300
- tzOffset: tzOffset,
305
+ logicalAndDayFields: logicalAndDayFields,
301
306
  };
302
307
  if (options.tzOffset) {
303
- console.warn("'tzOffset' option has been deprecated and will be removed in a future release.");
308
+ console.warn("'tzOffset' option has been deprecated and is no longer supported.");
304
309
  }
305
310
  var descripter = new ExpressionDescriptor(expression, options);
306
311
  return descripter.getFullDescription();
@@ -312,10 +317,14 @@ function requireCronstrueI18n () {
312
317
  localesLoader.load(ExpressionDescriptor.locales);
313
318
  };
314
319
  ExpressionDescriptor.prototype.getFullDescription = function () {
320
+ var _a, _b;
315
321
  var description = "";
316
322
  try {
317
323
  var parser = new cronParser_1.CronParser(this.expression, this.options.dayOfWeekStartIndexZero, this.options.monthStartIndexZero);
318
324
  this.expressionParts = parser.parse();
325
+ if (this.expressionParts[0] === "@reboot") {
326
+ return ((_b = (_a = this.i18n).atReboot) === null || _b === void 0 ? void 0 : _b.call(_a)) || "Run once, at startup";
327
+ }
319
328
  var timeSegment = this.getTimeOfDayDescription();
320
329
  var dayOfMonthDesc = this.getDayOfMonthDescription();
321
330
  var monthDesc = this.getMonthDescription();
@@ -418,12 +427,15 @@ function requireCronstrueI18n () {
418
427
  }, function (s) {
419
428
  return _this.i18n.minutesX0ThroughX1PastTheHour();
420
429
  }, function (s) {
430
+ var _a, _b;
421
431
  try {
422
432
  return s == "0" && hourExpression.indexOf("/") == -1 && secondsExpression == ""
423
433
  ? _this.i18n.everyHour()
424
- : parseInt(s) < 20
425
- ? _this.i18n.atX0MinutesPastTheHour(s)
426
- : _this.i18n.atX0MinutesPastTheHourGt20() || _this.i18n.atX0MinutesPastTheHour(s);
434
+ : s == "0"
435
+ ? ((_b = (_a = _this.i18n).onTheHour) === null || _b === void 0 ? void 0 : _b.call(_a)) || _this.i18n.atX0MinutesPastTheHour(s)
436
+ : parseInt(s) < 20
437
+ ? _this.i18n.atX0MinutesPastTheHour(s)
438
+ : _this.i18n.atX0MinutesPastTheHourGt20() || _this.i18n.atX0MinutesPastTheHour(s);
427
439
  }
428
440
  catch (e) {
429
441
  return _this.i18n.atX0MinutesPastTheHour(s);
@@ -478,22 +490,6 @@ function requireCronstrueI18n () {
478
490
  exp = exp.replace("L", "");
479
491
  }
480
492
  var parsedExp = parseInt(exp);
481
- if (_this.options.tzOffset) {
482
- var hourExpression = _this.expressionParts[2];
483
- var hour = parseInt(hourExpression) + (_this.options.tzOffset ? _this.options.tzOffset : 0);
484
- if (hour >= 24) {
485
- parsedExp++;
486
- }
487
- else if (hour < 0) {
488
- parsedExp--;
489
- }
490
- if (parsedExp > 6) {
491
- parsedExp = 0;
492
- }
493
- else if (parsedExp < 0) {
494
- parsedExp = 6;
495
- }
496
- }
497
493
  var description = _this.i18n.daysOfTheWeekInCase
498
494
  ? _this.i18n.daysOfTheWeekInCase(form)[parsedExp]
499
495
  : daysOfWeekNames[parsedExp];
@@ -544,7 +540,15 @@ function requireCronstrueI18n () {
544
540
  }
545
541
  else {
546
542
  var domSpecified = _this.expressionParts[3] != "*";
547
- format = domSpecified ? _this.i18n.commaAndOnX0() : _this.i18n.commaOnlyOnX0(s);
543
+ if (!domSpecified) {
544
+ format = _this.i18n.commaOnlyOnX0(s);
545
+ }
546
+ else if (_this.options.logicalAndDayFields) {
547
+ format = _this.i18n.commaOnlyOnX0(s);
548
+ }
549
+ else {
550
+ format = _this.i18n.commaAndOnX0();
551
+ }
548
552
  }
549
553
  return format;
550
554
  });
@@ -676,7 +680,11 @@ function requireCronstrueI18n () {
676
680
  descriptionContent += getSingleItemDescription(segments[i]);
677
681
  }
678
682
  else {
679
- descriptionContent += this.getSegmentDescription(segments[i], allDescription, getSingleItemDescription, getIncrementDescriptionFormat, getRangeDescriptionFormat, getDescriptionFormat);
683
+ var segmentDescription = this.getSegmentDescription(segments[i], allDescription, getSingleItemDescription, getIncrementDescriptionFormat, getRangeDescriptionFormat, getDescriptionFormat);
684
+ if (segmentDescription && segmentDescription.startsWith(", ")) {
685
+ segmentDescription = segmentDescription.substring(2);
686
+ }
687
+ descriptionContent += segmentDescription;
680
688
  }
681
689
  }
682
690
  if (!doesExpressionContainIncrement) {
@@ -719,13 +727,6 @@ function requireCronstrueI18n () {
719
727
  ExpressionDescriptor.prototype.formatTime = function (hourExpression, minuteExpression, secondExpression) {
720
728
  var hourOffset = 0;
721
729
  var minuteOffset = 0;
722
- if (this.options.tzOffset) {
723
- hourOffset = this.options.tzOffset > 0 ? Math.floor(this.options.tzOffset) : Math.ceil(this.options.tzOffset);
724
- minuteOffset = parseFloat((this.options.tzOffset % 1).toFixed(2));
725
- if (minuteOffset != 0) {
726
- minuteOffset *= 60;
727
- }
728
- }
729
730
  var hour = parseInt(hourExpression) + hourOffset;
730
731
  var minute = parseInt(minuteExpression) + minuteOffset;
731
732
  if (minute >= 60) {
@@ -784,14 +785,14 @@ function requireCronstrueI18n () {
784
785
  exports$1.ExpressionDescriptor = ExpressionDescriptor;
785
786
 
786
787
 
787
- /***/ }),
788
+ /***/ },
788
789
 
789
- /***/ 99:
790
- /***/ ((__unused_webpack_module, exports$1, __webpack_require__) => {
790
+ /***/ 99
791
+ (__unused_webpack_module, exports$1, __webpack_require__) {
791
792
 
792
793
 
793
794
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
794
- exports$1.bg = exports$1.my = exports$1.vi = exports$1.ar = exports$1.th = exports$1.af = exports$1.hu = exports$1.be = exports$1.ca = exports$1.fa = exports$1.sw = exports$1.sl = exports$1.fi = exports$1.sk = exports$1.cs = exports$1.he = exports$1.ja = exports$1.zh_TW = exports$1.zh_CN = exports$1.uk = exports$1.tr = exports$1.ru = exports$1.ro = exports$1.pt_PT = exports$1.pt_BR = exports$1.pl = exports$1.sv = exports$1.nb = exports$1.nl = exports$1.ko = exports$1.id = exports$1.it = exports$1.fr = exports$1.es = exports$1.de = exports$1.da = exports$1.en = void 0;
795
+ exports$1.sr = exports$1.hr = exports$1.bg = exports$1.my = exports$1.vi = exports$1.ar = exports$1.th = exports$1.af = exports$1.hu = exports$1.be = exports$1.ca = exports$1.fa = exports$1.sw = exports$1.sl = exports$1.fi = exports$1.sk = exports$1.cs = exports$1.he = exports$1.ja = exports$1.zh_TW = exports$1.zh_CN = exports$1.uk = exports$1.tr = exports$1.ru = exports$1.ro = exports$1.pt_PT = exports$1.pt_BR = exports$1.pl = exports$1.sv = exports$1.nb = exports$1.nl = exports$1.ko = exports$1.id = exports$1.it = exports$1.fr = exports$1.es = exports$1.de = exports$1.da = exports$1.en = void 0;
795
796
  var en_1 = __webpack_require__(486);
796
797
  Object.defineProperty(exports$1, "en", ({ enumerable: true, get: function () { return en_1.en; } }));
797
798
  var da_1 = __webpack_require__(506);
@@ -866,12 +867,16 @@ function requireCronstrueI18n () {
866
867
  Object.defineProperty(exports$1, "my", ({ enumerable: true, get: function () { return my_1.my; } }));
867
868
  var bg_1 = __webpack_require__(622);
868
869
  Object.defineProperty(exports$1, "bg", ({ enumerable: true, get: function () { return bg_1.bg; } }));
870
+ var hr_1 = __webpack_require__(131);
871
+ Object.defineProperty(exports$1, "hr", ({ enumerable: true, get: function () { return hr_1.hr; } }));
872
+ var sr_1 = __webpack_require__(716);
873
+ Object.defineProperty(exports$1, "sr", ({ enumerable: true, get: function () { return sr_1.sr; } }));
869
874
 
870
875
 
871
- /***/ }),
876
+ /***/ },
872
877
 
873
- /***/ 420:
874
- /***/ ((__unused_webpack_module, exports$1, __webpack_require__) => {
878
+ /***/ 420
879
+ (__unused_webpack_module, exports$1, __webpack_require__) {
875
880
 
876
881
 
877
882
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -892,10 +897,10 @@ function requireCronstrueI18n () {
892
897
  exports$1.allLocalesLoader = allLocalesLoader;
893
898
 
894
899
 
895
- /***/ }),
900
+ /***/ },
896
901
 
897
- /***/ 810:
898
- /***/ ((__unused_webpack_module, exports$1) => {
902
+ /***/ 810
903
+ (__unused_webpack_module, exports$1) {
899
904
 
900
905
 
901
906
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -1075,15 +1080,18 @@ function requireCronstrueI18n () {
1075
1080
  "Desember",
1076
1081
  ];
1077
1082
  };
1083
+ af.prototype.onTheHour = function () {
1084
+ return "op die uur";
1085
+ };
1078
1086
  return af;
1079
1087
  }());
1080
1088
  exports$1.af = af;
1081
1089
 
1082
1090
 
1083
- /***/ }),
1091
+ /***/ },
1084
1092
 
1085
- /***/ 574:
1086
- /***/ ((__unused_webpack_module, exports$1) => {
1093
+ /***/ 574
1094
+ (__unused_webpack_module, exports$1) {
1087
1095
 
1088
1096
 
1089
1097
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -1263,15 +1271,18 @@ function requireCronstrueI18n () {
1263
1271
  "ديسمبر",
1264
1272
  ];
1265
1273
  };
1274
+ ar.prototype.onTheHour = function () {
1275
+ return "في تمام الساعة";
1276
+ };
1266
1277
  return ar;
1267
1278
  }());
1268
1279
  exports$1.ar = ar;
1269
1280
 
1270
1281
 
1271
- /***/ }),
1282
+ /***/ },
1272
1283
 
1273
- /***/ 348:
1274
- /***/ ((__unused_webpack_module, exports$1) => {
1284
+ /***/ 348
1285
+ (__unused_webpack_module, exports$1) {
1275
1286
 
1276
1287
 
1277
1288
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -1448,15 +1459,18 @@ function requireCronstrueI18n () {
1448
1459
  "снежань",
1449
1460
  ];
1450
1461
  };
1462
+ be.prototype.onTheHour = function () {
1463
+ return "роўна ў гадзіну";
1464
+ };
1451
1465
  return be;
1452
1466
  }());
1453
1467
  exports$1.be = be;
1454
1468
 
1455
1469
 
1456
- /***/ }),
1470
+ /***/ },
1457
1471
 
1458
- /***/ 622:
1459
- /***/ ((__unused_webpack_module, exports$1) => {
1472
+ /***/ 622
1473
+ (__unused_webpack_module, exports$1) {
1460
1474
 
1461
1475
 
1462
1476
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -1639,15 +1653,18 @@ function requireCronstrueI18n () {
1639
1653
  bg.prototype.monthsOfTheYear = function () {
1640
1654
  return ['януари', 'февруари', 'март', 'април', 'май', 'юни', 'юли', 'август', 'септевмври', 'октомври', 'ноември', 'декември'];
1641
1655
  };
1656
+ bg.prototype.onTheHour = function () {
1657
+ return "в началото на часа";
1658
+ };
1642
1659
  return bg;
1643
1660
  }());
1644
1661
  exports$1.bg = bg;
1645
1662
 
1646
1663
 
1647
- /***/ }),
1664
+ /***/ },
1648
1665
 
1649
- /***/ 845:
1650
- /***/ ((__unused_webpack_module, exports$1) => {
1666
+ /***/ 845
1667
+ (__unused_webpack_module, exports$1) {
1651
1668
 
1652
1669
 
1653
1670
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -1824,15 +1841,18 @@ function requireCronstrueI18n () {
1824
1841
  "desembre",
1825
1842
  ];
1826
1843
  };
1844
+ ca.prototype.onTheHour = function () {
1845
+ return "en punt";
1846
+ };
1827
1847
  return ca;
1828
1848
  }());
1829
1849
  exports$1.ca = ca;
1830
1850
 
1831
1851
 
1832
- /***/ }),
1852
+ /***/ },
1833
1853
 
1834
- /***/ 651:
1835
- /***/ ((__unused_webpack_module, exports$1) => {
1854
+ /***/ 651
1855
+ (__unused_webpack_module, exports$1) {
1836
1856
 
1837
1857
 
1838
1858
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -2009,15 +2029,18 @@ function requireCronstrueI18n () {
2009
2029
  "Prosinec",
2010
2030
  ];
2011
2031
  };
2032
+ cs.prototype.onTheHour = function () {
2033
+ return "v celou hodinu";
2034
+ };
2012
2035
  return cs;
2013
2036
  }());
2014
2037
  exports$1.cs = cs;
2015
2038
 
2016
2039
 
2017
- /***/ }),
2040
+ /***/ },
2018
2041
 
2019
- /***/ 506:
2020
- /***/ ((__unused_webpack_module, exports$1) => {
2042
+ /***/ 506
2043
+ (__unused_webpack_module, exports$1) {
2021
2044
 
2022
2045
 
2023
2046
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -2194,15 +2217,18 @@ function requireCronstrueI18n () {
2194
2217
  "december",
2195
2218
  ];
2196
2219
  };
2220
+ da.prototype.onTheHour = function () {
2221
+ return "på timen";
2222
+ };
2197
2223
  return da;
2198
2224
  }());
2199
2225
  exports$1.da = da;
2200
2226
 
2201
2227
 
2202
- /***/ }),
2228
+ /***/ },
2203
2229
 
2204
- /***/ 230:
2205
- /***/ ((__unused_webpack_module, exports$1) => {
2230
+ /***/ 230
2231
+ (__unused_webpack_module, exports$1) {
2206
2232
 
2207
2233
 
2208
2234
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -2379,15 +2405,18 @@ function requireCronstrueI18n () {
2379
2405
  "Dezember",
2380
2406
  ];
2381
2407
  };
2408
+ de.prototype.onTheHour = function () {
2409
+ return "zur vollen Stunde";
2410
+ };
2382
2411
  return de;
2383
2412
  }());
2384
2413
  exports$1.de = de;
2385
2414
 
2386
2415
 
2387
- /***/ }),
2416
+ /***/ },
2388
2417
 
2389
- /***/ 486:
2390
- /***/ ((__unused_webpack_module, exports$1) => {
2418
+ /***/ 486
2419
+ (__unused_webpack_module, exports$1) {
2391
2420
 
2392
2421
 
2393
2422
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -2531,7 +2560,7 @@ function requireCronstrueI18n () {
2531
2560
  return ", on the %s of the month";
2532
2561
  };
2533
2562
  en.prototype.commaEveryX0Days = function () {
2534
- return ", every %s days";
2563
+ return ", every %s days in a month";
2535
2564
  };
2536
2565
  en.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
2537
2566
  return ", between day %s and %s of the month";
@@ -2567,15 +2596,21 @@ function requireCronstrueI18n () {
2567
2596
  "December",
2568
2597
  ];
2569
2598
  };
2599
+ en.prototype.atReboot = function () {
2600
+ return "Run once, at startup";
2601
+ };
2602
+ en.prototype.onTheHour = function () {
2603
+ return "on the hour";
2604
+ };
2570
2605
  return en;
2571
2606
  }());
2572
2607
  exports$1.en = en;
2573
2608
 
2574
2609
 
2575
- /***/ }),
2610
+ /***/ },
2576
2611
 
2577
- /***/ 153:
2578
- /***/ ((__unused_webpack_module, exports$1) => {
2612
+ /***/ 153
2613
+ (__unused_webpack_module, exports$1) {
2579
2614
 
2580
2615
 
2581
2616
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -2752,15 +2787,18 @@ function requireCronstrueI18n () {
2752
2787
  "diciembre",
2753
2788
  ];
2754
2789
  };
2790
+ es.prototype.onTheHour = function () {
2791
+ return "en punto";
2792
+ };
2755
2793
  return es;
2756
2794
  }());
2757
2795
  exports$1.es = es;
2758
2796
 
2759
2797
 
2760
- /***/ }),
2798
+ /***/ },
2761
2799
 
2762
- /***/ 804:
2763
- /***/ ((__unused_webpack_module, exports$1) => {
2800
+ /***/ 804
2801
+ (__unused_webpack_module, exports$1) {
2764
2802
 
2765
2803
 
2766
2804
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -2930,15 +2968,18 @@ function requireCronstrueI18n () {
2930
2968
  fa.prototype.monthsOfTheYear = function () {
2931
2969
  return ["ژانویه", "فوریه", "مارس", "آپریل", "مه", "ژوئن", "ژوئیه", "آگوست", "سپتامبر", "اکتبر", "نوامبر", "دسامبر"];
2932
2970
  };
2971
+ fa.prototype.onTheHour = function () {
2972
+ return "سر ساعت";
2973
+ };
2933
2974
  return fa;
2934
2975
  }());
2935
2976
  exports$1.fa = fa;
2936
2977
 
2937
2978
 
2938
- /***/ }),
2979
+ /***/ },
2939
2980
 
2940
- /***/ 964:
2941
- /***/ ((__unused_webpack_module, exports$1) => {
2981
+ /***/ 964
2982
+ (__unused_webpack_module, exports$1) {
2942
2983
 
2943
2984
 
2944
2985
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -3124,15 +3165,18 @@ function requireCronstrueI18n () {
3124
3165
  "joulukuu",
3125
3166
  ];
3126
3167
  };
3168
+ fi.prototype.onTheHour = function () {
3169
+ return "tasalta";
3170
+ };
3127
3171
  return fi;
3128
3172
  }());
3129
3173
  exports$1.fi = fi;
3130
3174
 
3131
3175
 
3132
- /***/ }),
3176
+ /***/ },
3133
3177
 
3134
- /***/ 517:
3135
- /***/ ((__unused_webpack_module, exports$1) => {
3178
+ /***/ 517
3179
+ (__unused_webpack_module, exports$1) {
3136
3180
 
3137
3181
 
3138
3182
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -3320,15 +3364,18 @@ function requireCronstrueI18n () {
3320
3364
  "décembre",
3321
3365
  ];
3322
3366
  };
3367
+ fr.prototype.onTheHour = function () {
3368
+ return "à l'heure pile";
3369
+ };
3323
3370
  return fr;
3324
3371
  }());
3325
3372
  exports$1.fr = fr;
3326
3373
 
3327
3374
 
3328
- /***/ }),
3375
+ /***/ },
3329
3376
 
3330
- /***/ 82:
3331
- /***/ ((__unused_webpack_module, exports$1) => {
3377
+ /***/ 82
3378
+ (__unused_webpack_module, exports$1) {
3332
3379
 
3333
3380
 
3334
3381
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -3492,15 +3539,214 @@ function requireCronstrueI18n () {
3492
3539
  he.prototype.monthsOfTheYear = function () {
3493
3540
  return ["ינואר", "פברואר", "מרץ", "אפריל", "מאי", "יוני", "יולי", "אוגוסט", "ספטמבר", "אוקטובר", "נובמבר", "דצמבר"];
3494
3541
  };
3542
+ he.prototype.onTheHour = function () {
3543
+ return "בשעה עגולה";
3544
+ };
3495
3545
  return he;
3496
3546
  }());
3497
3547
  exports$1.he = he;
3498
3548
 
3499
3549
 
3500
- /***/ }),
3550
+ /***/ },
3551
+
3552
+ /***/ 131
3553
+ (__unused_webpack_module, exports$1) {
3554
+
3555
+
3556
+ Object.defineProperty(exports$1, "__esModule", ({ value: true }));
3557
+ exports$1.hr = void 0;
3558
+ var hr = (function () {
3559
+ function hr() {
3560
+ }
3561
+ hr.prototype.use24HourTimeFormatByDefault = function () {
3562
+ return true;
3563
+ };
3564
+ hr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
3565
+ return "Došlo je do pogreške pri generiranju izraza. Provjerite sintaksu cron izraza.";
3566
+ };
3567
+ hr.prototype.at = function () {
3568
+ return "U";
3569
+ };
3570
+ hr.prototype.atSpace = function () {
3571
+ return "U ";
3572
+ };
3573
+ hr.prototype.atX0 = function () {
3574
+ return "u %s";
3575
+ };
3576
+ hr.prototype.atX0MinutesPastTheHour = function () {
3577
+ return "u %s minuta nakon punog sata";
3578
+ };
3579
+ hr.prototype.atX0SecondsPastTheMinute = function () {
3580
+ return "u %s sekundi nakon pune minute";
3581
+ };
3582
+ hr.prototype.betweenX0AndX1 = function () {
3583
+ return "između %s i %s";
3584
+ };
3585
+ hr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
3586
+ return ", između %s. i %s. dana u mjesecu";
3587
+ };
3588
+ hr.prototype.commaEveryDay = function () {
3589
+ return ", svaki dan";
3590
+ };
3591
+ hr.prototype.commaEveryX0Days = function () {
3592
+ return ", svakih %s dana";
3593
+ };
3594
+ hr.prototype.commaEveryX0DaysOfTheWeek = function () {
3595
+ return ", svakih %s dana u tjednu";
3596
+ };
3597
+ hr.prototype.commaEveryX0Months = function () {
3598
+ return ", svakih %s mjeseci";
3599
+ };
3600
+ hr.prototype.commaEveryX0Years = function () {
3601
+ return ", svakih %s godina";
3602
+ };
3603
+ hr.prototype.commaOnDayX0OfTheMonth = function () {
3604
+ return ", %s. dan u mjesecu";
3605
+ };
3606
+ hr.prototype.commaOnlyInX0 = function () {
3607
+ return ", samo u %s";
3608
+ };
3609
+ hr.prototype.commaOnlyOnX0 = function () {
3610
+ return ", samo %s";
3611
+ };
3612
+ hr.prototype.commaAndOnX0 = function () {
3613
+ return ", i %s";
3614
+ };
3615
+ hr.prototype.commaOnThe = function () {
3616
+ return ", ";
3617
+ };
3618
+ hr.prototype.commaOnTheLastDayOfTheMonth = function () {
3619
+ return ", zadnji dan u mjesecu";
3620
+ };
3621
+ hr.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
3622
+ return ", zadnji radni dan u mjesecu";
3623
+ };
3624
+ hr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
3625
+ return ", %s dana prije kraja mjeseca";
3626
+ };
3627
+ hr.prototype.commaOnTheLastX0OfTheMonth = function () {
3628
+ return ", zadnji %s u mjesecu";
3629
+ };
3630
+ hr.prototype.commaOnTheX0OfTheMonth = function () {
3631
+ return ", %s u mjesecu";
3632
+ };
3633
+ hr.prototype.commaX0ThroughX1 = function () {
3634
+ return ", od %s do %s";
3635
+ };
3636
+ hr.prototype.commaAndX0ThroughX1 = function () {
3637
+ return ", i od %s do %s";
3638
+ };
3639
+ hr.prototype.everyHour = function () {
3640
+ return "svaki sat";
3641
+ };
3642
+ hr.prototype.everyMinute = function () {
3643
+ return "svaku minutu";
3644
+ };
3645
+ hr.prototype.everyMinuteBetweenX0AndX1 = function () {
3646
+ return "Svaku minutu između %s i %s";
3647
+ };
3648
+ hr.prototype.everySecond = function () {
3649
+ return "svaku sekundu";
3650
+ };
3651
+ hr.prototype.everyX0Hours = function () {
3652
+ return "svakih %s sati";
3653
+ };
3654
+ hr.prototype.everyX0Minutes = function () {
3655
+ return "svakih %s minuta";
3656
+ };
3657
+ hr.prototype.everyX0Seconds = function () {
3658
+ return "svakih %s sekundi";
3659
+ };
3660
+ hr.prototype.fifth = function () {
3661
+ return "peti";
3662
+ };
3663
+ hr.prototype.first = function () {
3664
+ return "prvi";
3665
+ };
3666
+ hr.prototype.firstWeekday = function () {
3667
+ return "prvi radni dan";
3668
+ };
3669
+ hr.prototype.fourth = function () {
3670
+ return "četvrti";
3671
+ };
3672
+ hr.prototype.minutesX0ThroughX1PastTheHour = function () {
3673
+ return "minute od %s do %s nakon punog sata";
3674
+ };
3675
+ hr.prototype.second = function () {
3676
+ return "drugi";
3677
+ };
3678
+ hr.prototype.secondsX0ThroughX1PastTheMinute = function () {
3679
+ return "sekunde od %s do %s nakon pune minute";
3680
+ };
3681
+ hr.prototype.spaceAnd = function () {
3682
+ return " i";
3683
+ };
3684
+ hr.prototype.spaceX0OfTheMonth = function () {
3685
+ return " %s u mjesecu";
3686
+ };
3687
+ hr.prototype.lastDay = function () {
3688
+ return "zadnji dan";
3689
+ };
3690
+ hr.prototype.third = function () {
3691
+ return "treći";
3692
+ };
3693
+ hr.prototype.weekdayNearestDayX0 = function () {
3694
+ return "radni dan najbliži %s. danu";
3695
+ };
3696
+ hr.prototype.commaMonthX0ThroughMonthX1 = function () {
3697
+ return null;
3698
+ };
3699
+ hr.prototype.commaYearX0ThroughYearX1 = function () {
3700
+ return null;
3701
+ };
3702
+ hr.prototype.atX0MinutesPastTheHourGt20 = function () {
3703
+ return null;
3704
+ };
3705
+ hr.prototype.atX0SecondsPastTheMinuteGt20 = function () {
3706
+ return null;
3707
+ };
3708
+ hr.prototype.commaStartingX0 = function () {
3709
+ return ", počevši od %s";
3710
+ };
3711
+ hr.prototype.daysOfTheWeek = function () {
3712
+ return [
3713
+ "Nedjelja",
3714
+ "Ponedjeljak",
3715
+ "Utorak",
3716
+ "Srijeda",
3717
+ "Četvrtak",
3718
+ "Petak",
3719
+ "Subota",
3720
+ ];
3721
+ };
3722
+ hr.prototype.monthsOfTheYear = function () {
3723
+ return [
3724
+ "siječanj",
3725
+ "veljača",
3726
+ "ožujak",
3727
+ "travanj",
3728
+ "svibanj",
3729
+ "lipanj",
3730
+ "srpanj",
3731
+ "kolovoz",
3732
+ "rujan",
3733
+ "listopad",
3734
+ "studeni",
3735
+ "prosinac",
3736
+ ];
3737
+ };
3738
+ hr.prototype.onTheHour = function () {
3739
+ return "u puni sat";
3740
+ };
3741
+ return hr;
3742
+ }());
3743
+ exports$1.hr = hr;
3744
+
3745
+
3746
+ /***/ },
3501
3747
 
3502
- /***/ 194:
3503
- /***/ ((__unused_webpack_module, exports$1) => {
3748
+ /***/ 194
3749
+ (__unused_webpack_module, exports$1) {
3504
3750
 
3505
3751
 
3506
3752
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -3680,15 +3926,18 @@ function requireCronstrueI18n () {
3680
3926
  "december",
3681
3927
  ];
3682
3928
  };
3929
+ hu.prototype.onTheHour = function () {
3930
+ return "órakor";
3931
+ };
3683
3932
  return hu;
3684
3933
  }());
3685
3934
  exports$1.hu = hu;
3686
3935
 
3687
3936
 
3688
- /***/ }),
3937
+ /***/ },
3689
3938
 
3690
- /***/ 72:
3691
- /***/ ((__unused_webpack_module, exports$1) => {
3939
+ /***/ 72
3940
+ (__unused_webpack_module, exports$1) {
3692
3941
 
3693
3942
 
3694
3943
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -3868,15 +4117,18 @@ function requireCronstrueI18n () {
3868
4117
  "Desember",
3869
4118
  ];
3870
4119
  };
4120
+ id.prototype.onTheHour = function () {
4121
+ return "tepat pada jam";
4122
+ };
3871
4123
  return id;
3872
4124
  }());
3873
4125
  exports$1.id = id;
3874
4126
 
3875
4127
 
3876
- /***/ }),
4128
+ /***/ },
3877
4129
 
3878
- /***/ 488:
3879
- /***/ ((__unused_webpack_module, exports$1) => {
4130
+ /***/ 488
4131
+ (__unused_webpack_module, exports$1) {
3880
4132
 
3881
4133
 
3882
4134
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -4053,15 +4305,18 @@ function requireCronstrueI18n () {
4053
4305
  "dicembre",
4054
4306
  ];
4055
4307
  };
4308
+ it.prototype.onTheHour = function () {
4309
+ return "all'ora esatta";
4310
+ };
4056
4311
  return it;
4057
4312
  }());
4058
4313
  exports$1.it = it;
4059
4314
 
4060
4315
 
4061
- /***/ }),
4316
+ /***/ },
4062
4317
 
4063
- /***/ 904:
4064
- /***/ ((__unused_webpack_module, exports$1) => {
4318
+ /***/ 904
4319
+ (__unused_webpack_module, exports$1) {
4065
4320
 
4066
4321
 
4067
4322
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -4240,15 +4495,18 @@ function requireCronstrueI18n () {
4240
4495
  ja.prototype.monthsOfTheYear = function () {
4241
4496
  return ["1月", "2月", "3月", "4月", "5月", "6月", "7月", "8月", "9月", "10月", "11月", "12月"];
4242
4497
  };
4498
+ ja.prototype.onTheHour = function () {
4499
+ return "時ちょうど";
4500
+ };
4243
4501
  return ja;
4244
4502
  }());
4245
4503
  exports$1.ja = ja;
4246
4504
 
4247
4505
 
4248
- /***/ }),
4506
+ /***/ },
4249
4507
 
4250
- /***/ 839:
4251
- /***/ ((__unused_webpack_module, exports$1) => {
4508
+ /***/ 839
4509
+ (__unused_webpack_module, exports$1) {
4252
4510
 
4253
4511
 
4254
4512
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -4293,7 +4551,7 @@ function requireCronstrueI18n () {
4293
4551
  return "시간 ";
4294
4552
  };
4295
4553
  ko.prototype.everyMinuteBetweenX0AndX1 = function () {
4296
- return "%s %s 사이에 매 분";
4554
+ return "매분 %s~%s";
4297
4555
  };
4298
4556
  ko.prototype.at = function () {
4299
4557
  return "시간";
@@ -4308,19 +4566,19 @@ function requireCronstrueI18n () {
4308
4566
  return "%s초마다";
4309
4567
  };
4310
4568
  ko.prototype.secondsX0ThroughX1PastTheMinute = function () {
4311
- return "정분 후 %s초에서 %s초까지";
4569
+ return "%s~%s";
4312
4570
  };
4313
4571
  ko.prototype.atX0SecondsPastTheMinute = function () {
4314
- return "정분 후 %s초에서";
4572
+ return "%s";
4315
4573
  };
4316
4574
  ko.prototype.everyX0Minutes = function () {
4317
4575
  return "%s분마다";
4318
4576
  };
4319
4577
  ko.prototype.minutesX0ThroughX1PastTheHour = function () {
4320
- return "정시 후 %s분에서 %s분까지";
4578
+ return "%s~%s";
4321
4579
  };
4322
4580
  ko.prototype.atX0MinutesPastTheHour = function () {
4323
- return "정시 후 %s분에서";
4581
+ return "%s";
4324
4582
  };
4325
4583
  ko.prototype.everyX0Hours = function () {
4326
4584
  return "%s시간마다";
@@ -4359,10 +4617,10 @@ function requireCronstrueI18n () {
4359
4617
  return "다섯 번째";
4360
4618
  };
4361
4619
  ko.prototype.commaOnThe = function () {
4362
- return ", 해당 ";
4620
+ return ", 매월 ";
4363
4621
  };
4364
4622
  ko.prototype.spaceX0OfTheMonth = function () {
4365
- return " 해당 월의 %s";
4623
+ return " %s";
4366
4624
  };
4367
4625
  ko.prototype.lastDay = function () {
4368
4626
  return "마지막 날";
@@ -4386,7 +4644,7 @@ function requireCronstrueI18n () {
4386
4644
  return ", 해당 월의 마지막 날에";
4387
4645
  };
4388
4646
  ko.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
4389
- return ", 해당 월의 마지막 평일에";
4647
+ return ", 매월 마지막 평일";
4390
4648
  };
4391
4649
  ko.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
4392
4650
  return ", 해당 월의 마지막 날 %s일 전";
@@ -4398,7 +4656,7 @@ function requireCronstrueI18n () {
4398
4656
  return "%s일과 가장 가까운 평일";
4399
4657
  };
4400
4658
  ko.prototype.commaOnTheX0OfTheMonth = function () {
4401
- return ", 해당 월의 %s";
4659
+ return ", 매월 %s";
4402
4660
  };
4403
4661
  ko.prototype.commaEveryX0Days = function () {
4404
4662
  return ", %s일마다";
@@ -4407,7 +4665,7 @@ function requireCronstrueI18n () {
4407
4665
  return ", 해당 월의 %s일에서 %s일까지";
4408
4666
  };
4409
4667
  ko.prototype.commaOnDayX0OfTheMonth = function () {
4410
- return ", 해당 월의 %s일에";
4668
+ return ", 매월 %s";
4411
4669
  };
4412
4670
  ko.prototype.commaEveryMinute = function () {
4413
4671
  return ", 1분마다";
@@ -4427,15 +4685,18 @@ function requireCronstrueI18n () {
4427
4685
  ko.prototype.monthsOfTheYear = function () {
4428
4686
  return ["1월", "2월", "3월", "4월", "5월", "6월", "7월", "8월", "9월", "10월", "11월", "12월"];
4429
4687
  };
4688
+ ko.prototype.onTheHour = function () {
4689
+ return "정각";
4690
+ };
4430
4691
  return ko;
4431
4692
  }());
4432
4693
  exports$1.ko = ko;
4433
4694
 
4434
4695
 
4435
- /***/ }),
4696
+ /***/ },
4436
4697
 
4437
- /***/ 919:
4438
- /***/ ((__unused_webpack_module, exports$1) => {
4698
+ /***/ 919
4699
+ (__unused_webpack_module, exports$1) {
4439
4700
 
4440
4701
 
4441
4702
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -4615,15 +4876,18 @@ function requireCronstrueI18n () {
4615
4876
  "Disember",
4616
4877
  ];
4617
4878
  };
4879
+ my.prototype.onTheHour = function () {
4880
+ return "pada waktu yang tepat";
4881
+ };
4618
4882
  return my;
4619
4883
  }());
4620
4884
  exports$1.my = my;
4621
4885
 
4622
4886
 
4623
- /***/ }),
4887
+ /***/ },
4624
4888
 
4625
- /***/ 957:
4626
- /***/ ((__unused_webpack_module, exports$1) => {
4889
+ /***/ 957
4890
+ (__unused_webpack_module, exports$1) {
4627
4891
 
4628
4892
 
4629
4893
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -4800,15 +5064,18 @@ function requireCronstrueI18n () {
4800
5064
  "desember",
4801
5065
  ];
4802
5066
  };
5067
+ nb.prototype.onTheHour = function () {
5068
+ return "på timen";
5069
+ };
4803
5070
  return nb;
4804
5071
  }());
4805
5072
  exports$1.nb = nb;
4806
5073
 
4807
5074
 
4808
- /***/ }),
5075
+ /***/ },
4809
5076
 
4810
- /***/ 647:
4811
- /***/ ((__unused_webpack_module, exports$1) => {
5077
+ /***/ 647
5078
+ (__unused_webpack_module, exports$1) {
4812
5079
 
4813
5080
 
4814
5081
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -4985,15 +5252,18 @@ function requireCronstrueI18n () {
4985
5252
  "december",
4986
5253
  ];
4987
5254
  };
5255
+ nl.prototype.onTheHour = function () {
5256
+ return "op het hele uur";
5257
+ };
4988
5258
  return nl;
4989
5259
  }());
4990
5260
  exports$1.nl = nl;
4991
5261
 
4992
5262
 
4993
- /***/ }),
5263
+ /***/ },
4994
5264
 
4995
- /***/ 905:
4996
- /***/ ((__unused_webpack_module, exports$1) => {
5265
+ /***/ 905
5266
+ (__unused_webpack_module, exports$1) {
4997
5267
 
4998
5268
 
4999
5269
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -5170,15 +5440,18 @@ function requireCronstrueI18n () {
5170
5440
  "grudzień",
5171
5441
  ];
5172
5442
  };
5443
+ pl.prototype.onTheHour = function () {
5444
+ return "o pełnej godzinie";
5445
+ };
5173
5446
  return pl;
5174
5447
  }());
5175
5448
  exports$1.pl = pl;
5176
5449
 
5177
5450
 
5178
- /***/ }),
5451
+ /***/ },
5179
5452
 
5180
- /***/ 556:
5181
- /***/ ((__unused_webpack_module, exports$1) => {
5453
+ /***/ 556
5454
+ (__unused_webpack_module, exports$1) {
5182
5455
 
5183
5456
 
5184
5457
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -5355,15 +5628,18 @@ function requireCronstrueI18n () {
5355
5628
  "dezembro",
5356
5629
  ];
5357
5630
  };
5631
+ pt_BR.prototype.onTheHour = function () {
5632
+ return "na hora certa";
5633
+ };
5358
5634
  return pt_BR;
5359
5635
  }());
5360
5636
  exports$1.pt_BR = pt_BR;
5361
5637
 
5362
5638
 
5363
- /***/ }),
5639
+ /***/ },
5364
5640
 
5365
- /***/ 163:
5366
- /***/ ((__unused_webpack_module, exports$1) => {
5641
+ /***/ 163
5642
+ (__unused_webpack_module, exports$1) {
5367
5643
 
5368
5644
 
5369
5645
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -5540,15 +5816,18 @@ function requireCronstrueI18n () {
5540
5816
  "dezembro",
5541
5817
  ];
5542
5818
  };
5819
+ pt_PT.prototype.onTheHour = function () {
5820
+ return "à hora certa";
5821
+ };
5543
5822
  return pt_PT;
5544
5823
  }());
5545
5824
  exports$1.pt_PT = pt_PT;
5546
5825
 
5547
5826
 
5548
- /***/ }),
5827
+ /***/ },
5549
5828
 
5550
- /***/ 614:
5551
- /***/ ((__unused_webpack_module, exports$1) => {
5829
+ /***/ 614
5830
+ (__unused_webpack_module, exports$1) {
5552
5831
 
5553
5832
 
5554
5833
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -5725,15 +6004,18 @@ function requireCronstrueI18n () {
5725
6004
  "decembrie",
5726
6005
  ];
5727
6006
  };
6007
+ ro.prototype.onTheHour = function () {
6008
+ return "fix la oră";
6009
+ };
5728
6010
  return ro;
5729
6011
  }());
5730
6012
  exports$1.ro = ro;
5731
6013
 
5732
6014
 
5733
- /***/ }),
6015
+ /***/ },
5734
6016
 
5735
- /***/ 892:
5736
- /***/ ((__unused_webpack_module, exports$1) => {
6017
+ /***/ 892
6018
+ (__unused_webpack_module, exports$1) {
5737
6019
 
5738
6020
 
5739
6021
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -5823,7 +6105,7 @@ function requireCronstrueI18n () {
5823
6105
  return ", каждый день";
5824
6106
  };
5825
6107
  ru.prototype.commaEveryX0DaysOfTheWeek = function (s) {
5826
- return getPhraseByNumber(s, ["", ", каждые %s дня недели", ", каждые %s дней недели"]);
6108
+ return getPhraseByNumber(s, [", каждый %s день недели", ", каждые %s дня недели", ", каждые %s дней недели"]);
5827
6109
  };
5828
6110
  ru.prototype.commaX0ThroughX1 = function (s) {
5829
6111
  return s && (s[0] == "2" || s[0] == "3") ? ", со %s по %s" : ", с %s по %s";
@@ -5953,15 +6235,18 @@ function requireCronstrueI18n () {
5953
6235
  ]
5954
6236
  : this.monthsOfTheYear();
5955
6237
  };
6238
+ ru.prototype.onTheHour = function () {
6239
+ return "ровно в час";
6240
+ };
5956
6241
  return ru;
5957
6242
  }());
5958
6243
  exports$1.ru = ru;
5959
6244
 
5960
6245
 
5961
- /***/ }),
6246
+ /***/ },
5962
6247
 
5963
- /***/ 923:
5964
- /***/ ((__unused_webpack_module, exports$1) => {
6248
+ /***/ 923
6249
+ (__unused_webpack_module, exports$1) {
5965
6250
 
5966
6251
 
5967
6252
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -6138,15 +6423,18 @@ function requireCronstrueI18n () {
6138
6423
  "December",
6139
6424
  ];
6140
6425
  };
6426
+ sk.prototype.onTheHour = function () {
6427
+ return "o celú hodinu";
6428
+ };
6141
6429
  return sk;
6142
6430
  }());
6143
6431
  exports$1.sk = sk;
6144
6432
 
6145
6433
 
6146
- /***/ }),
6434
+ /***/ },
6147
6435
 
6148
- /***/ 474:
6149
- /***/ ((__unused_webpack_module, exports$1) => {
6436
+ /***/ 474
6437
+ (__unused_webpack_module, exports$1) {
6150
6438
 
6151
6439
 
6152
6440
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -6323,15 +6611,214 @@ function requireCronstrueI18n () {
6323
6611
  "december",
6324
6612
  ];
6325
6613
  };
6614
+ sl.prototype.onTheHour = function () {
6615
+ return "ob točni uri";
6616
+ };
6326
6617
  return sl;
6327
6618
  }());
6328
6619
  exports$1.sl = sl;
6329
6620
 
6330
6621
 
6331
- /***/ }),
6622
+ /***/ },
6332
6623
 
6333
- /***/ 544:
6334
- /***/ ((__unused_webpack_module, exports$1) => {
6624
+ /***/ 716
6625
+ (__unused_webpack_module, exports$1) {
6626
+
6627
+
6628
+ Object.defineProperty(exports$1, "__esModule", ({ value: true }));
6629
+ exports$1.sr = void 0;
6630
+ var sr = (function () {
6631
+ function sr() {
6632
+ }
6633
+ sr.prototype.use24HourTimeFormatByDefault = function () {
6634
+ return true;
6635
+ };
6636
+ sr.prototype.anErrorOccuredWhenGeneratingTheExpressionD = function () {
6637
+ return "Došlo je do greške pri generisanju izraza. Proverite sintaksu cron izraza.";
6638
+ };
6639
+ sr.prototype.at = function () {
6640
+ return "U";
6641
+ };
6642
+ sr.prototype.atSpace = function () {
6643
+ return "U ";
6644
+ };
6645
+ sr.prototype.atX0 = function () {
6646
+ return "u %s";
6647
+ };
6648
+ sr.prototype.atX0MinutesPastTheHour = function () {
6649
+ return "u %s minuta posle punog sata";
6650
+ };
6651
+ sr.prototype.atX0SecondsPastTheMinute = function () {
6652
+ return "u %s sekundi posle pune minute";
6653
+ };
6654
+ sr.prototype.betweenX0AndX1 = function () {
6655
+ return "između %s i %s";
6656
+ };
6657
+ sr.prototype.commaBetweenDayX0AndX1OfTheMonth = function () {
6658
+ return ", između %s. i %s. dana u mesecu";
6659
+ };
6660
+ sr.prototype.commaEveryDay = function () {
6661
+ return ", svaki dan";
6662
+ };
6663
+ sr.prototype.commaEveryX0Days = function () {
6664
+ return ", svakih %s dana";
6665
+ };
6666
+ sr.prototype.commaEveryX0DaysOfTheWeek = function () {
6667
+ return ", svakih %s dana u nedelji";
6668
+ };
6669
+ sr.prototype.commaEveryX0Months = function () {
6670
+ return ", svakih %s meseci";
6671
+ };
6672
+ sr.prototype.commaEveryX0Years = function () {
6673
+ return ", svakih %s godina";
6674
+ };
6675
+ sr.prototype.commaOnDayX0OfTheMonth = function () {
6676
+ return ", %s. dan u mesecu";
6677
+ };
6678
+ sr.prototype.commaOnlyInX0 = function () {
6679
+ return ", samo u %s";
6680
+ };
6681
+ sr.prototype.commaOnlyOnX0 = function () {
6682
+ return ", samo %s";
6683
+ };
6684
+ sr.prototype.commaAndOnX0 = function () {
6685
+ return ", i %s";
6686
+ };
6687
+ sr.prototype.commaOnThe = function () {
6688
+ return ", ";
6689
+ };
6690
+ sr.prototype.commaOnTheLastDayOfTheMonth = function () {
6691
+ return ", poslednjeg dana u mesecu";
6692
+ };
6693
+ sr.prototype.commaOnTheLastWeekdayOfTheMonth = function () {
6694
+ return ", poslednjeg radnog dana u mesecu";
6695
+ };
6696
+ sr.prototype.commaDaysBeforeTheLastDayOfTheMonth = function () {
6697
+ return ", %s dana pre kraja meseca";
6698
+ };
6699
+ sr.prototype.commaOnTheLastX0OfTheMonth = function () {
6700
+ return ", poslednji %s u mesecu";
6701
+ };
6702
+ sr.prototype.commaOnTheX0OfTheMonth = function () {
6703
+ return ", %s u mesecu";
6704
+ };
6705
+ sr.prototype.commaX0ThroughX1 = function () {
6706
+ return ", od %s do %s";
6707
+ };
6708
+ sr.prototype.commaAndX0ThroughX1 = function () {
6709
+ return ", i od %s do %s";
6710
+ };
6711
+ sr.prototype.everyHour = function () {
6712
+ return "svaki sat";
6713
+ };
6714
+ sr.prototype.everyMinute = function () {
6715
+ return "svakog minuta";
6716
+ };
6717
+ sr.prototype.everyMinuteBetweenX0AndX1 = function () {
6718
+ return "Svakog minuta između %s i %s";
6719
+ };
6720
+ sr.prototype.everySecond = function () {
6721
+ return "svake sekunde";
6722
+ };
6723
+ sr.prototype.everyX0Hours = function () {
6724
+ return "svakih %s sati";
6725
+ };
6726
+ sr.prototype.everyX0Minutes = function () {
6727
+ return "svakih %s minuta";
6728
+ };
6729
+ sr.prototype.everyX0Seconds = function () {
6730
+ return "svakih %s sekundi";
6731
+ };
6732
+ sr.prototype.fifth = function () {
6733
+ return "peti";
6734
+ };
6735
+ sr.prototype.first = function () {
6736
+ return "prvi";
6737
+ };
6738
+ sr.prototype.firstWeekday = function () {
6739
+ return "prvi radni dan";
6740
+ };
6741
+ sr.prototype.fourth = function () {
6742
+ return "četvrti";
6743
+ };
6744
+ sr.prototype.minutesX0ThroughX1PastTheHour = function () {
6745
+ return "minute od %s do %s posle punog sata";
6746
+ };
6747
+ sr.prototype.second = function () {
6748
+ return "drugi";
6749
+ };
6750
+ sr.prototype.secondsX0ThroughX1PastTheMinute = function () {
6751
+ return "sekunde od %s do %s posle pune minute";
6752
+ };
6753
+ sr.prototype.spaceAnd = function () {
6754
+ return " i";
6755
+ };
6756
+ sr.prototype.spaceX0OfTheMonth = function () {
6757
+ return " %s u mesecu";
6758
+ };
6759
+ sr.prototype.lastDay = function () {
6760
+ return "poslednji dan";
6761
+ };
6762
+ sr.prototype.third = function () {
6763
+ return "treći";
6764
+ };
6765
+ sr.prototype.weekdayNearestDayX0 = function () {
6766
+ return "radni dan najbliži %s. danu";
6767
+ };
6768
+ sr.prototype.commaMonthX0ThroughMonthX1 = function () {
6769
+ return null;
6770
+ };
6771
+ sr.prototype.commaYearX0ThroughYearX1 = function () {
6772
+ return null;
6773
+ };
6774
+ sr.prototype.atX0MinutesPastTheHourGt20 = function () {
6775
+ return null;
6776
+ };
6777
+ sr.prototype.atX0SecondsPastTheMinuteGt20 = function () {
6778
+ return null;
6779
+ };
6780
+ sr.prototype.commaStartingX0 = function () {
6781
+ return ", počevši od %s";
6782
+ };
6783
+ sr.prototype.daysOfTheWeek = function () {
6784
+ return [
6785
+ "Nedelja",
6786
+ "Ponedeljak",
6787
+ "Utorak",
6788
+ "Sreda",
6789
+ "Četvrtak",
6790
+ "Petak",
6791
+ "Subota",
6792
+ ];
6793
+ };
6794
+ sr.prototype.monthsOfTheYear = function () {
6795
+ return [
6796
+ "januar",
6797
+ "februar",
6798
+ "mart",
6799
+ "april",
6800
+ "maj",
6801
+ "jun",
6802
+ "jul",
6803
+ "avgust",
6804
+ "septembar",
6805
+ "oktobar",
6806
+ "novembar",
6807
+ "decembar",
6808
+ ];
6809
+ };
6810
+ sr.prototype.onTheHour = function () {
6811
+ return "u pun sat";
6812
+ };
6813
+ return sr;
6814
+ }());
6815
+ exports$1.sr = sr;
6816
+
6817
+
6818
+ /***/ },
6819
+
6820
+ /***/ 544
6821
+ (__unused_webpack_module, exports$1) {
6335
6822
 
6336
6823
 
6337
6824
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -6508,15 +6995,18 @@ function requireCronstrueI18n () {
6508
6995
  "december",
6509
6996
  ];
6510
6997
  };
6998
+ sv.prototype.onTheHour = function () {
6999
+ return "på heltimmen";
7000
+ };
6511
7001
  return sv;
6512
7002
  }());
6513
7003
  exports$1.sv = sv;
6514
7004
 
6515
7005
 
6516
- /***/ }),
7006
+ /***/ },
6517
7007
 
6518
- /***/ 799:
6519
- /***/ ((__unused_webpack_module, exports$1) => {
7008
+ /***/ 799
7009
+ (__unused_webpack_module, exports$1) {
6520
7010
 
6521
7011
 
6522
7012
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -6693,15 +7183,18 @@ function requireCronstrueI18n () {
6693
7183
  "Desemba",
6694
7184
  ];
6695
7185
  };
7186
+ sw.prototype.onTheHour = function () {
7187
+ return "saa kamili";
7188
+ };
6696
7189
  return sw;
6697
7190
  }());
6698
7191
  exports$1.sw = sw;
6699
7192
 
6700
7193
 
6701
- /***/ }),
7194
+ /***/ },
6702
7195
 
6703
- /***/ 33:
6704
- /***/ ((__unused_webpack_module, exports$1) => {
7196
+ /***/ 33
7197
+ (__unused_webpack_module, exports$1) {
6705
7198
 
6706
7199
 
6707
7200
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -6881,15 +7374,18 @@ function requireCronstrueI18n () {
6881
7374
  "ธันวาคม",
6882
7375
  ];
6883
7376
  };
7377
+ th.prototype.onTheHour = function () {
7378
+ return "ตรงชั่วโมง";
7379
+ };
6884
7380
  return th;
6885
7381
  }());
6886
7382
  exports$1.th = th;
6887
7383
 
6888
7384
 
6889
- /***/ }),
7385
+ /***/ },
6890
7386
 
6891
- /***/ 631:
6892
- /***/ ((__unused_webpack_module, exports$1) => {
7387
+ /***/ 631
7388
+ (__unused_webpack_module, exports$1) {
6893
7389
 
6894
7390
 
6895
7391
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -7066,15 +7562,18 @@ function requireCronstrueI18n () {
7066
7562
  "Aralık",
7067
7563
  ];
7068
7564
  };
7565
+ tr.prototype.onTheHour = function () {
7566
+ return "saatin başında";
7567
+ };
7069
7568
  return tr;
7070
7569
  }());
7071
7570
  exports$1.tr = tr;
7072
7571
 
7073
7572
 
7074
- /***/ }),
7573
+ /***/ },
7075
7574
 
7076
- /***/ 225:
7077
- /***/ ((__unused_webpack_module, exports$1) => {
7575
+ /***/ 225
7576
+ (__unused_webpack_module, exports$1) {
7078
7577
 
7079
7578
 
7080
7579
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -7251,15 +7750,18 @@ function requireCronstrueI18n () {
7251
7750
  "грудень",
7252
7751
  ];
7253
7752
  };
7753
+ uk.prototype.onTheHour = function () {
7754
+ return "рівно о годині";
7755
+ };
7254
7756
  return uk;
7255
7757
  }());
7256
7758
  exports$1.uk = uk;
7257
7759
 
7258
7760
 
7259
- /***/ }),
7761
+ /***/ },
7260
7762
 
7261
- /***/ 292:
7262
- /***/ ((__unused_webpack_module, exports$1) => {
7763
+ /***/ 292
7764
+ (__unused_webpack_module, exports$1) {
7263
7765
 
7264
7766
 
7265
7767
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -7439,15 +7941,18 @@ function requireCronstrueI18n () {
7439
7941
  "Tháng 12",
7440
7942
  ];
7441
7943
  };
7944
+ vi.prototype.onTheHour = function () {
7945
+ return "đúng giờ";
7946
+ };
7442
7947
  return vi;
7443
7948
  }());
7444
7949
  exports$1.vi = vi;
7445
7950
 
7446
7951
 
7447
- /***/ }),
7952
+ /***/ },
7448
7953
 
7449
- /***/ 571:
7450
- /***/ ((__unused_webpack_module, exports$1) => {
7954
+ /***/ 571
7955
+ (__unused_webpack_module, exports$1) {
7451
7956
 
7452
7957
 
7453
7958
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -7629,15 +8134,18 @@ function requireCronstrueI18n () {
7629
8134
  zh_CN.prototype.monthsOfTheYear = function () {
7630
8135
  return ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"];
7631
8136
  };
8137
+ zh_CN.prototype.onTheHour = function () {
8138
+ return "整点";
8139
+ };
7632
8140
  return zh_CN;
7633
8141
  }());
7634
8142
  exports$1.zh_CN = zh_CN;
7635
8143
 
7636
8144
 
7637
- /***/ }),
8145
+ /***/ },
7638
8146
 
7639
- /***/ 983:
7640
- /***/ ((__unused_webpack_module, exports$1) => {
8147
+ /***/ 983
8148
+ (__unused_webpack_module, exports$1) {
7641
8149
 
7642
8150
 
7643
8151
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -7810,15 +8318,18 @@ function requireCronstrueI18n () {
7810
8318
  zh_TW.prototype.monthsOfTheYear = function () {
7811
8319
  return ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"];
7812
8320
  };
8321
+ zh_TW.prototype.onTheHour = function () {
8322
+ return "整點";
8323
+ };
7813
8324
  return zh_TW;
7814
8325
  }());
7815
8326
  exports$1.zh_TW = zh_TW;
7816
8327
 
7817
8328
 
7818
- /***/ }),
8329
+ /***/ },
7819
8330
 
7820
- /***/ 515:
7821
- /***/ ((__unused_webpack_module, exports$1) => {
8331
+ /***/ 515
8332
+ (__unused_webpack_module, exports$1) {
7822
8333
 
7823
8334
 
7824
8335
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -7889,10 +8400,10 @@ function requireCronstrueI18n () {
7889
8400
  exports$1["default"] = RangeValidator;
7890
8401
 
7891
8402
 
7892
- /***/ }),
8403
+ /***/ },
7893
8404
 
7894
- /***/ 823:
7895
- /***/ ((__unused_webpack_module, exports$1) => {
8405
+ /***/ 823
8406
+ (__unused_webpack_module, exports$1) {
7896
8407
 
7897
8408
 
7898
8409
  Object.defineProperty(exports$1, "__esModule", ({ value: true }));
@@ -7919,7 +8430,7 @@ function requireCronstrueI18n () {
7919
8430
  exports$1.StringUtilities = StringUtilities;
7920
8431
 
7921
8432
 
7922
- /***/ })
8433
+ /***/ }
7923
8434
 
7924
8435
  /******/ });
7925
8436
  /************************************************************************/
@@ -7949,7 +8460,7 @@ function requireCronstrueI18n () {
7949
8460
  /******/
7950
8461
  /************************************************************************/
7951
8462
  var __webpack_exports__ = {};
7952
- // This entry need to be wrapped in an IIFE because it uses a non-standard name for the exports (exports).
8463
+ // This entry needs to be wrapped in an IIFE because it uses a non-standard name for the exports (exports).
7953
8464
  (() => {
7954
8465
  var exports$1 = __webpack_exports__;
7955
8466
 
@@ -7959,8 +8470,8 @@ function requireCronstrueI18n () {
7959
8470
  var allLocalesLoader_1 = __webpack_require__(420);
7960
8471
  expressionDescriptor_1.ExpressionDescriptor.initialize(new allLocalesLoader_1.allLocalesLoader());
7961
8472
  exports$1["default"] = expressionDescriptor_1.ExpressionDescriptor;
7962
- var toString = expressionDescriptor_1.ExpressionDescriptor.toString;
7963
- exports$1.toString = toString;
8473
+ var cronstrue_i18n_toString = expressionDescriptor_1.ExpressionDescriptor.toString;
8474
+ exports$1.toString = cronstrue_i18n_toString;
7964
8475
 
7965
8476
  })();
7966
8477
 
@@ -9169,7 +9680,7 @@ const Cron = (props) => {
9169
9680
  valueArray.push('*');
9170
9681
  }
9171
9682
  // Validate and set default if invalid
9172
- if (!processedValue || processedValue.split(' ').length !== 7) {
9683
+ if (!processedValue || valueArray.length !== 7) {
9173
9684
  processedValue = defaultCron;
9174
9685
  valueArray = processedValue.split(' ');
9175
9686
  setState((prev) => (Object.assign(Object.assign({}, prev), { value: valueArray, selectedTab: allHeaders[0] })));