Antoine Wako
Antoine Wako

Reputation: 145

i18n dont find the translation

I18n cant find the translation even if the translation is present in my YML,

translation missing: fr.activerecord.errors.models.user.attributes.email.not_found

errors:
    messages:
      already_confirmed: a déjà été confirmé(e)
      confirmation_period_expired: doit être confirmé(e) en %{period}, veuillez en demander un(e) autre
      expired: est expiré, veuillez en demander un autre
      not_found: n’a pas été trouvé(e)
      not_locked: n’était pas verrouillé(e)
      not_saved:
        one: 'une erreur a empêché ce (cet ou cette) %{resource} d’être enregistré(e) :'
        other: "%{count} erreurs ont empêché ce (cet ou cette) %{resource} d’être enregistré(e) :"

Upvotes: 1

Views: 264

Answers (1)

Sebastián Palma
Sebastián Palma

Reputation: 33420

It must follows correctly the "pattern", the locale is the root, in this case fr:

fr:
  activerecord:
    errors:
      models:
        user:
          attributes:
            email:
              not_found: Email not found

Upvotes: 1

Related Questions