ruby-on-rails-3.2 – devise.registrations.yasons文件中的原因已被弃用?

我刚刚更新到Rails 3.2,在启动WEBrick之后,我得到以下错误
[DEVISE] devise.registrations.reasons in yml files is deprecated,please use devise.registrations.signed_up_but_REASON instead. The default values are:

en:
  devise:
    registrations:
      signed_up_but_unconfirmed: 'A message with a confirmation link has been sent to your email address. Please open the link to activate your account.'
      signed_up_but_inactive: 'You have signed up successfully. However,we Could not sign you in because your account is not yet activated.'
      signed_up_but_locked: 'You have signed up successfully. However,we Could not sign you in because your account is locked.'



[DEVISE] devise.registrations.inactive_signed_up in yml files is deprecated,we Could not sign you in because your account is locked.'

在我的设计语言环境文件我有另一行:

registrations:
      signed_up: 'Welcome! You have signed up successfully.'
      inactive_signed_up: 'You have signed up successfully. However,we Could not sign you in because your account is %{reason}.'
      updated: 'You updated your account successfully.'
      destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
      reasons:
        inactive: 'inactive'
        unconfirmed: 'unconfirmed'
        locked: 'locked'

对不起,我是一名Rails初学者.我究竟要改变什么?如何?

解决方法

我刚刚遇到这个.这似乎工作正常:

在config>地区> devise.en.yml>关于第36行将注册块更改为:

registrations:
    signed_up: 'Welcome! You have signed up successfully.'
    updated: 'You updated your account successfully.'
    destroyed: 'Bye! Your account was successfully cancelled. We hope to see you again soon.'
    signed_up_but_unconfirmed: 'A message with a confirmation link has been sent to your email address. Please open the link to activate your account.'
    signed_up_but_inactive: 'You have signed up successfully. However,we Could not sign you in because your account is not yet activated.'
    signed_up_but_locked: 'You have signed up successfully. However,we Could not sign you in because your account is locked.'

BTW:确保删除位:

reasons:
    inactive: 'inactive'
    unconfirmed: 'unconfirmed'
    locked: 'locked'

干杯,无光泽

相关文章

validates:conclusion,:presence=>true,:inclusion=>{...
一、redis集群搭建redis3.0以前,提供了Sentinel工具来监控各...
分享一下我老师大神的人工智能教程。零基础!通俗易懂!风趣...
上一篇博文 ruby传参之引用类型 里边定义了一个方法名 mo...
一编程与编程语言 什么是编程语言? 能够被计算机所识别的表...
Ruby类和对象Ruby是一种完美的面向对象编程语言。面向对象编...