Implemented daily/weekly/monthly recurrence patterns for chores (closes #151)

This commit is contained in:
Bernd Bestel
2019-04-22 14:01:31 +02:00
parent d72fe69a17
commit 77f3b80540
10 changed files with 131 additions and 16 deletions

View File

@@ -2,5 +2,8 @@
return array(
'manually' => 'Manually',
'dynamic-regular' => 'Dynamic regular'
'dynamic-regular' => 'Dynamic regular',
'daily' => 'Daily',
'weekly' => 'Weekly',
'monthly' => 'Monthly'
);

View File

@@ -86,5 +86,8 @@ return array(
'French' => 'French',
'Turkish' => 'Turkish',
'Spanish' => 'Spanish',
'Russian' => 'Russian'
'Russian' => 'Russian',
'The thing which happens on the 5th of every month' => 'The thing which happens on the 5th of every month',
'The thing which happens daily' => 'The thing which happens daily',
'The thing which happens on Mondays and Wednesdays' => 'The thing which happens on Mondays and Wednesdays'
);

View File

@@ -371,5 +371,14 @@ return array(
'Average shelf life' => 'Average shelf life',
'Spoil rate' => 'Spoil rate',
'Show more' => 'Show more',
'Show less' => 'Show less'
'Show less' => 'Show less',
'The amount must be between #1 and #2' => 'The amount must be between #1 and #2',
'Day of month' => 'Day of month',
'Monday' => 'Monday',
'Tuesday' => 'Tuesday',
'Wednesday' => 'Wednesday',
'Thursday' => 'Thursday',
'Friday' => 'Friday',
'Saturday' => 'Saturday',
'Sunday' => 'Sunday'
);