Added an daily-same-time chore period type (closes #1793)

This commit is contained in:
Bernd Bestel
2022-02-20 16:03:50 +01:00
parent e220b3e9f3
commit 1aa7db9c2a
5 changed files with 83 additions and 5 deletions

View File

@@ -158,7 +158,7 @@ $('.input-group-chore-period-type').on('change keyup', function(e)
}
else if (periodType === 'daily')
{
$('#chore-schedule-info').text(__n(periodInterval, "This means the next execution of this chore is scheduled %s day after the last execution", "This means the next execution of this chore is scheduled %s days after the last execution"));
$('#chore-schedule-info').text(__n(periodInterval, "This means the next execution of this chore is scheduled at the same time (based on the start date) every day", "This means the next execution of this chore is scheduled at the same time (based on the start date) every %s days"));
}
else if (periodType === 'weekly')
{