mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-28 21:08:48 +01:00
fix #1847
This commit is contained in:
parent
e66f1a156a
commit
72f7513650
1 changed files with 2 additions and 2 deletions
|
|
@ -118,8 +118,8 @@ module RecurringTodos
|
|||
|
||||
def recurrence_pattern_for_specific_day
|
||||
on_day = " #{I18n.t('todos.recurrence.pattern.on_day_n', :n => every_x_day)}"
|
||||
if every_xth_day(0) > 1
|
||||
I18n.t("todos.recurrence.pattern.every_n_months", :n => every_xth_day) + on_day
|
||||
if every_x_month > 1
|
||||
I18n.t("todos.recurrence.pattern.every_n_months", :n => every_x_month) + on_day
|
||||
else
|
||||
I18n.t("todos.recurrence.pattern.every_month") + on_day
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue