Add backup schedule string translation #4017

This commit is contained in:
advplyr 2025-02-22 17:53:05 -06:00
parent e1b3b657c4
commit 64185b7519
2 changed files with 2 additions and 1 deletions

View file

@ -156,7 +156,7 @@ Vue.prototype.$parseCronExpression = (expression, context) => {
.join(', ')
return {
description: `Run every ${weekdayText} at ${pieces[1]}:${pieces[0].padStart(2, '0')}`
description: context.$getString('MessageScheduleRunEveryWeekdayAtTime', [weekdayText, `${pieces[1]}:${pieces[0].padStart(2, '0')}`])
}
}