diff --git a/resources/views/v1/recurring/index.twig b/resources/views/v1/recurring/index.twig
index 6ea8423a38..24fb661c26 100644
--- a/resources/views/v1/recurring/index.twig
+++ b/resources/views/v1/recurring/index.twig
@@ -55,8 +55,8 @@
{% if rt.active == false %}{% endif %}
- {{ rt.transaction_type|_ }}:
- {{ rt.title }}
+ {{ rt.type|_ }}:
+ {{ rt.title }}
{% if rt.active == false %} ({{ 'inactive'|_|lower }}){% endif %}
{% if rt.description|length > 0 %}
{{ rt.description }}
@@ -84,7 +84,7 @@
|
- {% for rep in rt.recurrence_repetitions %}
+ {% for rep in rt.repetitions %}
- {{ rep.description }}
{% if rep.repetition_skip == 1 %}
({{ trans('firefly.recurring_skips_one')|lower }}).
@@ -111,8 +111,8 @@
{% if null != rt.repeat_until and rt.repetitions == 0 %}
{{ trans('firefly.recurring_repeats_until', {date: rt.repeat_until.formatLocalized(monthAndDayFormat)}) }}.
{% endif %}
- {% if null == rt.repeat_until and rt.repetitions != 0 %}
- {{ trans('firefly.recurring_repeats_x_times', {count: rt.repetitions}) }}.
+ {% if null == rt.repeat_until and rt.nr_of_repetitions != 0 %}
+ {{ trans('firefly.recurring_repeats_x_times', {count: rt.nr_of_repetitions}) }}.
{% endif %}
|