I have a form, and the validation looks like the following:
Create
- Nom/titre de votre objet doit être rempli(e)
- Catégorie doit être rempli(e)
- Description doit être rempli(e)
I would like to translate Create
into something else. How can I do that ?
I am guessing I can add something like this in fr.yml:
activerecord:
actions:
create: "Création"
update: "Mise à jour"
But that doesn't work. Is it possible that way ? How can I find the list of all translation keys that I can specify to active record ? I do not find it in the documentation.