The name of the translation model in the active admin

I am looking for a way to translate a model name into an active admin application.

fr: activerecord: models: project: Projet attributes: project: title: Titre 

It works for the attribute, but not for the model name. Any suggestion to fix this?

+4
source share
1 answer

Try using the one and other keys:

 fr: activerecord: models: project: one: Projet other: Projets attributes: project: title: Titre 
+13
source

Source: https://habr.com/ru/post/1396474/


All Articles