react-js-cron-mui
Version:
A React cron editor with Material UI a forked repo from Xavier Rutayisire (https://github.com/xrutayisire/react-js-cron)
39 lines (38 loc) • 1.38 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.DEFAULT_LOCALE_EN = void 0;
var DEFAULT_LOCALE_EN = exports.DEFAULT_LOCALE_EN = {
everyText: 'every',
emptyMonths: 'every month',
emptyMonthDays: 'every day of the month',
emptyMonthDaysShort: 'day of the month',
emptyWeekDays: 'every day of the week',
emptyWeekDaysShort: 'day of the week',
emptyHours: 'every hour',
emptyMinutes: 'every minute',
emptyMinutesForHourPeriod: 'every',
yearOption: 'year',
monthOption: 'month',
weekOption: 'week',
dayOption: 'day',
hourOption: 'hour',
minuteOption: 'minute',
rebootOption: 'reboot',
prefixPeriod: 'Every',
prefixMonths: 'in',
prefixMonthDays: 'on',
prefixWeekDays: 'on',
prefixWeekDaysForMonthAndYearPeriod: 'and',
prefixHours: 'at',
prefixMinutes: ':',
prefixMinutesForHourPeriod: 'at',
suffixMinutesForHourPeriod: 'minute(s)',
errorInvalidCron: 'Invalid cron expression',
clearButtonText: 'Clear',
weekDays: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
months: ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
altWeekDays: ['SUN', 'MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT'],
altMonths: ['JAN', 'FEB', 'MAR', 'APR', 'MAY', 'JUN', 'JUL', 'AUG', 'SEP', 'OCT', 'NOV', 'DEC']
};