Pluralize some texts

This commit is contained in:
simon lehericey 2019-11-13 18:48:53 +01:00
parent 67495e9662
commit 874439580b
3 changed files with 10 additions and 2 deletions

View file

@ -28,7 +28,7 @@
%table.table.mt-2
%thead
%tr
%th{ colspan: 2 } Liste des groupes
%th{ colspan: 2 }= t(".existing_groupe", count: @groupes_instructeurs.count)
%tbody
- @groupes_instructeurs.each do |group|
%tr

View file

@ -33,7 +33,7 @@
%table.table.mt-2
%thead
%tr
%th{ colspan: 2 } Instructeurs affectés
%th{ colspan: 2 }= t('.assigned_instructeur', count: @instructeurs.count)
%tbody
- @instructeurs.each do |instructeur|
%tr

View file

@ -1,6 +1,14 @@
fr:
new_administrateur:
groupe_instructeurs:
index:
existing_groupe:
one: "%{count} groupe existe"
other: "%{count} groupes existent"
show:
assigned_instructeur:
one: "%{count} instructeur est affecté"
other: "%{count} instructeurs sont affectés"
add_instructeur:
wrong_address:
one: "%{value} n'est pas une adresse email valide"