Pluralize some texts
This commit is contained in:
parent
67495e9662
commit
874439580b
3 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue