mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-30 03:23:48 +00:00
Fix deprecation of transchoice
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
<h2>{{ 'Event search'|trans }}</h2>
|
||||
|
||||
<p>{% transchoice total with { '%pattern%' : pattern } %}%total% events match the search %pattern%{% endtranschoice %}</p>
|
||||
<p>
|
||||
{{ 'total events match the search'|trans({'total' : total}) }} :
|
||||
<a href="{{ path('chill_main_advanced_search', { "name": search_name, "q": pattern } ) }}" class="btn btn-sm">
|
||||
<i class="fa fa-search" aria-hidden="true"></i> {{ pattern }}
|
||||
</a>
|
||||
</p>
|
||||
|
||||
<style>
|
||||
table.events td:last-child {
|
||||
|
@@ -67,7 +67,7 @@
|
||||
|
||||
<h2>{{ 'Participations'|trans }}</h2>
|
||||
{% set count = event.participations|length %}
|
||||
<p>{% transchoice count %}%count% participations to this event{% endtranschoice %}</p>
|
||||
<p>{{ 'count participations to this event'|trans({'count': count}) }}</p>
|
||||
|
||||
{% if count > 0 %}
|
||||
<table class="table table-bordered border-dark align-middle">
|
||||
|
@@ -0,0 +1,13 @@
|
||||
total events match the search: >-
|
||||
{ total, plural,
|
||||
=0 {Aucun événement ne correspond aux termes de recherche}
|
||||
one {Un événement correspond aux termes de recherche}
|
||||
other {# événements correspondent aux termes de recherche}
|
||||
}
|
||||
|
||||
count participations to this event: >-
|
||||
{ count, plural,
|
||||
=0 {Aucun participant à l'événement}
|
||||
one {Un participant à l'événement}
|
||||
other {# participants à l'événement}
|
||||
}
|
@@ -11,7 +11,6 @@ Participation: Participation
|
||||
Participations: Participations
|
||||
Status: Statut
|
||||
Last update: Dernière mise à jour
|
||||
'%count% participations to this event': '{0} Aucun participant à l''événement | {1} Un participant à l''événement | ]1,Inf] %count% participants à l''événement'
|
||||
Moderator: Animateur
|
||||
|
||||
#CRUD event
|
||||
@@ -54,7 +53,6 @@ Are you sure you want to remove that event ?: Êtes-vous certain de vouloir supp
|
||||
|
||||
#search
|
||||
Event search: Recherche d'événements
|
||||
'%total% events match the search %pattern%' : '{0} Aucun événement ne correspond aux termes de recherche "%pattern%" | {1} Un événement a été trouvé par la recherche "%pattern%" | ]1,Inf] %total% événements correspondent aux termes de recherche "%pattern%".'
|
||||
|
||||
CHILL_EVENT_UPDATE: Modifier un événement
|
||||
CHILL_EVENT_CREATE: Créer un événement
|
||||
|
Reference in New Issue
Block a user