mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 13:54:23 +00:00
add translations
I rewrote some messages to be more consistent and avoid multiplication of messages
This commit is contained in:
parent
bc2b89db03
commit
afdac5390d
@ -18,7 +18,7 @@ chill_activity_activity_new:
|
|||||||
menus:
|
menus:
|
||||||
person:
|
person:
|
||||||
order: 200
|
order: 200
|
||||||
label: Add an activity
|
label: Add a new activity
|
||||||
|
|
||||||
chill_activity_activity_create:
|
chill_activity_activity_create:
|
||||||
path: /{_locale}/person/{person_id}/activity/create
|
path: /{_locale}/person/{person_id}/activity/create
|
||||||
|
@ -1,5 +1,24 @@
|
|||||||
|
#general
|
||||||
|
Show the activity: Voir l'activité
|
||||||
|
Edit the activity: Modifier l'activité
|
||||||
|
Activity: Activité
|
||||||
|
Duration time: Durée
|
||||||
|
Duration Time: Durée
|
||||||
|
Reason: Sujet
|
||||||
|
Attendee: Présence de la personne
|
||||||
|
Remark: Notes
|
||||||
|
Add a new activity: Ajouter une nouvelle activité
|
||||||
|
Activity list: Liste des activités
|
||||||
|
present: présent
|
||||||
|
not present: absent
|
||||||
|
Delete: Supprimer
|
||||||
|
|
||||||
|
#forms
|
||||||
|
Activity creation: Nouvelle activité
|
||||||
|
Create: Créer
|
||||||
|
Back to the list: Retour à la liste
|
||||||
|
|
||||||
#timeline
|
#timeline
|
||||||
'%user% has done an %activity_type% on %date%': %user% a effectué une activité de type "%activity_type%" le %date%
|
'%user% has done an %activity_type% on %date%': %user% a effectué une activité de type "%activity_type%" le %date%
|
||||||
Activity: Activité
|
|
||||||
View the activity: Voir l'activité
|
|
||||||
|
|
||||||
|
@ -21,14 +21,14 @@
|
|||||||
{% block title %}{{ 'Activity create' |trans }}{% endblock title %}
|
{% block title %}{{ 'Activity create' |trans }}{% endblock title %}
|
||||||
|
|
||||||
{% block personcontent %}
|
{% block personcontent %}
|
||||||
<h1>Activity creation</h1>
|
<h1>{{ "Activity creation"|trans }}</h1>
|
||||||
|
|
||||||
{{ form(form) }}
|
{{ form(form) }}
|
||||||
|
|
||||||
<ul class="record_actions">
|
<ul class="record_actions">
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ path('chill_activity_activity_list', {'person_id': person.id}) }}">
|
<a href="{{ path('chill_activity_activity_list', {'person_id': person.id}) }}">
|
||||||
Back to the list
|
{{ "Back to the list" | trans }}
|
||||||
</a>
|
</a>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
'%activity_type%': activity.type.name|localize_translatable_string,
|
'%activity_type%': activity.type.name|localize_translatable_string,
|
||||||
'%date%' : activity.date|localizeddate('long', 'none') }
|
'%date%' : activity.date|localizeddate('long', 'none') }
|
||||||
) }}</span> <span class="links"><a href="{{ path('chill_activity_activity_show',
|
) }}</span> <span class="links"><a href="{{ path('chill_activity_activity_show',
|
||||||
{ 'person_id': person.id, 'id': activity.id} ) }}">{{ 'View the activity'|trans }}</a></span>
|
{ 'person_id': person.id, 'id': activity.id} ) }}">{{ 'Show the activity'|trans }}</a></span>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user