Skip to content

Commit

Permalink
Pluralize créneaux depending on list length
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Nov 23, 2022
1 parent d102907 commit c4b59c1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/Resources/views/member/show.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -245,9 +245,9 @@
<p>De plus, à la fin du cycle, les heures effectuées ne seront pas décomptées.</p>
<ul>
{% if use_fly_and_fixed %}
<li>Ce membre a {{ period_positions | length }} créneau fixe.</li>
<li>Ce membre a {{ period_positions | length }} créneau{% if period_positions | length > 1%}x{% endif %} fixe.</li>
{% endif %}
<li>Ce membre a {{ in_progress_and_upcoming_shifts | length }} créneaux à venir.</li>
<li>Ce membre a {{ in_progress_and_upcoming_shifts | length }} créneau{% if period_positions | length > 1%}x{% endif %} à venir.</li>
</ul>
</div>
<div class="modal-footer">
Expand Down Expand Up @@ -300,9 +300,9 @@
<p>Attention, vous êtes sur le point de fermer le compte du membre.</p>
<ul>
{% if use_fly_and_fixed %}
<li>Ce membre a {{ period_positions | length }} créneau fixe.</li>
<li>Ce membre a {{ period_positions | length }} créneau{% if period_positions | length > 1%}x{% endif %} fixe.</li>
{% endif %}
<li>Ce membre a {{ in_progress_and_upcoming_shifts | length }} créneaux à venir.</li>
<li>Ce membre a {{ in_progress_and_upcoming_shifts | length }} créneau{% if period_positions | length > 1%}x{% endif %} à venir.</li>
</ul>
</div>
<div class="modal-footer">
Expand Down

0 comments on commit c4b59c1

Please sign in to comment.