cronstrue
Version:
Convert cron expressions into human readable descriptions
1 lines • 172 kB
JavaScript
!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define("cronstrue",[],e):"object"==typeof exports?exports.cronstrue=e():t.cronstrue=e()}(globalThis,(()=>(()=>{"use strict";var t={949:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.CronParser=void 0;var o=n(515),r=function(){function t(t,e,n){void 0===e&&(e=!0),void 0===n&&(n=!1),this.expression=t,this.dayOfWeekStartIndexZero=e,this.monthStartIndexZero=n}return t.prototype.parse=function(){var t,e,n=null!==(t=this.expression)&&void 0!==t?t:"";if("@reboot"===n)return e=["@reboot","","","","","",""];if(n.startsWith("@")){var o=this.parseSpecial(this.expression);e=this.extractParts(o)}else e=this.extractParts(this.expression);return this.normalize(e),this.validate(e),e},t.prototype.parseSpecial=function(t){var e={"@yearly":"0 0 1 1 *","@annually":"0 0 1 1 *","@monthly":"0 0 1 * *","@weekly":"0 0 * * 0","@daily":"0 0 * * *","@midnight":"0 0 * * *","@hourly":"0 * * * *","@reboot":"@reboot"}[t];if(!e)throw new Error("Unknown special expression.");return e},t.prototype.extractParts=function(t){if(!this.expression)throw new Error("cron expression is empty");for(var e=t.trim().split(/[ ]+/),n=0;n<e.length;n++)if(e[n].includes(",")){var o=e[n].split(",").map((function(t){return t.trim()})).filter((function(t){return""!==t})).map((function(t){return isNaN(Number(t))?t:Number(t)})).filter((function(t){return null!==t&&""!==t}));0===o.length&&o.push("*"),o.sort((function(t,e){return null!==t&&null!==e?t-e:0})),e[n]=o.map((function(t){return null!==t?t.toString():""})).join(",")}if(e.length<5)throw new Error("Expression has only ".concat(e.length," part").concat(1==e.length?"":"s",". At least 5 parts are required."));if(5==e.length)e.unshift(""),e.push("");else if(6==e.length){/\d{4}$/.test(e[5])||"?"==e[4]||"?"==e[2]?e.unshift(""):e.push("")}else if(e.length>7)throw new Error("Expression has ".concat(e.length," parts; too many!"));return e},t.prototype.normalize=function(t){var e=this;if(t[3]=t[3].replace("?","*"),t[5]=t[5].replace("?","*"),t[2]=t[2].replace("?","*"),0==t[0].indexOf("0/")&&(t[0]=t[0].replace("0/","*/")),0==t[1].indexOf("0/")&&(t[1]=t[1].replace("0/","*/")),0==t[2].indexOf("0/")&&(t[2]=t[2].replace("0/","*/")),0==t[3].indexOf("1/")&&(t[3]=t[3].replace("1/","*/")),0==t[4].indexOf("1/")&&(t[4]=t[4].replace("1/","*/")),0==t[6].indexOf("1/")&&(t[6]=t[6].replace("1/","*/")),t[5]=t[5].replace(/(^\d)|([^#/\s]\d)/g,(function(t){var n=t.replace(/\D/,""),o=n;return e.dayOfWeekStartIndexZero?"7"==n&&(o="0"):o=(parseInt(n)-1).toString(),t.replace(n,o)})),"L"==t[5]&&(t[5]="6"),"?"==t[3]&&(t[3]="*"),t[3].indexOf("W")>-1&&(t[3].indexOf(",")>-1||t[3].indexOf("-")>-1))throw new Error("The 'W' character can be specified only when the day-of-month is a single day, not a range or list of days.");var n={SUN:0,MON:1,TUE:2,WED:3,THU:4,FRI:5,SAT:6};for(var o in n)t[5]=t[5].replace(new RegExp(o,"gi"),n[o].toString());t[4]=t[4].replace(/(^\d{1,2})|([^#/\s]\d{1,2})/g,(function(t){var n=t.replace(/\D/,""),o=n;return e.monthStartIndexZero&&(o=(parseInt(n)+1).toString()),t.replace(n,o)}));var r={JAN:1,FEB:2,MAR:3,APR:4,MAY:5,JUN:6,JUL:7,AUG:8,SEP:9,OCT:10,NOV:11,DEC:12};for(var u in r)t[4]=t[4].replace(new RegExp(u,"gi"),r[u].toString());"0"==t[0]&&(t[0]=""),/\*|\-|\,|\//.test(t[2])||!/\*|\//.test(t[1])&&!/\*|\//.test(t[0])||(t[2]+="-".concat(t[2]));for(var a=0;a<t.length;a++)if(-1!=t[a].indexOf(",")&&(t[a]=t[a].split(",").filter((function(t){return""!==t})).join(",")||"*"),"*/1"==t[a]&&(t[a]="*"),t[a].indexOf("/")>-1&&!/^\*|\-|\,/.test(t[a])){var i=null;switch(a){case 4:i="12";break;case 5:i="6";break;case 6:i="9999";break;default:i=null}if(null!==i){var p=t[a].split("/");t[a]="".concat(p[0],"-").concat(i,"/").concat(p[1])}}},t.prototype.validate=function(t){var e="0-9,\\-*/";this.validateOnlyExpectedCharactersFound(t[0],e),this.validateOnlyExpectedCharactersFound(t[1],e),this.validateOnlyExpectedCharactersFound(t[2],e),this.validateOnlyExpectedCharactersFound(t[3],"0-9,\\-*/LW"),this.validateOnlyExpectedCharactersFound(t[4],e),this.validateOnlyExpectedCharactersFound(t[5],"0-9,\\-*/L#"),this.validateOnlyExpectedCharactersFound(t[6],e),this.validateAnyRanges(t)},t.prototype.validateAnyRanges=function(t){o.default.secondRange(t[0]),o.default.minuteRange(t[1]),o.default.hourRange(t[2]),o.default.dayOfMonthRange(t[3]),o.default.monthRange(t[4],this.monthStartIndexZero),o.default.dayOfWeekRange(t[5],this.dayOfWeekStartIndexZero)},t.prototype.validateOnlyExpectedCharactersFound=function(t,e){var n=t.match(new RegExp("[^".concat(e,"]+"),"gi"));if(n&&n.length)throw new Error("Expression contains invalid values: '".concat(n.toString(),"'"))},t}();e.CronParser=r},333:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ExpressionDescriptor=void 0;var o=n(823),r=n(949),u=function(){function t(e,n){if(this.expression=e,this.options=n,this.expressionParts=new Array(5),!this.options.locale&&t.defaultLocale&&(this.options.locale=t.defaultLocale),!t.locales[this.options.locale]){var o=Object.keys(t.locales)[0];console.warn("Locale '".concat(this.options.locale,"' could not be found; falling back to '").concat(o,"'.")),this.options.locale=o}this.i18n=t.locales[this.options.locale],void 0===n.use24HourTimeFormat&&(n.use24HourTimeFormat=this.i18n.use24HourTimeFormatByDefault())}return t.toString=function(e,n){var o=void 0===n?{}:n,r=o.throwExceptionOnParseError,u=void 0===r||r,a=o.verbose,i=void 0!==a&&a,p=o.dayOfWeekStartIndexZero,s=void 0===p||p,c=o.monthStartIndexZero,y=void 0!==c&&c,f=o.use24HourTimeFormat,m=o.locale,h={throwExceptionOnParseError:u,verbose:i,dayOfWeekStartIndexZero:s,monthStartIndexZero:y,use24HourTimeFormat:f,locale:void 0===m?null:m};return h.tzOffset&&console.warn("'tzOffset' option has been deprecated and is no longer supported."),new t(e,h).getFullDescription()},t.initialize=function(e,n){void 0===n&&(n="en"),t.specialCharacters=["/","-",",","*"],t.defaultLocale=n,e.load(t.locales)},t.prototype.getFullDescription=function(){var t,e,n="";try{var o=new r.CronParser(this.expression,this.options.dayOfWeekStartIndexZero,this.options.monthStartIndexZero);if(this.expressionParts=o.parse(),"@reboot"===this.expressionParts[0])return(null===(e=(t=this.i18n).atReboot)||void 0===e?void 0:e.call(t))||"Run once, at startup";var u=this.getTimeOfDayDescription(),a=this.getDayOfMonthDescription(),i=this.getMonthDescription();n+=u+a+this.getDayOfWeekDescription()+i+this.getYearDescription(),n=(n=this.transformVerbosity(n,!!this.options.verbose)).charAt(0).toLocaleUpperCase()+n.substr(1)}catch(t){if(this.options.throwExceptionOnParseError)throw"".concat(t);n=this.i18n.anErrorOccuredWhenGeneratingTheExpressionD()}return n},t.prototype.getTimeOfDayDescription=function(){var e=this.expressionParts[0],n=this.expressionParts[1],r=this.expressionParts[2],u="";if(o.StringUtilities.containsAny(n,t.specialCharacters)||o.StringUtilities.containsAny(r,t.specialCharacters)||o.StringUtilities.containsAny(e,t.specialCharacters))if(e||!(n.indexOf("-")>-1)||n.indexOf(",")>-1||n.indexOf("/")>-1||o.StringUtilities.containsAny(r,t.specialCharacters))if(!e&&r.indexOf(",")>-1&&-1==r.indexOf("-")&&-1==r.indexOf("/")&&!o.StringUtilities.containsAny(n,t.specialCharacters)){var a=r.split(",");u+=this.i18n.at();for(var i=0;i<a.length;i++)u+=" ",u+=this.formatTime(a[i],n,""),i<a.length-2&&(u+=","),i==a.length-2&&(u+=this.i18n.spaceAnd())}else{var p=this.getSecondsDescription(),s=this.getMinutesDescription(),c=this.getHoursDescription();if((u+=p)&&s&&(u+=", "),u+=s,s===c)return u;u&&c&&(u+=", "),u+=c}else{var y=n.split("-");u+=o.StringUtilities.format(this.i18n.everyMinuteBetweenX0AndX1(),this.formatTime(r,y[0],""),this.formatTime(r,y[1],""))}else u+=this.i18n.atSpace()+this.formatTime(r,n,e);return u},t.prototype.getSecondsDescription=function(){var t=this;return this.getSegmentDescription(this.expressionParts[0],this.i18n.everySecond(),(function(t){return t}),(function(e){return o.StringUtilities.format(t.i18n.everyX0Seconds(e),e)}),(function(e){return t.i18n.secondsX0ThroughX1PastTheMinute()}),(function(e){return"0"==e?"":parseInt(e)<20?t.i18n.atX0SecondsPastTheMinute(e):t.i18n.atX0SecondsPastTheMinuteGt20()||t.i18n.atX0SecondsPastTheMinute(e)}))},t.prototype.getMinutesDescription=function(){var t=this,e=this.expressionParts[0],n=this.expressionParts[2];return this.getSegmentDescription(this.expressionParts[1],this.i18n.everyMinute(),(function(t){return t}),(function(e){return o.StringUtilities.format(t.i18n.everyX0Minutes(e),e)}),(function(e){return t.i18n.minutesX0ThroughX1PastTheHour()}),(function(o){try{return"0"==o&&-1==n.indexOf("/")&&""==e?t.i18n.everyHour():parseInt(o)<20?t.i18n.atX0MinutesPastTheHour(o):t.i18n.atX0MinutesPastTheHourGt20()||t.i18n.atX0MinutesPastTheHour(o)}catch(e){return t.i18n.atX0MinutesPastTheHour(o)}}))},t.prototype.getHoursDescription=function(){var t=this,e=this.expressionParts[2],n=0,r=[];e.split("/")[0].split(",").forEach((function(t){var e=t.split("-");2===e.length&&r.push({value:e[1],index:n+1}),n+=e.length}));var u=0;return this.getSegmentDescription(e,this.i18n.everyHour(),(function(e){var n=r.find((function(t){return t.value===e&&t.index===u}))&&"0"!==t.expressionParts[1];return u++,n?t.formatTime(e,"59",""):t.formatTime(e,"0","")}),(function(e){return o.StringUtilities.format(t.i18n.everyX0Hours(e),e)}),(function(e){return t.i18n.betweenX0AndX1()}),(function(e){return t.i18n.atX0()}))},t.prototype.getDayOfWeekDescription=function(){var t=this,e=this.i18n.daysOfTheWeek();return"*"==this.expressionParts[5]?"":this.getSegmentDescription(this.expressionParts[5],this.i18n.commaEveryDay(),(function(n,o){var r=n;n.indexOf("#")>-1?r=n.substring(0,n.indexOf("#")):n.indexOf("L")>-1&&(r=r.replace("L",""));var u=parseInt(r),a=t.i18n.daysOfTheWeekInCase?t.i18n.daysOfTheWeekInCase(o)[u]:e[u];if(n.indexOf("#")>-1){var i=null,p=n.substring(n.indexOf("#")+1),s=n.substring(0,n.indexOf("#"));switch(p){case"1":i=t.i18n.first(s);break;case"2":i=t.i18n.second(s);break;case"3":i=t.i18n.third(s);break;case"4":i=t.i18n.fourth(s);break;case"5":i=t.i18n.fifth(s)}a=i+" "+a}return a}),(function(e){return 1==parseInt(e)?"":o.StringUtilities.format(t.i18n.commaEveryX0DaysOfTheWeek(e),e)}),(function(e){var n=e.substring(0,e.indexOf("-"));return"*"!=t.expressionParts[3]?t.i18n.commaAndX0ThroughX1(n):t.i18n.commaX0ThroughX1(n)}),(function(e){var n=null;if(e.indexOf("#")>-1){var o=e.substring(e.indexOf("#")+1),r=e.substring(0,e.indexOf("#"));n=t.i18n.commaOnThe(o,r).trim()+t.i18n.spaceX0OfTheMonth()}else if(e.indexOf("L")>-1)n=t.i18n.commaOnTheLastX0OfTheMonth(e.replace("L",""));else{n="*"!=t.expressionParts[3]?t.i18n.commaAndOnX0():t.i18n.commaOnlyOnX0(e)}return n}))},t.prototype.getMonthDescription=function(){var t=this,e=this.i18n.monthsOfTheYear();return this.getSegmentDescription(this.expressionParts[4],"",(function(n,o){return o&&t.i18n.monthsOfTheYearInCase?t.i18n.monthsOfTheYearInCase(o)[parseInt(n)-1]:e[parseInt(n)-1]}),(function(e){return 1==parseInt(e)?"":o.StringUtilities.format(t.i18n.commaEveryX0Months(e),e)}),(function(e){return t.i18n.commaMonthX0ThroughMonthX1()||t.i18n.commaX0ThroughX1()}),(function(e){return t.i18n.commaOnlyInMonthX0?t.i18n.commaOnlyInMonthX0():t.i18n.commaOnlyInX0()}))},t.prototype.getDayOfMonthDescription=function(){var t=this,e=null,n=this.expressionParts[3];switch(n){case"L":e=this.i18n.commaOnTheLastDayOfTheMonth();break;case"WL":case"LW":e=this.i18n.commaOnTheLastWeekdayOfTheMonth();break;default:var r=n.match(/(\d{1,2}W)|(W\d{1,2})/);if(r){var u=parseInt(r[0].replace("W","")),a=1==u?this.i18n.firstWeekday():o.StringUtilities.format(this.i18n.weekdayNearestDayX0(),u.toString());e=o.StringUtilities.format(this.i18n.commaOnTheX0OfTheMonth(),a);break}var i=n.match(/L-(\d{1,2})/);if(i){var p=i[1];e=o.StringUtilities.format(this.i18n.commaDaysBeforeTheLastDayOfTheMonth(p),p);break}if("*"==n&&"*"!=this.expressionParts[5])return"";e=this.getSegmentDescription(n,this.i18n.commaEveryDay(),(function(e){return"L"==e?t.i18n.lastDay():t.i18n.dayX0?o.StringUtilities.format(t.i18n.dayX0(),e):e}),(function(e){return"1"==e?t.i18n.commaEveryDay():t.i18n.commaEveryX0Days(e)}),(function(e){return t.i18n.commaBetweenDayX0AndX1OfTheMonth(e)}),(function(e){return t.i18n.commaOnDayX0OfTheMonth(e)}))}return e},t.prototype.getYearDescription=function(){var t=this;return this.getSegmentDescription(this.expressionParts[6],"",(function(t){return/^\d+$/.test(t)?new Date(parseInt(t),1).getFullYear().toString():t}),(function(e){return o.StringUtilities.format(t.i18n.commaEveryX0Years(e),e)}),(function(e){return t.i18n.commaYearX0ThroughYearX1()||t.i18n.commaX0ThroughX1()}),(function(e){return t.i18n.commaOnlyInYearX0?t.i18n.commaOnlyInYearX0():t.i18n.commaOnlyInX0()}))},t.prototype.getSegmentDescription=function(t,e,n,r,u,a){var i=null,p=t.indexOf("/")>-1,s=t.indexOf("-")>-1,c=t.indexOf(",")>-1;if(t)if("*"===t)i=e;else if(p||s||c)if(c){for(var y=t.split(","),f="",m=0;m<y.length;m++)if(m>0&&y.length>2&&(f+=",",m<y.length-1&&(f+=" ")),m>0&&y.length>1&&(m==y.length-1||2==y.length)&&(f+="".concat(this.i18n.spaceAnd()," ")),y[m].indexOf("/")>-1||y[m].indexOf("-")>-1){var h=y[m].indexOf("-")>-1&&-1==y[m].indexOf("/"),d=this.getSegmentDescription(y[m],e,n,r,h?this.i18n.commaX0ThroughX1:u,a);h&&(d=d.replace(", ","")),f+=d}else f+=p?this.getSegmentDescription(y[m],e,n,r,u,a):n(y[m]);i=p?f:o.StringUtilities.format(a(t),f)}else if(p){y=t.split("/");if(i=o.StringUtilities.format(r(y[1]),y[1]),y[0].indexOf("-")>-1){var X=this.generateRangeSegmentDescription(y[0],u,n);0!=X.indexOf(", ")&&(i+=", "),i+=X}else if(-1==y[0].indexOf("*")){var l=o.StringUtilities.format(a(y[0]),n(y[0]));l=l.replace(", ",""),i+=o.StringUtilities.format(this.i18n.commaStartingX0(),l)}}else s&&(i=this.generateRangeSegmentDescription(t,u,n));else i=o.StringUtilities.format(a(t),n(t));else i="";return i},t.prototype.generateRangeSegmentDescription=function(t,e,n){var r="",u=t.split("-"),a=n(u[0],1),i=n(u[1],2),p=e(t);return r+=o.StringUtilities.format(p,a,i)},t.prototype.formatTime=function(t,e,n){var o=parseInt(t)+0,r=parseInt(e)+0;r>=60?(r-=60,o+=1):r<0&&(r+=60,o-=1),o>=24?o-=24:o<0&&(o=24+o);var u="",a=!1;this.options.use24HourTimeFormat||(u=(a=!(!this.i18n.setPeriodBeforeTime||!this.i18n.setPeriodBeforeTime()))?"".concat(this.getPeriod(o)," "):" ".concat(this.getPeriod(o)),o>12&&(o-=12),0===o&&(o=12));var i="";return n&&(i=":".concat(("00"+n).substring(n.length))),"".concat(a?u:"").concat(("00"+o.toString()).substring(o.toString().length),":").concat(("00"+r.toString()).substring(r.toString().length)).concat(i).concat(a?"":u)},t.prototype.transformVerbosity=function(t,e){if(!e&&(t=(t=(t=(t=t.replace(new RegExp(", ".concat(this.i18n.everyMinute()),"g"),"")).replace(new RegExp(", ".concat(this.i18n.everyHour()),"g"),"")).replace(new RegExp(this.i18n.commaEveryDay(),"g"),"")).replace(/\, ?$/,""),this.i18n.conciseVerbosityReplacements))for(var n=0,o=Object.entries(this.i18n.conciseVerbosityReplacements());n<o.length;n++){var r=o[n],u=r[0],a=r[1];t=t.replace(new RegExp(u,"g"),a)}return t},t.prototype.getPeriod=function(t){return t>=12?this.i18n.pm&&this.i18n.pm()||"PM":this.i18n.am&&this.i18n.am()||"AM"},t.locales={},t}();e.ExpressionDescriptor=u},99:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.bg=e.my=e.vi=e.ar=e.th=e.af=e.hu=e.be=e.ca=e.fa=e.sw=e.sl=e.fi=e.sk=e.cs=e.he=e.ja=e.zh_TW=e.zh_CN=e.uk=e.tr=e.ru=e.ro=e.pt_PT=e.pt_BR=e.pl=e.sv=e.nb=e.nl=e.ko=e.id=e.it=e.fr=e.es=e.de=e.da=e.en=void 0;var o=n(486);Object.defineProperty(e,"en",{enumerable:!0,get:function(){return o.en}});var r=n(506);Object.defineProperty(e,"da",{enumerable:!0,get:function(){return r.da}});var u=n(230);Object.defineProperty(e,"de",{enumerable:!0,get:function(){return u.de}});var a=n(153);Object.defineProperty(e,"es",{enumerable:!0,get:function(){return a.es}});var i=n(517);Object.defineProperty(e,"fr",{enumerable:!0,get:function(){return i.fr}});var p=n(488);Object.defineProperty(e,"it",{enumerable:!0,get:function(){return p.it}});var s=n(72);Object.defineProperty(e,"id",{enumerable:!0,get:function(){return s.id}});var c=n(839);Object.defineProperty(e,"ko",{enumerable:!0,get:function(){return c.ko}});var y=n(647);Object.defineProperty(e,"nl",{enumerable:!0,get:function(){return y.nl}});var f=n(957);Object.defineProperty(e,"nb",{enumerable:!0,get:function(){return f.nb}});var m=n(544);Object.defineProperty(e,"sv",{enumerable:!0,get:function(){return m.sv}});var h=n(905);Object.defineProperty(e,"pl",{enumerable:!0,get:function(){return h.pl}});var d=n(556);Object.defineProperty(e,"pt_BR",{enumerable:!0,get:function(){return d.pt_BR}});var X=n(163);Object.defineProperty(e,"pt_PT",{enumerable:!0,get:function(){return X.pt_PT}});var l=n(614);Object.defineProperty(e,"ro",{enumerable:!0,get:function(){return l.ro}});var T=n(892);Object.defineProperty(e,"ru",{enumerable:!0,get:function(){return T.ru}});var v=n(631);Object.defineProperty(e,"tr",{enumerable:!0,get:function(){return v.tr}});var O=n(225);Object.defineProperty(e,"uk",{enumerable:!0,get:function(){return O.uk}});var g=n(571);Object.defineProperty(e,"zh_CN",{enumerable:!0,get:function(){return g.zh_CN}});var M=n(983);Object.defineProperty(e,"zh_TW",{enumerable:!0,get:function(){return M.zh_TW}});var k=n(904);Object.defineProperty(e,"ja",{enumerable:!0,get:function(){return k.ja}});var D=n(82);Object.defineProperty(e,"he",{enumerable:!0,get:function(){return D.he}});var b=n(651);Object.defineProperty(e,"cs",{enumerable:!0,get:function(){return b.cs}});var P=n(923);Object.defineProperty(e,"sk",{enumerable:!0,get:function(){return P.sk}});var S=n(964);Object.defineProperty(e,"fi",{enumerable:!0,get:function(){return S.fi}});var E=n(474);Object.defineProperty(e,"sl",{enumerable:!0,get:function(){return E.sl}});var A=n(799);Object.defineProperty(e,"sw",{enumerable:!0,get:function(){return A.sw}});var w=n(804);Object.defineProperty(e,"fa",{enumerable:!0,get:function(){return w.fa}});var H=n(845);Object.defineProperty(e,"ca",{enumerable:!0,get:function(){return H.ca}});var j=n(348);Object.defineProperty(e,"be",{enumerable:!0,get:function(){return j.be}});var W=n(194);Object.defineProperty(e,"hu",{enumerable:!0,get:function(){return W.hu}});var x=n(810);Object.defineProperty(e,"af",{enumerable:!0,get:function(){return x.af}});var L=n(33);Object.defineProperty(e,"th",{enumerable:!0,get:function(){return L.th}});var B=n(574);Object.defineProperty(e,"ar",{enumerable:!0,get:function(){return B.ar}});var Y=n(292);Object.defineProperty(e,"vi",{enumerable:!0,get:function(){return Y.vi}});var z=n(919);Object.defineProperty(e,"my",{enumerable:!0,get:function(){return z.my}});var G=n(622);Object.defineProperty(e,"bg",{enumerable:!0,get:function(){return G.bg}})},420:(t,e,n)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.allLocalesLoader=void 0;var o=n(99),r=function(){function t(){}return t.prototype.load=function(t){for(var e in o)o.hasOwnProperty(e)&&(t[e]=new o[e])},t}();e.allLocalesLoader=r},810:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.af=void 0;var n=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return", jaar %s na %s"},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Daar was 'n fout om die tydsuitdrukking the genereer. Raadpleeg asb die uitdrukking formaat."},t.prototype.everyMinute=function(){return"elke minuut"},t.prototype.everyHour=function(){return"elke uur"},t.prototype.atSpace=function(){return"Teen "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Elke minuut tussen %s en %s"},t.prototype.at=function(){return"Teen"},t.prototype.spaceAnd=function(){return" en"},t.prototype.everySecond=function(){return"elke sekonde"},t.prototype.everyX0Seconds=function(){return"elke %s sekonde"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekonde %s deur na %s na die minuut"},t.prototype.atX0SecondsPastTheMinute=function(){return"teen %s sekondes na die minuut"},t.prototype.everyX0Minutes=function(){return"elke %s minute"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minute %s deur na %s na die uur"},t.prototype.atX0MinutesPastTheHour=function(){return"teen %s minute na die uur"},t.prototype.everyX0Hours=function(){return"elke %s ure"},t.prototype.betweenX0AndX1=function(){return"tussen %s en %s"},t.prototype.atX0=function(){return"teen %s"},t.prototype.commaEveryDay=function(){return", elke dag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", elke %s dae van die week"},t.prototype.commaX0ThroughX1=function(){return", %s deur na %s"},t.prototype.commaAndX0ThroughX1=function(){return", en %s deur na %s"},t.prototype.first=function(){return"eerste"},t.prototype.second=function(){return"tweede"},t.prototype.third=function(){return"derde"},t.prototype.fourth=function(){return"vierde"},t.prototype.fifth=function(){return"vyfde"},t.prototype.commaOnThe=function(){return", op die "},t.prototype.spaceX0OfTheMonth=function(){return" %s van die maand"},t.prototype.lastDay=function(){return"die laaste dag"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", op die laaste %s van die maand"},t.prototype.commaOnlyOnX0=function(){return", net op %s"},t.prototype.commaAndOnX0=function(){return", en op %s"},t.prototype.commaEveryX0Months=function(){return", elke %s maande"},t.prototype.commaOnlyInX0=function(){return", net in %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", op die laaste dag van die maand"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", op die laaste weeksdag van die maand"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dae voor die laaste dag van die maand"},t.prototype.firstWeekday=function(){return"eerste weeksdag"},t.prototype.weekdayNearestDayX0=function(){return"weeksdag naaste aan dag %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", op die %s van die maande"},t.prototype.commaEveryX0Days=function(){return", elke %s dae"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", tussen dag %s en %s van die maand"},t.prototype.commaOnDayX0OfTheMonth=function(){return", op dag %s van die maand"},t.prototype.commaEveryHour=function(){return", elke uur"},t.prototype.commaEveryX0Years=function(){return", elke %s jare"},t.prototype.commaStartingX0=function(){return", beginnende %s"},t.prototype.daysOfTheWeek=function(){return["Sondag","Maandag","Dinsdag","Woensdag","Donderdag","Vrydag","Saterdag"]},t.prototype.monthsOfTheYear=function(){return["Januarie","Februarie","Maart","April","Mei","Junie","Julie","Augustus","September","Oktober","November","Desember"]},t}();e.af=n},574:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ar=void 0;var n=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"حدث خطأ في إنشاء وصف المصطلح٠ تأكد من تركيب مصطلح الكرون"},t.prototype.everyMinute=function(){return"كل دقيقة"},t.prototype.everyHour=function(){return"كل ساعة"},t.prototype.atSpace=function(){return" "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"كل دقيقة بين %s و %s"},t.prototype.at=function(){return""},t.prototype.spaceAnd=function(){return" و"},t.prototype.everySecond=function(){return"كل ثانية"},t.prototype.everyX0Seconds=function(){return"كل %s ثواني"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"الثواني %s حتى %s من بداية الدقيقة"},t.prototype.atX0SecondsPastTheMinute=function(){return"الثانية %s من بداية الدقيقة"},t.prototype.everyX0Minutes=function(){return"كل %s دقائق"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"الدقائق %s حتى %s من بداية الساعة"},t.prototype.atX0MinutesPastTheHour=function(){return"الدقيقة %s من بداية الساعة"},t.prototype.everyX0Hours=function(){return"كل %s ساعات"},t.prototype.betweenX0AndX1=function(){return"بين %s و %s"},t.prototype.atX0=function(){return"%s"},t.prototype.commaEveryDay=function(){return"، كل يوم"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return"، كل %s من أيام الأسبوع"},t.prototype.commaX0ThroughX1=function(){return"، %s حتى %s"},t.prototype.commaAndX0ThroughX1=function(){return"، و %s حتى %s"},t.prototype.first=function(){return"أول"},t.prototype.second=function(){return"ثاني"},t.prototype.third=function(){return"ثالث"},t.prototype.fourth=function(){return"رابع"},t.prototype.fifth=function(){return"خامس"},t.prototype.commaOnThe=function(){return"، في ال"},t.prototype.spaceX0OfTheMonth=function(){return" %s من الشهر"},t.prototype.lastDay=function(){return"اليوم الأخير"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return"، في اخر %s من الشهر"},t.prototype.commaOnlyOnX0=function(){return"، %s فقط"},t.prototype.commaAndOnX0=function(){return"، وفي %s"},t.prototype.commaEveryX0Months=function(){return"، كل %s أشهر"},t.prototype.commaOnlyInX0=function(){return"، %s فقط"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return"، في اخر يوم من الشهر"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return"، في اخر يوم أسبوع من الشهر"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return"، %s أيام قبل اخر يوم من الشهر"},t.prototype.firstWeekday=function(){return"اول ايام الأسبوع"},t.prototype.weekdayNearestDayX0=function(){return"يوم الأسبوع الأقرب ليوم %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return"، في %s من الشهر"},t.prototype.commaEveryX0Days=function(){return"، كل %s أيام"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return"، بين يوم %s و %s من الشهر"},t.prototype.commaOnDayX0OfTheMonth=function(){return"، في اليوم %s من الشهر"},t.prototype.commaEveryHour=function(){return"، كل ساعة"},t.prototype.commaEveryX0Years=function(){return"، كل %s سنوات"},t.prototype.commaStartingX0=function(){return"، بداية من %s"},t.prototype.daysOfTheWeek=function(){return["الأحد","الإثنين","الثلاثاء","الأربعاء","الخميس","الجمعة","السبت"]},t.prototype.monthsOfTheYear=function(){return["يناير","فبراير","مارس","ابريل","مايو","يونيو","يوليو","أغسطس","سبتمبر","أكتوبر","نوفمبر","ديسمبر"]},t}();e.ar=n},348:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.be=void 0;var n=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!1},t.prototype.everyMinute=function(){return"кожную хвіліну"},t.prototype.everyHour=function(){return"кожную гадзіну"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Адбылася памылка падчас генерацыі апісання выразы. Праверце сінтаксіс крон-выразы."},t.prototype.atSpace=function(){return"У "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Кожную хвіліну з %s да %s"},t.prototype.at=function(){return"У"},t.prototype.spaceAnd=function(){return" і"},t.prototype.everySecond=function(){return"кожную секунду"},t.prototype.everyX0Seconds=function(){return"кожныя %s секунд"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"секунды з %s па %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"у %s секунд"},t.prototype.everyX0Minutes=function(){return"кожныя %s хвілін"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"хвіліны з %s па %s"},t.prototype.atX0MinutesPastTheHour=function(){return"у %s хвілін"},t.prototype.everyX0Hours=function(){return"кожныя %s гадзін"},t.prototype.betweenX0AndX1=function(){return"з %s па %s"},t.prototype.atX0=function(){return"у %s"},t.prototype.commaEveryDay=function(){return", кожны дзень"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", кожныя %s дзён тыдня"},t.prototype.commaX0ThroughX1=function(){return", %s па %s"},t.prototype.commaAndX0ThroughX1=function(){return", і %s па %s"},t.prototype.first=function(){return"першы"},t.prototype.second=function(){return"другі"},t.prototype.third=function(){return"трэці"},t.prototype.fourth=function(){return"чацвёрты"},t.prototype.fifth=function(){return"пяты"},t.prototype.commaOnThe=function(){return", у "},t.prototype.spaceX0OfTheMonth=function(){return" %s месяца"},t.prototype.lastDay=function(){return"апошні дзень"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", у апошні %s месяца"},t.prototype.commaOnlyOnX0=function(){return", толькі ў %s"},t.prototype.commaAndOnX0=function(){return", і ў %s"},t.prototype.commaEveryX0Months=function(){return", кожныя %s месяцаў"},t.prototype.commaOnlyInX0=function(){return", толькі ў %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", у апошні дзень месяца"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", у апошні будні дзень месяца"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s дзён да апошняга дня месяца"},t.prototype.firstWeekday=function(){return"першы будны дзень"},t.prototype.weekdayNearestDayX0=function(){return"найбліжэйшы будны дзень да %s"},t.prototype.commaOnTheX0OfTheMonth=function(){return", у %s месяцы"},t.prototype.commaEveryX0Days=function(){return", кожныя %s дзён"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", з %s па %s лік месяца"},t.prototype.commaOnDayX0OfTheMonth=function(){return", у %s лік месяца"},t.prototype.commaEveryX0Years=function(){return", кожныя %s гадоў"},t.prototype.commaStartingX0=function(){return", пачатак %s"},t.prototype.daysOfTheWeek=function(){return["нядзеля","панядзелак","аўторак","серада","чацвер","пятніца","субота"]},t.prototype.monthsOfTheYear=function(){return["студзень","люты","сакавік","красавік","травень","чэрвень","ліпень","жнівень","верасень","кастрычнік","лістапад","снежань"]},t}();e.be=n},622:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.bg=void 0;var n=function(t,e){return(null!=t?Number(t):0)<2?e[0]:e[1]},o=function(t,e){return e[[1,0,0,1,0,0,1][null!=t?Number(t):0]]},r=function(t,e){var n=null!=t?Number(t):1;n=Math.max(Math.min(n<10||n>20&&n%10!=0?n%10:3,3),1)-1;var o=["м","ж","ср"].indexOf(e);return["в","р","т"][n]+["и","а","о"][o]},u=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"всяка минута"},t.prototype.everyHour=function(){return"всеки час"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Възникна грешка при генериране на описанието на израза. Проверете синтаксиса на cron израза."},t.prototype.atSpace=function(){return"В "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Всяка минута от %s до %s"},t.prototype.at=function(){return"В"},t.prototype.spaceAnd=function(){return" и"},t.prototype.everySecond=function(){return"всяка секунда"},t.prototype.everyX0Seconds=function(t){return"всеки %s секунди"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"секунди от %s до %s"},t.prototype.atX0SecondsPastTheMinute=function(t){return"%s-".concat(r(t,"ж")," секунда")},t.prototype.everyX0Minutes=function(t){return"всеки %s минути"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"минути от %s до %s"},t.prototype.atX0MinutesPastTheHour=function(t){return"%s-".concat(r(t,"ж")," минутa")},t.prototype.everyX0Hours=function(t){return"всеки %s часа"},t.prototype.betweenX0AndX1=function(){return"от %s до %s"},t.prototype.atX0=function(){return"в %s"},t.prototype.commaEveryDay=function(){return", всеки ден"},t.prototype.commaEveryX0DaysOfTheWeek=function(t){return n(t,[", всеки %s ден от седмицата",", всеки %s дена от седмицата"])},t.prototype.commaX0ThroughX1=function(t){return", от %s до %s"},t.prototype.commaAndX0ThroughX1=function(t){return" и от %s до %s"},t.prototype.first=function(t){return o(t,["первият","первата"])},t.prototype.second=function(t){return o(t,["вторият","втората"])},t.prototype.third=function(t){return o(t,["третият","третата"])},t.prototype.fourth=function(t){return o(t,["четвертият","четвертата"])},t.prototype.fifth=function(t){return o(t,["петият","петата"])},t.prototype.commaOnThe=function(t){return", "},t.prototype.spaceX0OfTheMonth=function(){return" %s на месеца"},t.prototype.lastDay=function(){return"последният ден"},t.prototype.commaOnTheLastX0OfTheMonth=function(t){return o(t,[", в последният %s от месеца",", в последната %s отмесеца"])},t.prototype.commaOnlyOnX0=function(t){return", %s"},t.prototype.commaAndOnX0=function(){return" и %s"},t.prototype.commaEveryX0Months=function(t){return" всеки %s месеца"},t.prototype.commaOnlyInMonthX0=function(){return", %s"},t.prototype.commaOnlyInX0=function(){return", в %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", в последният ден на месеца"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", в последния делничен ден от месеца"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(t){return n(t,[", %s ден преди края на месеца",", %s дена преди края на месеца"])},t.prototype.firstWeekday=function(){return"първият делничен ден"},t.prototype.weekdayNearestDayX0=function(){return"най-близкият делничен ден до %s число"},t.prototype.commaOnTheX0OfTheMonth=function(){return", на %s число от месеца"},t.prototype.commaEveryX0Days=function(t){return n(t,[", всеки %s ден",", всеки %s дена"])},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(t){var e,n=null!==(e=null==t?void 0:t.split("-"))&&void 0!==e?e:[];return", от %s-".concat(r(n[0],"ср")," до %s-").concat(r(n[1],"ср")," число на месеца")},t.prototype.commaOnDayX0OfTheMonth=function(t){return", на %s-".concat(r(t,"ср")," число от месеца")},t.prototype.commaEveryX0Years=function(t){return n(t,[", всяка %s година",", всеки %s години"])},t.prototype.commaStartingX0=function(){return", започвайки %s"},t.prototype.daysOfTheWeek=function(){return["неделя","понеделник","вторник","сряда","четвъртък","петък","събота"]},t.prototype.monthsOfTheYear=function(){return["януари","февруари","март","април","май","юни","юли","август","септевмври","октомври","ноември","декември"]},t}();e.bg=u},845:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.ca=void 0;var n=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"S'ha produït un error mentres es generava la descripció de l'expressió. Revisi la sintaxi de la expressió de cron."},t.prototype.at=function(){return"A les"},t.prototype.atSpace=function(){return"A les "},t.prototype.atX0=function(){return"a les %s"},t.prototype.atX0MinutesPastTheHour=function(){return"als %s minuts de l'hora"},t.prototype.atX0SecondsPastTheMinute=function(){return"als %s segonds del minut"},t.prototype.betweenX0AndX1=function(){return"entre les %s i les %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", entre els dies %s i %s del mes"},t.prototype.commaEveryDay=function(){return", cada dia"},t.prototype.commaEveryX0Days=function(){return", cada %s dies"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", cada %s dies de la setmana"},t.prototype.commaEveryX0Months=function(){return", cada %s mesos"},t.prototype.commaOnDayX0OfTheMonth=function(){return", el dia %s del mes"},t.prototype.commaOnlyInX0=function(){return", sólo en %s"},t.prototype.commaOnlyOnX0=function(){return", només el %s"},t.prototype.commaAndOnX0=function(){return", i el %s"},t.prototype.commaOnThe=function(){return", en el "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", en l'últim dia del mes"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", en l'últim dia de la setmana del mes"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dies abans de l'últim dia del mes"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", en l'últim %s del mes"},t.prototype.commaOnTheX0OfTheMonth=function(){return", en el %s del mes"},t.prototype.commaX0ThroughX1=function(){return", de %s a %s"},t.prototype.commaAndX0ThroughX1=function(){return", i de %s a %s"},t.prototype.everyHour=function(){return"cada hora"},t.prototype.everyMinute=function(){return"cada minut"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"cada minut entre les %s i les %s"},t.prototype.everySecond=function(){return"cada segon"},t.prototype.everyX0Hours=function(){return"cada %s hores"},t.prototype.everyX0Minutes=function(){return"cada %s minuts"},t.prototype.everyX0Seconds=function(){return"cada %s segons"},t.prototype.fifth=function(){return"cinquè"},t.prototype.first=function(){return"primer"},t.prototype.firstWeekday=function(){return"primer dia de la setmana"},t.prototype.fourth=function(){return"quart"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"del minut %s al %s passada l'hora"},t.prototype.second=function(){return"segon"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"En els segons %s al %s de cada minut"},t.prototype.spaceAnd=function(){return" i"},t.prototype.spaceX0OfTheMonth=function(){return" %s del mes"},t.prototype.lastDay=function(){return"l'últim dia"},t.prototype.third=function(){return"tercer"},t.prototype.weekdayNearestDayX0=function(){return"dia de la setmana més proper al %s"},t.prototype.commaEveryX0Years=function(){return", cada %s anys"},t.prototype.commaStartingX0=function(){return", començant %s"},t.prototype.daysOfTheWeek=function(){return["diumenge","dilluns","dimarts","dimecres","dijous","divendres","dissabte"]},t.prototype.monthsOfTheYear=function(){return["gener","febrer","març","abril","maig","juny","juliol","agost","setembre","octubre","novembre","desembre"]},t}();e.ca=n},651:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.cs=void 0;var n=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Při vytváření popisu došlo k chybě. Zkontrolujte prosím správnost syntaxe cronu."},t.prototype.everyMinute=function(){return"každou minutu"},t.prototype.everyHour=function(){return"každou hodinu"},t.prototype.atSpace=function(){return"V "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Každou minutu mezi %s a %s"},t.prototype.at=function(){return"V"},t.prototype.spaceAnd=function(){return" a"},t.prototype.everySecond=function(){return"každou sekundu"},t.prototype.everyX0Seconds=function(){return"každých %s sekund"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundy od %s do %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"v %s sekund"},t.prototype.everyX0Minutes=function(){return"každých %s minut"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuty od %s do %s"},t.prototype.atX0MinutesPastTheHour=function(){return"v %s minut"},t.prototype.everyX0Hours=function(){return"každých %s hodin"},t.prototype.betweenX0AndX1=function(){return"mezi %s a %s"},t.prototype.atX0=function(){return"v %s"},t.prototype.commaEveryDay=function(){return", každý den"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", každých %s dní v týdnu"},t.prototype.commaX0ThroughX1=function(){return", od %s do %s"},t.prototype.commaAndX0ThroughX1=function(){return", a od %s do %s"},t.prototype.first=function(){return"první"},t.prototype.second=function(){return"druhý"},t.prototype.third=function(){return"třetí"},t.prototype.fourth=function(){return"čtvrtý"},t.prototype.fifth=function(){return"pátý"},t.prototype.commaOnThe=function(){return", "},t.prototype.spaceX0OfTheMonth=function(){return" %s v měsíci"},t.prototype.lastDay=function(){return"poslední den"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", poslední %s v měsíci"},t.prototype.commaOnlyOnX0=function(){return", pouze v %s"},t.prototype.commaAndOnX0=function(){return", a v %s"},t.prototype.commaEveryX0Months=function(){return", každých %s měsíců"},t.prototype.commaOnlyInX0=function(){return", pouze v %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", poslední den v měsíci"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", poslední pracovní den v měsíci"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dní před posledním dnem v měsíci"},t.prototype.firstWeekday=function(){return"první pracovní den"},t.prototype.weekdayNearestDayX0=function(){return"pracovní den nejblíže %s. dni"},t.prototype.commaOnTheX0OfTheMonth=function(){return", v %s v měsíci"},t.prototype.commaEveryX0Days=function(){return", každých %s dnů"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mezi dny %s a %s v měsíci"},t.prototype.commaOnDayX0OfTheMonth=function(){return", %s. den v měsíci"},t.prototype.commaEveryX0Years=function(){return", každých %s roků"},t.prototype.commaStartingX0=function(){return", začínající %s"},t.prototype.daysOfTheWeek=function(){return["Neděle","Pondělí","Úterý","Středa","Čtvrtek","Pátek","Sobota"]},t.prototype.monthsOfTheYear=function(){return["Leden","Únor","Březen","Duben","Květen","Červen","Červenec","Srpen","Září","Říjen","Listopad","Prosinec"]},t}();e.cs=n},506:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.da=void 0;var n=function(){function t(){}return t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Der opstod en fejl ved generering af udtryksbeskrivelsen. Tjek cron-ekspressionssyntaxen."},t.prototype.at=function(){return"kl"},t.prototype.atSpace=function(){return"kl "},t.prototype.atX0=function(){return"kl %s"},t.prototype.atX0MinutesPastTheHour=function(){return"%s minutter efter timeskift"},t.prototype.atX0SecondsPastTheMinute=function(){return"%s sekunder efter minutskift"},t.prototype.betweenX0AndX1=function(){return"mellem %s og %s"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellem dag %s og %s i måneden"},t.prototype.commaEveryDay=function(){return", hver dag"},t.prototype.commaEveryX0Days=function(){return", hver %s. dag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s. ugedag"},t.prototype.commaEveryX0Months=function(){return", hver %s. måned"},t.prototype.commaEveryX0Years=function(){return", hvert %s. år"},t.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s i måneden"},t.prototype.commaOnlyInX0=function(){return", kun i %s"},t.prototype.commaOnlyOnX0=function(t){return", på enhver %s"},t.prototype.commaAndOnX0=function(){return", og på %s"},t.prototype.commaOnThe=function(){return", på den "},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den sidste dag i måneden"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", på den sidste hverdag i måneden"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dage før den sidste dag i måneden"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den sidste %s i måneden"},t.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s i måneden"},t.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},t.prototype.commaAndX0ThroughX1=function(){return", og %s til og med %s"},t.prototype.everyHour=function(){return"hver time"},t.prototype.everyMinute=function(){return"hvert minut"},t.prototype.everyMinuteBetweenX0AndX1=function(){return"hvert minut mellem %s og %s"},t.prototype.everySecond=function(){return"hvert sekund"},t.prototype.everyX0Hours=function(){return"hver %s. time"},t.prototype.everyX0Minutes=function(){return"hvert %s. minut"},t.prototype.everyX0Seconds=function(){return"hvert %s. sekund"},t.prototype.fifth=function(){return"femte"},t.prototype.first=function(){return"første"},t.prototype.firstWeekday=function(){return"første hverdag"},t.prototype.fourth=function(){return"fjerde"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutterne fra %s til og med %s hver time"},t.prototype.second=function(){return"anden"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunderne fra %s til og med %s hvert minut"},t.prototype.spaceAnd=function(){return" og"},t.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},t.prototype.lastDay=function(){return"sidste dag"},t.prototype.third=function(){return"tredje"},t.prototype.weekdayNearestDayX0=function(){return"hverdag nærmest dag %s"},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.commaStartingX0=function(){return", startende %s"},t.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},t.prototype.monthsOfTheYear=function(){return["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"]},t}();e.da=n},230:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.de=void 0;var n=function(){function t(){}return t.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},t.prototype.atX0MinutesPastTheHourGt20=function(){return null},t.prototype.commaMonthX0ThroughMonthX1=function(){return null},t.prototype.commaYearX0ThroughYearX1=function(){return null},t.prototype.use24HourTimeFormatByDefault=function(){return!0},t.prototype.everyMinute=function(){return"jede Minute"},t.prototype.everyHour=function(){return"jede Stunde"},t.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Beim Generieren der Ausdrucksbeschreibung ist ein Fehler aufgetreten. Überprüfen Sie die Syntax des Cron-Ausdrucks."},t.prototype.atSpace=function(){return"Um "},t.prototype.everyMinuteBetweenX0AndX1=function(){return"Jede Minute zwischen %s und %s"},t.prototype.at=function(){return"Um"},t.prototype.spaceAnd=function(){return" und"},t.prototype.everySecond=function(){return"Jede Sekunde"},t.prototype.everyX0Seconds=function(){return"alle %s Sekunden"},t.prototype.secondsX0ThroughX1PastTheMinute=function(){return"Sekunden %s bis %s"},t.prototype.atX0SecondsPastTheMinute=function(){return"bei Sekunde %s"},t.prototype.everyX0Minutes=function(){return"alle %s Minuten"},t.prototype.minutesX0ThroughX1PastTheHour=function(){return"Minuten %s bis %s"},t.prototype.atX0MinutesPastTheHour=function(){return"bei Minute %s"},t.prototype.everyX0Hours=function(){return"alle %s Stunden"},t.prototype.betweenX0AndX1=function(){return"zwischen %s und %s"},t.prototype.atX0=function(){return"um %s"},t.prototype.commaEveryDay=function(){return", jeden Tag"},t.prototype.commaEveryX0DaysOfTheWeek=function(){return", alle %s Tage der Woche"},t.prototype.commaX0ThroughX1=function(){return", %s bis %s"},t.prototype.commaAndX0ThroughX1=function(){return", und %s bis %s"},t.prototype.first=function(){return"ersten"},t.prototype.second=function(){return"zweiten"},t.prototype.third=function(){return"dritten"},t.prototype.fourth=function(){return"vierten"},t.prototype.fifth=function(){return"fünften"},t.prototype.commaOnThe=function(){return", am "},t.prototype.spaceX0OfTheMonth=function(){return" %s des Monats"},t.prototype.lastDay=function(){return"der letzte Tag"},t.prototype.commaOnTheLastX0OfTheMonth=function(){return", am letzten %s des Monats"},t.prototype.commaOnlyOnX0=function(){return", nur jeden %s"},t.prototype.commaAndOnX0=function(){return", und jeden %s"},t.prototype.commaEveryX0Months=function(){return", alle %s Monate"},t.prototype.commaOnlyInX0=function(){return", nur im %s"},t.prototype.commaOnTheLastDayOfTheMonth=function(){return", am letzten Tag des Monats"},t.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", am letzten Werktag des Monats"},t.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s tage vor dem letzten Tag des Monats"},t.prototype.firstWeekday=function(){return"ersten Werktag"},t.prototype.weekdayNearestDayX0=function(){return"Werktag am nächsten zum %s Tag"},t.prototype.commaOnTheX0OfTheMonth=function(){return", am %s des Monats"},t.prototype.commaEveryX0Days=function(){return", alle %s Tage"},t.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", zwischen Tag %s und %s des Monats"},t.prototype.commaOnDayX0OfTheMonth=function(){return", an Tag %s des Monats"},t.prototype.commaEveryX0Years=function(){return", alle %s Jahre"},t.prototype.commaStartingX0=function(){return", beginnend %s"},t.prototype.daysOfTheWeek=function(){return["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]},t.prototype.monthsOfTheYear=function(){return["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]},t}();e.de=n},486:(t,e)=>{Object.defineProperty(e,"__esModule",{value:!0}),e.en=void 0;var n=function(){fun