i18n: add missing i18n keys for User model
The key for naming the User model was missing – so the default localization from devise-i18n was used. Unfortunately devise-i18n lacks the plural form. This fixes the manager dashboard displaying "User" instead of "Users".
This commit is contained in:
parent
defeb76d88
commit
fcd5df3c2b
2 changed files with 8 additions and 0 deletions
|
@ -75,6 +75,10 @@ en:
|
|||
publish: Publish
|
||||
reopen: Reopen
|
||||
activerecord:
|
||||
models:
|
||||
user:
|
||||
one: User
|
||||
other: Users
|
||||
attributes:
|
||||
user:
|
||||
siret: 'SIRET number'
|
||||
|
|
|
@ -80,6 +80,10 @@ fr:
|
|||
publish: Publier
|
||||
reopen: Réactiver
|
||||
activerecord:
|
||||
models:
|
||||
user:
|
||||
one: Utilisateur
|
||||
other: Utilisateurs
|
||||
attributes:
|
||||
default_attributes: &default_attributes
|
||||
password: 'Le mot de passe'
|
||||
|
|
Loading…
Add table
Reference in a new issue