diff --git a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list_item.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list_item.html.twig
index 6c7fbf7c0..47b8c8a15 100644
--- a/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list_item.html.twig
+++ b/src/Bundle/ChillPersonBundle/Resources/views/AccompanyingPeriod/_list_item.html.twig
@@ -16,11 +16,13 @@
{% if period.step == 'DRAFT' %}
- {{- 'Draft'|trans|upper -}}
- {% elseif period.step == 'CONFIRMED' %}
- {{- 'Confirmed'|trans|upper -}}
- {% else %}
- {{- 'Closed'|trans|upper -}}
+ {{ 'course.draft'|trans }}
+ {% elseif period.step == 'CLOSED' %}
+ {{ 'course.closed'|trans }}
+ {% elseif period.step == 'CONFIRMED_INACTIVE_SHORT' %}
+ {{ 'course.inactive_short'|trans }}
+ {% elseif period.step == 'CONFIRMED_INACTIVE_LONG' %}
+ {{ 'course.inactive_long'|trans }}
{% endif %}