feat(tasks): allow management of job intervals and disabling them (#3408)

This commit is contained in:
Meier Lukas
2025-07-03 20:59:26 +02:00
committed by GitHub
parent 95c8aadb0c
commit 9398dd983c
37 changed files with 5224 additions and 195 deletions

View File

@@ -3077,7 +3077,8 @@
"status": {
"idle": "Idle",
"running": "Running",
"error": "Error"
"error": "Error",
"disabled": "Disabled"
},
"job": {
"minecraftServerStatus": {
@@ -3140,6 +3141,21 @@
"dockerContainers": {
"label": "Docker containers"
}
},
"interval": {
"seconds": "Every {interval, plural, =1 {second} other {# seconds}}",
"minutes": "Every {interval, plural, =1 {minute} other {# minutes}}",
"hours": "Every {interval, plural, =1 {hour} other {# hours}}",
"midnight": "Every day at midnight",
"weeklyMonday": "Every week on monday"
},
"settings": {
"title": "Task settings for {jobName}"
},
"field": {
"interval": {
"label": "Schedule interval"
}
}
},
"api": {