1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| export default {
| Seconds: {
| name: 'Seconds',
| every: 'Every second',
| interval: ['Every', 'second(s) starting at second'],
| specific: 'Specific second (choose one or many)',
| cycle: ['Every second between second', 'and second'],
| },
| Minutes: {
| name: 'Minutes',
| every: 'Every minute',
| interval: ['Every', 'minute(s) starting at minute'],
| specific: 'Specific minute (choose one or many)',
| cycle: ['Every minute between minute', 'and minute'],
| },
| Hours: {
| name: 'Hours',
| every: 'Every hour',
| interval: ['Every', 'hour(s) starting at hour'],
| specific: 'Specific hour (choose one or many)',
| cycle: ['Every hour between hour', 'and hour'],
| },
| Day: {
| name: 'Day',
| every: 'Every day',
| intervalWeek: ['Every', 'day(s) starting on'],
| intervalDay: ['Every', 'day(s) starting at the', 'of the month'],
| specificWeek: 'Specific day of week (choose one or many)',
| specificDay: 'Specific day of month (choose one or many)',
| lastDay: 'On the last day of the month',
| lastWeekday: 'On the last weekday of the month',
| lastWeek: ['On the last', ' of the month'],
| beforeEndMonth: ['day(s) before the end of the month'],
| nearestWeekday: ['Nearest weekday (Monday to Friday) to the', 'of the month'],
| someWeekday: ['On the', 'of the month'],
| },
| Week: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
| Month: {
| name: 'Month',
| every: 'Every month',
| interval: ['Every', 'month(s) starting in'],
| specific: 'Specific month (choose one or many)',
| cycle: ['Every month between', 'and'],
| },
| Year: {
| name: 'Year',
| every: 'Any year',
| interval: ['Every', 'year(s) starting in'],
| specific: 'Specific year (choose one or many)',
| cycle: ['Every year between', 'and'],
| },
| Save: 'Save',
| Close: 'Close',
| };
|
|