cronstrue
Version:
Convert cron expressions into human readable descriptions
1 lines • 121 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()}("undefined"!=typeof self?self:this,function(){return o={},r.m=n=[function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ExpressionDescriptor=void 0;var X=n(1),u=n(2),o=(y.toString=function(t,e){var n=void 0===e?{}:e,o=n.throwExceptionOnParseError,r=void 0===o||o,u=n.verbose,i=void 0!==u&&u,a=n.dayOfWeekStartIndexZero,p=void 0===a||a,s=n.use24HourTimeFormat,c=n.locale;return new y(t,{throwExceptionOnParseError:r,verbose:i,dayOfWeekStartIndexZero:p,use24HourTimeFormat:s,locale:void 0===c?"en":c}).getFullDescription()},y.initialize=function(t){y.specialCharacters=["/","-",",","*"],t.load(y.locales)},y.prototype.getFullDescription=function(){var e="";try{var t=new u.CronParser(this.expression,this.options.dayOfWeekStartIndexZero);this.expressionParts=t.parse();var n=this.getTimeOfDayDescription(),o=this.getDayOfMonthDescription(),r=this.getMonthDescription();e+=n+o+this.getDayOfWeekDescription()+r+this.getYearDescription(),e=(e=this.transformVerbosity(e,this.options.verbose)).charAt(0).toLocaleUpperCase()+e.substr(1)}catch(t){if(this.options.throwExceptionOnParseError)throw""+t;e=this.i18n.anErrorOccuredWhenGeneratingTheExpressionD()}return e},y.prototype.getTimeOfDayDescription=function(){var t=this.expressionParts[0],e=this.expressionParts[1],n=this.expressionParts[2],o="";if(X.StringUtilities.containsAny(e,y.specialCharacters)||X.StringUtilities.containsAny(n,y.specialCharacters)||X.StringUtilities.containsAny(t,y.specialCharacters))if(t||!(-1<e.indexOf("-"))||-1<e.indexOf(",")||-1<e.indexOf("/")||X.StringUtilities.containsAny(n,y.specialCharacters))if(!t&&-1<n.indexOf(",")&&-1==n.indexOf("-")&&-1==n.indexOf("/")&&!X.StringUtilities.containsAny(e,y.specialCharacters)){var r=n.split(",");o+=this.i18n.at();for(var u=0;u<r.length;u++)o+=" ",o+=this.formatTime(r[u],e,""),u<r.length-2&&(o+=","),u==r.length-2&&(o+=this.i18n.spaceAnd())}else{var i=this.getSecondsDescription(),a=this.getMinutesDescription(),p=this.getHoursDescription();if(0<(o+=i).length&&0<a.length&&(o+=", "),o+=a,a===p)return o;0<o.length&&0<p.length&&(o+=", "),o+=p}else{var s=e.split("-");o+=X.StringUtilities.format(this.i18n.everyMinuteBetweenX0AndX1(),this.formatTime(n,s[0],""),this.formatTime(n,s[1],""))}else o+=this.i18n.atSpace()+this.formatTime(n,e,t);return o},y.prototype.getSecondsDescription=function(){var e=this;return this.getSegmentDescription(this.expressionParts[0],this.i18n.everySecond(),function(t){return t},function(t){return X.StringUtilities.format(e.i18n.everyX0Seconds(),t)},function(t){return e.i18n.secondsX0ThroughX1PastTheMinute()},function(t){return"0"==t?"":parseInt(t)<20?e.i18n.atX0SecondsPastTheMinute():e.i18n.atX0SecondsPastTheMinuteGt20()||e.i18n.atX0SecondsPastTheMinute()})},y.prototype.getMinutesDescription=function(){var e=this,n=this.expressionParts[0],o=this.expressionParts[2];return this.getSegmentDescription(this.expressionParts[1],this.i18n.everyMinute(),function(t){return t},function(t){return X.StringUtilities.format(e.i18n.everyX0Minutes(),t)},function(t){return e.i18n.minutesX0ThroughX1PastTheHour()},function(t){try{return"0"==t&&-1==o.indexOf("/")&&""==n?e.i18n.everyHour():parseInt(t)<20?e.i18n.atX0MinutesPastTheHour():e.i18n.atX0MinutesPastTheHourGt20()||e.i18n.atX0MinutesPastTheHour()}catch(t){return e.i18n.atX0MinutesPastTheHour()}})},y.prototype.getHoursDescription=function(){var e=this,t=this.expressionParts[2];return this.getSegmentDescription(t,this.i18n.everyHour(),function(t){return e.formatTime(t,"0","")},function(t){return X.StringUtilities.format(e.i18n.everyX0Hours(),t)},function(t){return e.i18n.betweenX0AndX1()},function(t){return e.i18n.atX0()})},y.prototype.getDayOfWeekDescription=function(){var o=this,n=this.i18n.daysOfTheWeek();return"*"==this.expressionParts[5]?"":this.getSegmentDescription(this.expressionParts[5],this.i18n.commaEveryDay(),function(t){var e=t;return-1<t.indexOf("#")?e=t.substr(0,t.indexOf("#")):-1<t.indexOf("L")&&(e=e.replace("L","")),n[parseInt(e)]},function(t){return 1==parseInt(t)?"":X.StringUtilities.format(o.i18n.commaEveryX0DaysOfTheWeek(),t)},function(t){return o.i18n.commaX0ThroughX1()},function(t){var e=null;if(-1<t.indexOf("#")){var n=null;switch(t.substring(t.indexOf("#")+1)){case"1":n=o.i18n.first();break;case"2":n=o.i18n.second();break;case"3":n=o.i18n.third();break;case"4":n=o.i18n.fourth();break;case"5":n=o.i18n.fifth()}e=o.i18n.commaOnThe()+n+o.i18n.spaceX0OfTheMonth()}else e=-1<t.indexOf("L")?o.i18n.commaOnTheLastX0OfTheMonth():"*"!=o.expressionParts[3]?o.i18n.commaAndOnX0():o.i18n.commaOnlyOnX0();return e})},y.prototype.getMonthDescription=function(){var e=this,n=this.i18n.monthsOfTheYear();return this.getSegmentDescription(this.expressionParts[4],"",function(t){return n[parseInt(t)-1]},function(t){return 1==parseInt(t)?"":X.StringUtilities.format(e.i18n.commaEveryX0Months(),t)},function(t){return e.i18n.commaMonthX0ThroughMonthX1()||e.i18n.commaX0ThroughX1()},function(t){return e.i18n.commaOnlyInMonthX0?e.i18n.commaOnlyInMonthX0():e.i18n.commaOnlyInX0()})},y.prototype.getDayOfMonthDescription=function(){var e=this,t=null,n=this.expressionParts[3];switch(n){case"L":t=this.i18n.commaOnTheLastDayOfTheMonth();break;case"WL":case"LW":t=this.i18n.commaOnTheLastWeekdayOfTheMonth();break;default:var o=n.match(/(\d{1,2}W)|(W\d{1,2})/);if(o){var r=parseInt(o[0].replace("W","")),u=1==r?this.i18n.firstWeekday():X.StringUtilities.format(this.i18n.weekdayNearestDayX0(),r.toString());t=X.StringUtilities.format(this.i18n.commaOnTheX0OfTheMonth(),u);break}var i=n.match(/L-(\d{1,2})/);if(i){var a=i[1];t=X.StringUtilities.format(this.i18n.commaDaysBeforeTheLastDayOfTheMonth(),a);break}if("*"==n&&"*"!=this.expressionParts[5])return"";t=this.getSegmentDescription(n,this.i18n.commaEveryDay(),function(t){return"L"==t?e.i18n.lastDay():e.i18n.dayX0?X.StringUtilities.format(e.i18n.dayX0(),t):t},function(t){return"1"==t?e.i18n.commaEveryDay():e.i18n.commaEveryX0Days()},function(t){return e.i18n.commaBetweenDayX0AndX1OfTheMonth()},function(t){return e.i18n.commaOnDayX0OfTheMonth()})}return t},y.prototype.getYearDescription=function(){var e=this;return this.getSegmentDescription(this.expressionParts[6],"",function(t){return/^\d+$/.test(t)?new Date(parseInt(t),1).getFullYear().toString():t},function(t){return X.StringUtilities.format(e.i18n.commaEveryX0Years(),t)},function(t){return e.i18n.commaYearX0ThroughYearX1()||e.i18n.commaX0ThroughX1()},function(t){return e.i18n.commaOnlyInYearX0?e.i18n.commaOnlyInYearX0():e.i18n.commaOnlyInX0()})},y.prototype.getSegmentDescription=function(t,e,n,o,r,u){var i=null,a=-1<t.indexOf("/"),p=-1<t.indexOf("-"),s=-1<t.indexOf(",");if(t)if("*"===t)i=e;else if(a||p||s)if(s){for(var c=t.split(","),y="",f=0;f<c.length;f++)if(0<f&&2<c.length&&(y+=",",f<c.length-1&&(y+=" ")),0<f&&1<c.length&&(f==c.length-1||2==c.length)&&(y+=this.i18n.spaceAnd()+" "),-1<c[f].indexOf("/")||-1<c[f].indexOf("-")){var m=-1<c[f].indexOf("-")&&-1==c[f].indexOf("/"),h=this.getSegmentDescription(c[f],e,n,o,m?this.i18n.commaX0ThroughX1:r,u);m&&(h=h.replace(", ","")),y+=h}else y+=a?this.getSegmentDescription(c[f],e,n,o,r,u):n(c[f]);i=a?y:X.StringUtilities.format(u(t),y)}else if(a){if(c=t.split("/"),i=X.StringUtilities.format(o(c[1]),c[1]),-1<c[0].indexOf("-")){var d=this.generateRangeSegmentDescription(c[0],r,n);0!=d.indexOf(", ")&&(i+=", "),i+=d}else if(-1==c[0].indexOf("*")){var l=X.StringUtilities.format(u(c[0]),n(c[0]));l=l.replace(", ",""),i+=X.StringUtilities.format(this.i18n.commaStartingX0(),l)}}else p&&(i=this.generateRangeSegmentDescription(t,r,n));else i=X.StringUtilities.format(u(t),n(t));else i="";return i},y.prototype.generateRangeSegmentDescription=function(t,e,n){var o="",r=t.split("-"),u=n(r[0]),i=n(r[1]);i=i.replace(":00",":59");var a=e(t);return o+=X.StringUtilities.format(a,u,i)},y.prototype.formatTime=function(t,e,n){var o=parseInt(t),r="",u=!1;this.options.use24HourTimeFormat||(r=(u=this.i18n.setPeriodBeforeTime&&this.i18n.setPeriodBeforeTime())?this.getPeriod(o)+" ":" "+this.getPeriod(o),12<o&&(o-=12),0===o&&(o=12));var i=e,a="";return n&&(a=":"+("00"+n).substring(n.length)),""+(u?r:"")+("00"+o.toString()).substring(o.toString().length)+":"+("00"+i.toString()).substring(i.toString().length)+a+(u?"":r)},y.prototype.transformVerbosity=function(t,e){return e||(t=(t=(t=(t=t.replace(new RegExp(", "+this.i18n.everyMinute(),"g"),"")).replace(new RegExp(", "+this.i18n.everyHour(),"g"),"")).replace(new RegExp(this.i18n.commaEveryDay(),"g"),"")).replace(/\, ?$/,"")),t},y.prototype.getPeriod=function(t){return 12<=t?this.i18n.pm&&this.i18n.pm()||"PM":this.i18n.am&&this.i18n.am()||"AM"},y.locales={},y);function y(t,e){this.expression=t,this.options=e,this.expressionParts=new Array(5),y.locales[e.locale]?this.i18n=y.locales[e.locale]:(console.warn("Locale '"+e.locale+"' could not be found; falling back to 'en'."),this.i18n=y.locales.en),void 0===e.use24HourTimeFormat&&(e.use24HourTimeFormat=this.i18n.use24HourTimeFormatByDefault())}e.ExpressionDescriptor=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.StringUtilities=void 0;var o=(r.format=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return t.replace(/%s/g,function(){return e.shift()})},r.containsAny=function(e,t){return t.some(function(t){return-1<e.indexOf(t)})},r);function r(){}e.StringUtilities=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.CronParser=void 0;var o=n(3),r=(u.prototype.parse=function(){var t=this.extractParts(this.expression);return this.normalize(t),this.validate(t),t},u.prototype.extractParts=function(t){if(!this.expression)throw new Error("Expression is empty");var e=t.trim().split(/[ ]+/);if(e.length<5)throw new Error("Expression has only "+e.length+" part"+(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(7<e.length)throw new Error("Expression has "+e.length+" parts; too many!");return e},u.prototype.normalize=function(t){var o=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 e=t.replace(/\D/,""),n=e;return o.dayOfWeekStartIndexZero?"7"==e&&(n="0"):n=(parseInt(e)-1).toString(),t.replace(e,n)}),"L"==t[5]&&(t[5]="6"),"?"==t[3]&&(t[3]="*"),-1<t[3].indexOf("W")&&(-1<t[3].indexOf(",")||-1<t[3].indexOf("-")))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 e={SUN:0,MON:1,TUE:2,WED:3,THU:4,FRI:5,SAT:6};for(var n in e)t[5]=t[5].replace(new RegExp(n,"gi"),e[n].toString());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]+="-"+t[2]);for(var i=0;i<t.length;i++)if(-1!=t[i].indexOf(",")&&(t[i]=t[i].split(",").filter(function(t){return""!==t}).join(",")||"*"),"*/1"==t[i]&&(t[i]="*"),-1<t[i].indexOf("/")&&!/^\*|\-|\,/.test(t[i])){var a=null;switch(i){case 4:a="12";break;case 5:a="6";break;case 6:a="9999";break;default:a=null}if(null!=a){var p=t[i].split("/");t[i]=p[0]+"-"+a+"/"+p[1]}}},u.prototype.validate=function(t){this.assertNoInvalidCharacters("DOW",t[5]),this.assertNoInvalidCharacters("DOM",t[3]),this.validateRange(t)},u.prototype.validateRange=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]),o.default.dayOfWeekRange(t[5])},u.prototype.assertNoInvalidCharacters=function(t,e){var n=e.match(/[A-KM-VX-Z]+/gi);if(n&&n.length)throw new Error(t+" part contains invalid values: '"+n.toString()+"'")},u);function u(t,e){void 0===e&&(e=!0),this.expression=t,this.dayOfWeekStartIndexZero=e}e.CronParser=r},function(t,e,n){"use strict";function r(t,e){if(!t)throw new Error(e)}Object.defineProperty(e,"__esModule",{value:!0});var o=(u.secondRange=function(t){for(var e=t.split(","),n=0;n<e.length;n++)if(!isNaN(parseInt(e[n],10))){var o=parseInt(e[n],10);r(0<=o&&o<=59,"seconds part must be >= 0 and <= 59")}},u.minuteRange=function(t){for(var e=t.split(","),n=0;n<e.length;n++)if(!isNaN(parseInt(e[n],10))){var o=parseInt(e[n],10);r(0<=o&&o<=59,"minutes part must be >= 0 and <= 59")}},u.hourRange=function(t){for(var e=t.split(","),n=0;n<e.length;n++)if(!isNaN(parseInt(e[n],10))){var o=parseInt(e[n],10);r(0<=o&&o<=23,"hours part must be >= 0 and <= 23")}},u.dayOfMonthRange=function(t){for(var e=t.split(","),n=0;n<e.length;n++)if(!isNaN(parseInt(e[n],10))){var o=parseInt(e[n],10);r(1<=o&&o<=31,"DOM part must be >= 1 and <= 31")}},u.monthRange=function(t){for(var e=t.split(","),n=0;n<e.length;n++)if(!isNaN(parseInt(e[n],10))){var o=parseInt(e[n],10);r(1<=o&&o<=12,"month part must be >= 1 and <= 12")}},u.dayOfWeekRange=function(t){for(var e=t.split(","),n=0;n<e.length;n++)if(!isNaN(parseInt(e[n],10))){var o=parseInt(e[n],10);r(0<=o&&o<=6,"DOW part must be >= 0 and <= 6")}},u);function u(){}e.default=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.en=void 0;var o=(r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!1},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"An error occured when generating the expression description. Check the cron expression syntax."},r.prototype.everyMinute=function(){return"every minute"},r.prototype.everyHour=function(){return"every hour"},r.prototype.atSpace=function(){return"At "},r.prototype.everyMinuteBetweenX0AndX1=function(){return"Every minute between %s and %s"},r.prototype.at=function(){return"At"},r.prototype.spaceAnd=function(){return" and"},r.prototype.everySecond=function(){return"every second"},r.prototype.everyX0Seconds=function(){return"every %s seconds"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"seconds %s through %s past the minute"},r.prototype.atX0SecondsPastTheMinute=function(){return"at %s seconds past the minute"},r.prototype.everyX0Minutes=function(){return"every %s minutes"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutes %s through %s past the hour"},r.prototype.atX0MinutesPastTheHour=function(){return"at %s minutes past the hour"},r.prototype.everyX0Hours=function(){return"every %s hours"},r.prototype.betweenX0AndX1=function(){return"between %s and %s"},r.prototype.atX0=function(){return"at %s"},r.prototype.commaEveryDay=function(){return", every day"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", every %s days of the week"},r.prototype.commaX0ThroughX1=function(){return", %s through %s"},r.prototype.first=function(){return"first"},r.prototype.second=function(){return"second"},r.prototype.third=function(){return"third"},r.prototype.fourth=function(){return"fourth"},r.prototype.fifth=function(){return"fifth"},r.prototype.commaOnThe=function(){return", on the "},r.prototype.spaceX0OfTheMonth=function(){return" %s of the month"},r.prototype.lastDay=function(){return"the last day"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", on the last %s of the month"},r.prototype.commaOnlyOnX0=function(){return", only on %s"},r.prototype.commaAndOnX0=function(){return", and on %s"},r.prototype.commaEveryX0Months=function(){return", every %s months"},r.prototype.commaOnlyInX0=function(){return", only in %s"},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", on the last day of the month"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", on the last weekday of the month"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s days before the last day of the month"},r.prototype.firstWeekday=function(){return"first weekday"},r.prototype.weekdayNearestDayX0=function(){return"weekday nearest day %s"},r.prototype.commaOnTheX0OfTheMonth=function(){return", on the %s of the month"},r.prototype.commaEveryX0Days=function(){return", every %s days"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", between day %s and %s of the month"},r.prototype.commaOnDayX0OfTheMonth=function(){return", on day %s of the month"},r.prototype.commaEveryHour=function(){return", every hour"},r.prototype.commaEveryX0Years=function(){return", every %s years"},r.prototype.commaStartingX0=function(){return", starting %s"},r.prototype.daysOfTheWeek=function(){return["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"]},r.prototype.monthsOfTheYear=function(){return["January","February","March","April","May","June","July","August","September","October","November","December"]},r);function r(){}e.en=o},,,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.toString=void 0;var o=n(0),r=n(8);o.ExpressionDescriptor.initialize(new r.allLocalesLoader),e.default=o.ExpressionDescriptor;var u=o.ExpressionDescriptor.toString;e.toString=u},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.allLocalesLoader=void 0;var o=n(9),r=(u.prototype.load=function(t){for(var e in o)o.hasOwnProperty(e)&&(t[e]=new o[e])},u);function u(){}e.allLocalesLoader=r},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var o=n(4);Object.defineProperty(e,"en",{enumerable:!0,get:function(){return o.en}});var r=n(10);Object.defineProperty(e,"da",{enumerable:!0,get:function(){return r.da}});var u=n(11);Object.defineProperty(e,"de",{enumerable:!0,get:function(){return u.de}});var i=n(12);Object.defineProperty(e,"es",{enumerable:!0,get:function(){return i.es}});var a=n(13);Object.defineProperty(e,"fr",{enumerable:!0,get:function(){return a.fr}});var p=n(14);Object.defineProperty(e,"it",{enumerable:!0,get:function(){return p.it}});var s=n(15);Object.defineProperty(e,"ko",{enumerable:!0,get:function(){return s.ko}});var c=n(16);Object.defineProperty(e,"nl",{enumerable:!0,get:function(){return c.nl}});var y=n(17);Object.defineProperty(e,"nb",{enumerable:!0,get:function(){return y.nb}});var f=n(18);Object.defineProperty(e,"sv",{enumerable:!0,get:function(){return f.sv}});var m=n(19);Object.defineProperty(e,"pl",{enumerable:!0,get:function(){return m.pl}});var h=n(20);Object.defineProperty(e,"pt_BR",{enumerable:!0,get:function(){return h.pt_BR}});var d=n(21);Object.defineProperty(e,"ro",{enumerable:!0,get:function(){return d.ro}});var l=n(22);Object.defineProperty(e,"ru",{enumerable:!0,get:function(){return l.ru}});var X=n(23);Object.defineProperty(e,"tr",{enumerable:!0,get:function(){return X.tr}});var T=n(24);Object.defineProperty(e,"uk",{enumerable:!0,get:function(){return T.uk}});var v=n(25);Object.defineProperty(e,"zh_CN",{enumerable:!0,get:function(){return v.zh_CN}});var O=n(26);Object.defineProperty(e,"zh_TW",{enumerable:!0,get:function(){return O.zh_TW}});var g=n(27);Object.defineProperty(e,"ja",{enumerable:!0,get:function(){return g.ja}});var M=n(28);Object.defineProperty(e,"he",{enumerable:!0,get:function(){return M.he}});var k=n(29);Object.defineProperty(e,"cs",{enumerable:!0,get:function(){return k.cs}});var D=n(30);Object.defineProperty(e,"sk",{enumerable:!0,get:function(){return D.sk}});var b=n(31);Object.defineProperty(e,"fi",{enumerable:!0,get:function(){return b.fi}});var P=n(32);Object.defineProperty(e,"sl",{enumerable:!0,get:function(){return P.sl}});var S=n(33);Object.defineProperty(e,"sw",{enumerable:!0,get:function(){return S.sw}});var E=n(34);Object.defineProperty(e,"fa",{enumerable:!0,get:function(){return E.fa}});var w=n(35);Object.defineProperty(e,"ca",{enumerable:!0,get:function(){return w.ca}})},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.da=void 0;var o=(r.prototype.use24HourTimeFormatByDefault=function(){return!0},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Der opstod en fejl ved generering af udtryksbeskrivelsen. Tjek cron-ekspressionssyntaxen."},r.prototype.at=function(){return"kl"},r.prototype.atSpace=function(){return"kl "},r.prototype.atX0=function(){return"kl %s"},r.prototype.atX0MinutesPastTheHour=function(){return"%s minutter efter timeskift"},r.prototype.atX0SecondsPastTheMinute=function(){return"%s sekunder efter minutskift"},r.prototype.betweenX0AndX1=function(){return"mellem %s og %s"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellem dag %s og %s i måneden"},r.prototype.commaEveryDay=function(){return", hver dag"},r.prototype.commaEveryX0Days=function(){return", hver %s. dag"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s. ugedag"},r.prototype.commaEveryX0Months=function(){return", hver %s. måned"},r.prototype.commaEveryX0Years=function(){return", hvert %s. år"},r.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s i måneden"},r.prototype.commaOnlyInX0=function(){return", kun i %s"},r.prototype.commaOnlyOnX0=function(){return", kun på %s"},r.prototype.commaAndOnX0=function(){return", og på %s"},r.prototype.commaOnThe=function(){return", på den "},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den sidste dag i måneden"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", på den sidste hverdag i måneden"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dage før den sidste dag i måneden"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den sidste %s i måneden"},r.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s i måneden"},r.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},r.prototype.everyHour=function(){return"hver time"},r.prototype.everyMinute=function(){return"hvert minut"},r.prototype.everyMinuteBetweenX0AndX1=function(){return"hvert minut mellem %s og %s"},r.prototype.everySecond=function(){return"hvert sekund"},r.prototype.everyX0Hours=function(){return"hver %s. time"},r.prototype.everyX0Minutes=function(){return"hvert %s. minut"},r.prototype.everyX0Seconds=function(){return"hvert %s. sekund"},r.prototype.fifth=function(){return"femte"},r.prototype.first=function(){return"første"},r.prototype.firstWeekday=function(){return"første hverdag"},r.prototype.fourth=function(){return"fjerde"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"minutterne fra %s til og med %s hver time"},r.prototype.second=function(){return"anden"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekunderne fra %s til og med %s hvert minut"},r.prototype.spaceAnd=function(){return" og"},r.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},r.prototype.lastDay=function(){return"sidste dag"},r.prototype.third=function(){return"tredje"},r.prototype.weekdayNearestDayX0=function(){return"hverdag nærmest dag %s"},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.commaStartingX0=function(){return", startende %s"},r.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lørdag"]},r.prototype.monthsOfTheYear=function(){return["januar","februar","marts","april","maj","juni","juli","august","september","oktober","november","december"]},r);function r(){}e.da=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.de=void 0;var o=(r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!0},r.prototype.everyMinute=function(){return"jede Minute"},r.prototype.everyHour=function(){return"jede Stunde"},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Beim Generieren der Ausdrucksbeschreibung ist ein Fehler aufgetreten. Überprüfen Sie die Syntax des Cron-Ausdrucks."},r.prototype.atSpace=function(){return"Um "},r.prototype.everyMinuteBetweenX0AndX1=function(){return"Jede Minute zwischen %s und %s"},r.prototype.at=function(){return"Um"},r.prototype.spaceAnd=function(){return" und"},r.prototype.everySecond=function(){return"Jede Sekunde"},r.prototype.everyX0Seconds=function(){return"alle %s Sekunden"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"Sekunden %s bis %s"},r.prototype.atX0SecondsPastTheMinute=function(){return"bei Sekunde %s"},r.prototype.everyX0Minutes=function(){return"alle %s Minuten"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"Minuten %s bis %s"},r.prototype.atX0MinutesPastTheHour=function(){return"bei Minute %s"},r.prototype.everyX0Hours=function(){return"alle %s Stunden"},r.prototype.betweenX0AndX1=function(){return"zwischen %s und %s"},r.prototype.atX0=function(){return"um %s"},r.prototype.commaEveryDay=function(){return", jeden Tag"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", alle %s Tage der Woche"},r.prototype.commaX0ThroughX1=function(){return", %s bis %s"},r.prototype.first=function(){return"ersten"},r.prototype.second=function(){return"zweiten"},r.prototype.third=function(){return"dritten"},r.prototype.fourth=function(){return"vierten"},r.prototype.fifth=function(){return"fünften"},r.prototype.commaOnThe=function(){return", am "},r.prototype.spaceX0OfTheMonth=function(){return" %s des Monats"},r.prototype.lastDay=function(){return"der letzte Tag"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", am letzten %s des Monats"},r.prototype.commaOnlyOnX0=function(){return", nur jeden %s"},r.prototype.commaAndOnX0=function(){return", und jeden %s"},r.prototype.commaEveryX0Months=function(){return", alle %s Monate"},r.prototype.commaOnlyInX0=function(){return", nur im %s"},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", am letzten Tag des Monats"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", am letzten Werktag des Monats"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s tage vor dem letzten Tag des Monats"},r.prototype.firstWeekday=function(){return"ersten Werktag"},r.prototype.weekdayNearestDayX0=function(){return"Werktag am nächsten zum %s Tag"},r.prototype.commaOnTheX0OfTheMonth=function(){return", am %s des Monats"},r.prototype.commaEveryX0Days=function(){return", alle %s Tage"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", zwischen Tag %s und %s des Monats"},r.prototype.commaOnDayX0OfTheMonth=function(){return", an Tag %s des Monats"},r.prototype.commaEveryX0Years=function(){return", alle %s Jahre"},r.prototype.commaStartingX0=function(){return", beginnend %s"},r.prototype.daysOfTheWeek=function(){return["Sonntag","Montag","Dienstag","Mittwoch","Donnerstag","Freitag","Samstag"]},r.prototype.monthsOfTheYear=function(){return["Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember"]},r);function r(){}e.de=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.es=void 0;var o=(r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!1},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Ocurrió un error mientras se generaba la descripción de la expresión. Revise la sintaxis de la expresión de cron."},r.prototype.at=function(){return"A las"},r.prototype.atSpace=function(){return"A las "},r.prototype.atX0=function(){return"a las %s"},r.prototype.atX0MinutesPastTheHour=function(){return"a los %s minutos de la hora"},r.prototype.atX0SecondsPastTheMinute=function(){return"a los %s segundos del minuto"},r.prototype.betweenX0AndX1=function(){return"entre las %s y las %s"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", entre los días %s y %s del mes"},r.prototype.commaEveryDay=function(){return", cada día"},r.prototype.commaEveryX0Days=function(){return", cada %s días"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", cada %s días de la semana"},r.prototype.commaEveryX0Months=function(){return", cada %s meses"},r.prototype.commaOnDayX0OfTheMonth=function(){return", el día %s del mes"},r.prototype.commaOnlyInX0=function(){return", sólo en %s"},r.prototype.commaOnlyOnX0=function(){return", sólo el %s"},r.prototype.commaAndOnX0=function(){return", y el %s"},r.prototype.commaOnThe=function(){return", en el "},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", en el último día del mes"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", en el último día de la semana del mes"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s días antes del último día del mes"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", en el último %s del mes"},r.prototype.commaOnTheX0OfTheMonth=function(){return", en el %s del mes"},r.prototype.commaX0ThroughX1=function(){return", de %s a %s"},r.prototype.everyHour=function(){return"cada hora"},r.prototype.everyMinute=function(){return"cada minuto"},r.prototype.everyMinuteBetweenX0AndX1=function(){return"cada minuto entre las %s y las %s"},r.prototype.everySecond=function(){return"cada segundo"},r.prototype.everyX0Hours=function(){return"cada %s horas"},r.prototype.everyX0Minutes=function(){return"cada %s minutos"},r.prototype.everyX0Seconds=function(){return"cada %s segundos"},r.prototype.fifth=function(){return"quinto"},r.prototype.first=function(){return"primero"},r.prototype.firstWeekday=function(){return"primer día de la semana"},r.prototype.fourth=function(){return"cuarto"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"del minuto %s al %s pasada la hora"},r.prototype.second=function(){return"segundo"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"En los segundos %s al %s de cada minuto"},r.prototype.spaceAnd=function(){return" y"},r.prototype.spaceX0OfTheMonth=function(){return" %s del mes"},r.prototype.lastDay=function(){return"el último día"},r.prototype.third=function(){return"tercer"},r.prototype.weekdayNearestDayX0=function(){return"día de la semana más próximo al %s"},r.prototype.commaEveryX0Years=function(){return", cada %s años"},r.prototype.commaStartingX0=function(){return", comenzando %s"},r.prototype.daysOfTheWeek=function(){return["domingo","lunes","martes","miércoles","jueves","viernes","sábado"]},r.prototype.monthsOfTheYear=function(){return["enero","febrero","marzo","abril","mayo","junio","julio","agosto","septiembre","octubre","noviembre","diciembre"]},r);function r(){}e.es=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.fr=void 0;var o=(r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!1},r.prototype.everyMinute=function(){return"toutes les minutes"},r.prototype.everyHour=function(){return"toutes les heures"},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Une erreur est survenue en générant la description de l'expression cron. Vérifiez sa syntaxe."},r.prototype.atSpace=function(){return"À "},r.prototype.everyMinuteBetweenX0AndX1=function(){return"Toutes les minutes entre %s et %s"},r.prototype.at=function(){return"À"},r.prototype.spaceAnd=function(){return" et"},r.prototype.everySecond=function(){return"toutes les secondes"},r.prototype.everyX0Seconds=function(){return"toutes les %s secondes"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"les secondes entre %s et %s après la minute"},r.prototype.atX0SecondsPastTheMinute=function(){return"%s secondes après la minute"},r.prototype.everyX0Minutes=function(){return"toutes les %s minutes"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"les minutes entre %s et %s après l'heure"},r.prototype.atX0MinutesPastTheHour=function(){return"%s minutes après l'heure"},r.prototype.everyX0Hours=function(){return"toutes les %s heures"},r.prototype.betweenX0AndX1=function(){return"de %s à %s"},r.prototype.atX0=function(){return"à %s"},r.prototype.commaEveryDay=function(){return", tous les jours"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", every %s days of the week"},r.prototype.commaX0ThroughX1=function(){return", de %s à %s"},r.prototype.first=function(){return"premier"},r.prototype.second=function(){return"second"},r.prototype.third=function(){return"troisième"},r.prototype.fourth=function(){return"quatrième"},r.prototype.fifth=function(){return"cinquième"},r.prototype.commaOnThe=function(){return", le "},r.prototype.spaceX0OfTheMonth=function(){return" %s du mois"},r.prototype.lastDay=function(){return"le dernier jour"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", le dernier %s du mois"},r.prototype.commaOnlyOnX0=function(){return", uniquement le %s"},r.prototype.commaAndOnX0=function(){return", et %s"},r.prototype.commaEveryX0Months=function(){return", tous les %s mois"},r.prototype.commaOnlyInX0=function(){return", uniquement en %s"},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", le dernier jour du mois"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", le dernier jour ouvrable du mois"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s jours avant le dernier jour du mois"},r.prototype.firstWeekday=function(){return"premier jour ouvrable"},r.prototype.weekdayNearestDayX0=function(){return"jour ouvrable le plus proche du %s"},r.prototype.commaOnTheX0OfTheMonth=function(){return", le %s du mois"},r.prototype.commaEveryX0Days=function(){return", tous les %s jours"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", du %s au %s du mois"},r.prototype.commaOnDayX0OfTheMonth=function(){return", le %s du mois"},r.prototype.commaEveryX0Years=function(){return", tous les %s ans"},r.prototype.commaDaysX0ThroughX1=function(){return", du %s au %s"},r.prototype.commaStartingX0=function(){return", départ %s"},r.prototype.daysOfTheWeek=function(){return["dimanche","lundi","mardi","mercredi","jeudi","vendredi","samedi"]},r.prototype.monthsOfTheYear=function(){return["janvier","février","mars","avril","mai","juin","juillet","août","septembre","octobre","novembre","décembre"]},r);function r(){}e.fr=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.it=void 0;var o=(r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!0},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"È verificato un errore durante la generazione la descrizione espressione. Controllare la sintassi delle espressioni cron."},r.prototype.at=function(){return"Alle"},r.prototype.atSpace=function(){return"Alle "},r.prototype.atX0=function(){return"alle %s"},r.prototype.atX0MinutesPastTheHour=function(){return"al %s minuto passata l'ora"},r.prototype.atX0SecondsPastTheMinute=function(){return"al %s secondo passato il minuto"},r.prototype.betweenX0AndX1=function(){return"tra le %s e le %s"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", tra il giorno %s e %s del mese"},r.prototype.commaEveryDay=function(){return", ogni giorno"},r.prototype.commaEveryX0Days=function(){return", ogni %s giorni"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", ogni %s giorni della settimana"},r.prototype.commaEveryX0Months=function(){return", ogni %s mesi"},r.prototype.commaEveryX0Years=function(){return", ogni %s anni"},r.prototype.commaOnDayX0OfTheMonth=function(){return", il giorno %s del mese"},r.prototype.commaOnlyInX0=function(){return", solo in %s"},r.prototype.commaOnlyOnX0=function(){return", solo il %s"},r.prototype.commaAndOnX0=function(){return", e il %s"},r.prototype.commaOnThe=function(){return", il "},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", l'ultimo giorno del mese"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", nell'ultima settimana del mese"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s giorni prima dell'ultimo giorno del mese"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", l'ultimo %s del mese"},r.prototype.commaOnTheX0OfTheMonth=function(){return", il %s del mese"},r.prototype.commaX0ThroughX1=function(){return", %s al %s"},r.prototype.everyHour=function(){return"ogni ora"},r.prototype.everyMinute=function(){return"ogni minuto"},r.prototype.everyMinuteBetweenX0AndX1=function(){return"Ogni minuto tra le %s e le %s"},r.prototype.everySecond=function(){return"ogni secondo"},r.prototype.everyX0Hours=function(){return"ogni %s ore"},r.prototype.everyX0Minutes=function(){return"ogni %s minuti"},r.prototype.everyX0Seconds=function(){return"ogni %s secondi"},r.prototype.fifth=function(){return"quinto"},r.prototype.first=function(){return"primo"},r.prototype.firstWeekday=function(){return"primo giorno della settimana"},r.prototype.fourth=function(){return"quarto"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuti %s al %s dopo l'ora"},r.prototype.second=function(){return"secondo"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"secondi %s al %s oltre il minuto"},r.prototype.spaceAnd=function(){return" e"},r.prototype.spaceX0OfTheMonth=function(){return" %s del mese"},r.prototype.lastDay=function(){return"l'ultimo giorno"},r.prototype.third=function(){return"terzo"},r.prototype.weekdayNearestDayX0=function(){return"giorno della settimana più vicino al %s"},r.prototype.commaStartingX0=function(){return", a partire %s"},r.prototype.daysOfTheWeek=function(){return["domenica","lunedì","martedì","mercoledì","giovedì","venerdì","sabato"]},r.prototype.monthsOfTheYear=function(){return["gennaio","febbraio","marzo","aprile","maggio","giugno","luglio","agosto","settembre","ottobre","novembre","dicembre"]},r);function r(){}e.it=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ko=void 0;var o=(r.prototype.setPeriodBeforeTime=function(){return!0},r.prototype.pm=function(){return"오후"},r.prototype.am=function(){return"오전"},r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!1},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"표현식 설명을 생성하는 중 오류가 발생했습니다. cron 표현식 구문을 확인하십시오."},r.prototype.everyMinute=function(){return"1분마다"},r.prototype.everyHour=function(){return"1시간마다"},r.prototype.atSpace=function(){return"에서 "},r.prototype.everyMinuteBetweenX0AndX1=function(){return"%s 및 %s 사이에 매 분"},r.prototype.at=function(){return"에서"},r.prototype.spaceAnd=function(){return" 및"},r.prototype.everySecond=function(){return"1초마다"},r.prototype.everyX0Seconds=function(){return"%s초마다"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"정분 후 %s초에서 %s초까지"},r.prototype.atX0SecondsPastTheMinute=function(){return"정분 후 %s초에서"},r.prototype.everyX0Minutes=function(){return"%s분마다"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"정시 후 %s분에서 %s까지"},r.prototype.atX0MinutesPastTheHour=function(){return"정시 후 %s분에서"},r.prototype.everyX0Hours=function(){return"%s시간마다"},r.prototype.betweenX0AndX1=function(){return"%s에서 %s 사이"},r.prototype.atX0=function(){return"%s에서"},r.prototype.commaEveryDay=function(){return", 매일"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", 주 중 %s일마다"},r.prototype.commaX0ThroughX1=function(){return", %s에서 %s가지"},r.prototype.first=function(){return"첫 번째"},r.prototype.second=function(){return"두 번째"},r.prototype.third=function(){return"세 번째"},r.prototype.fourth=function(){return"네 번째"},r.prototype.fifth=function(){return"다섯 번째"},r.prototype.commaOnThe=function(){return", 해당 "},r.prototype.spaceX0OfTheMonth=function(){return" 해당 월의 %s"},r.prototype.lastDay=function(){return"마지막 날"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", 해당 월의 마지막 %s"},r.prototype.commaOnlyOnX0=function(){return", %s에만"},r.prototype.commaAndOnX0=function(){return", 및 %s에"},r.prototype.commaEveryX0Months=function(){return", %s개월마다"},r.prototype.commaOnlyInX0=function(){return", %s에서만"},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", 해당 월의 마지막 날에"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", 해당 월의 마지막 평일에"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", 해당 월의 마지막 날 %s일 전"},r.prototype.firstWeekday=function(){return"첫 번째 평일"},r.prototype.weekdayNearestDayX0=function(){return"평일 가장 가까운 날 %s"},r.prototype.commaOnTheX0OfTheMonth=function(){return", 해당 월의 %s에"},r.prototype.commaEveryX0Days=function(){return", %s일마다"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", 해당 월의 %s일 및 %s일 사이"},r.prototype.commaOnDayX0OfTheMonth=function(){return", 해당 월의 %s일에"},r.prototype.commaEveryMinute=function(){return", 1분마다"},r.prototype.commaEveryHour=function(){return", 1시간마다"},r.prototype.commaEveryX0Years=function(){return", %s년마다"},r.prototype.commaStartingX0=function(){return", %s부터"},r.prototype.daysOfTheWeek=function(){return["일요일","월요일","화요일","수요일","목요일","금요일","토요일"]},r.prototype.monthsOfTheYear=function(){return["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"]},r);function r(){}e.ko=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.nl=void 0;var o=(r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!1},r.prototype.everyMinute=function(){return"elke minuut"},r.prototype.everyHour=function(){return"elk uur"},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"Er is een fout opgetreden bij het vertalen van de gegevens. Controleer de gegevens."},r.prototype.atSpace=function(){return"Op "},r.prototype.everyMinuteBetweenX0AndX1=function(){return"Elke minuut tussen %s en %s"},r.prototype.at=function(){return"Op"},r.prototype.spaceAnd=function(){return" en"},r.prototype.everySecond=function(){return"elke seconde"},r.prototype.everyX0Seconds=function(){return"elke %s seconden"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"seconden %s t/m %s na de minuut"},r.prototype.atX0SecondsPastTheMinute=function(){return"op %s seconden na de minuut"},r.prototype.everyX0Minutes=function(){return"elke %s minuten"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuut %s t/m %s na het uur"},r.prototype.atX0MinutesPastTheHour=function(){return"op %s minuten na het uur"},r.prototype.everyX0Hours=function(){return"elke %s uur"},r.prototype.betweenX0AndX1=function(){return"tussen %s en %s"},r.prototype.atX0=function(){return"op %s"},r.prototype.commaEveryDay=function(){return", elke dag"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", elke %s dagen van de week"},r.prototype.commaX0ThroughX1=function(){return", %s t/m %s"},r.prototype.first=function(){return"eerste"},r.prototype.second=function(){return"tweede"},r.prototype.third=function(){return"derde"},r.prototype.fourth=function(){return"vierde"},r.prototype.fifth=function(){return"vijfde"},r.prototype.commaOnThe=function(){return", op de "},r.prototype.spaceX0OfTheMonth=function(){return" %s van de maand"},r.prototype.lastDay=function(){return"de laatste dag"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", op de laatste %s van de maand"},r.prototype.commaOnlyOnX0=function(){return", alleen op %s"},r.prototype.commaAndOnX0=function(){return", en op %s"},r.prototype.commaEveryX0Months=function(){return", elke %s maanden"},r.prototype.commaOnlyInX0=function(){return", alleen in %s"},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", op de laatste dag van de maand"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", op de laatste werkdag van de maand"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dagen vóór de laatste dag van de maand"},r.prototype.firstWeekday=function(){return"eerste werkdag"},r.prototype.weekdayNearestDayX0=function(){return"werkdag dichtst bij dag %s"},r.prototype.commaOnTheX0OfTheMonth=function(){return", op de %s van de maand"},r.prototype.commaEveryX0Days=function(){return", elke %s dagen"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", tussen dag %s en %s van de maand"},r.prototype.commaOnDayX0OfTheMonth=function(){return", op dag %s van de maand"},r.prototype.commaEveryX0Years=function(){return", elke %s jaren"},r.prototype.commaStartingX0=function(){return", beginnend %s"},r.prototype.daysOfTheWeek=function(){return["zondag","maandag","dinsdag","woensdag","donderdag","vrijdag","zaterdag"]},r.prototype.monthsOfTheYear=function(){return["januari","februari","maart","april","mei","juni","juli","augustus","september","oktober","november","december"]},r);function r(){}e.nl=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.nb=void 0;var o=(r.prototype.atX0SecondsPastTheMinuteGt20=function(){return null},r.prototype.atX0MinutesPastTheHourGt20=function(){return null},r.prototype.commaMonthX0ThroughMonthX1=function(){return null},r.prototype.commaYearX0ThroughYearX1=function(){return null},r.prototype.use24HourTimeFormatByDefault=function(){return!1},r.prototype.anErrorOccuredWhenGeneratingTheExpressionD=function(){return"En feil inntraff ved generering av uttrykksbeskrivelse. Sjekk cron syntaks."},r.prototype.at=function(){return"Kl."},r.prototype.atSpace=function(){return"Kl."},r.prototype.atX0=function(){return"på %s"},r.prototype.atX0MinutesPastTheHour=function(){return"på %s minutter etter timen"},r.prototype.atX0SecondsPastTheMinute=function(){return"på %s sekunder etter minuttet"},r.prototype.betweenX0AndX1=function(){return"mellom %s og %s"},r.prototype.commaBetweenDayX0AndX1OfTheMonth=function(){return", mellom dag %s og %s av måneden"},r.prototype.commaEveryDay=function(){return", hver dag"},r.prototype.commaEveryX0Days=function(){return", hver %s dag"},r.prototype.commaEveryX0DaysOfTheWeek=function(){return", hver %s ukedag"},r.prototype.commaEveryX0Months=function(){return", hver %s måned"},r.prototype.commaEveryX0Years=function(){return", hvert %s år"},r.prototype.commaOnDayX0OfTheMonth=function(){return", på dag %s av måneden"},r.prototype.commaOnlyInX0=function(){return", bare i %s"},r.prototype.commaOnlyOnX0=function(){return", på %s"},r.prototype.commaAndOnX0=function(){return", og på %s"},r.prototype.commaOnThe=function(){return", på "},r.prototype.commaOnTheLastDayOfTheMonth=function(){return", på den siste dagen i måneden"},r.prototype.commaOnTheLastWeekdayOfTheMonth=function(){return", den siste ukedagen i måneden"},r.prototype.commaDaysBeforeTheLastDayOfTheMonth=function(){return", %s dager før den siste dagen i måneden"},r.prototype.commaOnTheLastX0OfTheMonth=function(){return", på den siste %s av måneden"},r.prototype.commaOnTheX0OfTheMonth=function(){return", på den %s av måneden"},r.prototype.commaX0ThroughX1=function(){return", %s til og med %s"},r.prototype.everyHour=function(){return"hver time"},r.prototype.everyMinute=function(){return"hvert minutt"},r.prototype.everyMinuteBetweenX0AndX1=function(){return"Hvert minutt mellom %s og %s"},r.prototype.everySecond=function(){return"hvert sekund"},r.prototype.everyX0Hours=function(){return"hver %s time"},r.prototype.everyX0Minutes=function(){return"hvert %s minutt"},r.prototype.everyX0Seconds=function(){return"hvert %s sekund"},r.prototype.fifth=function(){return"femte"},r.prototype.first=function(){return"første"},r.prototype.firstWeekday=function(){return"første ukedag"},r.prototype.fourth=function(){return"fjerde"},r.prototype.minutesX0ThroughX1PastTheHour=function(){return"minuttene fra %s til og med %s etter timen"},r.prototype.second=function(){return"sekund"},r.prototype.secondsX0ThroughX1PastTheMinute=function(){return"sekundene fra %s til og med %s etter minuttet"},r.prototype.spaceAnd=function(){return" og"},r.prototype.spaceX0OfTheMonth=function(){return" %s i måneden"},r.prototype.lastDay=function(){return"den siste dagen"},r.prototype.third=function(){return"tredje"},r.prototype.weekdayNearestDayX0=function(){return"ukedag nærmest dag %s"},r.prototype.commaStartingX0=function(){return", starter %s"},r.prototype.daysOfTheWeek=function(){return["søndag","mandag","tirsdag","onsdag","torsdag","fredag","lør