Merge pull request #6424 from betagouv/i18n-request-password-translation
i18n: request new password translation
This commit is contained in:
commit
a80fc96d5c
3 changed files with 11 additions and 1 deletions
|
@ -16,4 +16,4 @@
|
||||||
= f.label :email, 'Email'
|
= f.label :email, 'Email'
|
||||||
= f.email_field :email, autofocus: true
|
= f.email_field :email, autofocus: true
|
||||||
|
|
||||||
= f.submit 'Demander un nouveau mot de passe', class: 'button expand primary'
|
= f.submit t('devise.passwords.new.request_new_password'), class: 'button expand primary'
|
||||||
|
|
5
config/locales/devise.en.yml
Normal file
5
config/locales/devise.en.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
en:
|
||||||
|
devise:
|
||||||
|
passwords:
|
||||||
|
new:
|
||||||
|
request_new_password: Request new password
|
5
config/locales/devise.fr.yml
Normal file
5
config/locales/devise.fr.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
fr:
|
||||||
|
devise:
|
||||||
|
passwords:
|
||||||
|
new:
|
||||||
|
request_new_password: Demander un nouveau mot de passe
|
Loading…
Reference in a new issue