如何在Rails 5中更改设计中的验证错误消息

时间:2018-09-13 05:47:36

标签: ruby-on-rails devise

我将密码的默认最小长度从@@ password_length = 5..128更改为6..128。当我在注册过程中未通过密码验证时,验证错误显示为“太短(最少5个字符)”。如何将此错误消息更改为“最少​​6个字符”。我阅读了stackoverflow中的一些回答,他们说要查看 devise.views.en.yml 。但是仍然无法更改错误消息。

我的devise.views.en.yml(密码字段)看起来像:

passwords:
  edit:
    change_my_password: Change my password
    change_your_password: Change your password
    confirm_new_password: Confirm new password
    new_password: New password
  new:
    forgot_your_password: Forgot your password?
    send_me_reset_password_instructions: Send me reset password instructions
  no_token: You can't access this page without coming from a password reset email. If you do come from a password reset email, please make sure you used the full URL provided.
  send_instructions: You will receive an email with instructions on how to reset your password in a few minutes.
  send_paranoid_instructions: If your email address exists in our database, you will receive a password recovery link at your email address in a few minutes.
  updated: Your password has been changed successfully. You are now signed in.
  updated_not_active: Your password has been changed successfully.

最欢迎提出建议

1 个答案:

答案 0 :(得分:2)

您必须通过以下方式覆盖devise.en.yml文件

en:
  activerecord:
    errors:
      models:
        user:
          attributes:
            password:
              too_short: "Password is too short (minimum is %{count} characters)"