Browse Source

Fix sign in validation error copy (#831)

These errors were injecting devise's authentication_keys which includes email and was duplicating that copy, for example:

"Incorrect email email or password"
pull/834/head
James Rose 2 years ago committed by GitHub
parent
commit
2ce610933d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      config/locales/devise.en.yml

4
config/locales/devise.en.yml

@ -9,10 +9,10 @@ en:
failure: failure:
already_authenticated: "You are already signed in" already_authenticated: "You are already signed in"
inactive: "Your account has not been activated yet" inactive: "Your account has not been activated yet"
invalid: "Incorrect %{authentication_keys} email or password" invalid: "Incorrect %{authentication_keys} or password"
locked: "Your account has been locked." locked: "Your account has been locked."
last_attempt: "You have one more attempt before your account is locked" last_attempt: "You have one more attempt before your account is locked"
not_found_in_database: "Incorrect %{authentication_keys} email or password" not_found_in_database: "Incorrect %{authentication_keys} or password"
timeout: "Your session expired. Sign in again to continue." timeout: "Your session expired. Sign in again to continue."
unauthenticated: "You need to sign in or sign up before continuing" unauthenticated: "You need to sign in or sign up before continuing"
unconfirmed: "You must confirm your email address before continuing" unconfirmed: "You must confirm your email address before continuing"

Loading…
Cancel
Save