diff --git a/src/Bundle/ChillPersonBundle/Resources/views/Person/list_with_period.html.twig b/src/Bundle/ChillPersonBundle/Resources/views/Person/list_with_period.html.twig
index 77cedd0b3..d3c053372 100644
--- a/src/Bundle/ChillPersonBundle/Resources/views/Person/list_with_period.html.twig
+++ b/src/Bundle/ChillPersonBundle/Resources/views/Person/list_with_period.html.twig
@@ -246,8 +246,8 @@
data-bs-target="#collapse_{{ person.id }}"
aria-expanded="false"
aria-controls="collapse_{{ person.id }}">
- {{ 'show'|trans }} {{ 'periods.number of periods'|trans({ 'nb_items': acpsClosed|length }) }}{{ 'closed periods'|trans }}
- {{ 'hide'|trans }} {{ 'closed periods'|trans }}
+ {{ 'periods.show closed periods'|trans({ 'nb_items': acpsClosed|length }) }}
+ {{ 'periods.hide closed periods'|trans({ 'nb_items': acpsClosed|length }) }}
diff --git a/src/Bundle/ChillPersonBundle/translations/messages+intl-icu.fr.yaml b/src/Bundle/ChillPersonBundle/translations/messages+intl-icu.fr.yaml
index ac861c0e5..0e825aa72 100644
--- a/src/Bundle/ChillPersonBundle/translations/messages+intl-icu.fr.yaml
+++ b/src/Bundle/ChillPersonBundle/translations/messages+intl-icu.fr.yaml
@@ -116,10 +116,17 @@ household_composition:
}
periods:
- number of periods: >-
+ show closed periods: >-
{nb_items, plural,
- =0 {Aucun }
- one {un }
- many {# }
- other {# }
+ =0 {Aucun parcours clôturé}
+ one {Montrer un parcours clôturé}
+ many {Montrer # parcours clôturés}
+ other {Montrer # parcours clôturés}
+ }
+ hide closed periods: >-
+ {nb_items, plural,
+ =0 {Aucun parcours clôturé}
+ one {Masquer un parcours clôturé}
+ many {Masquer # parcours clôturés}
+ other {Masquer # parcours clôturés}
}