我正在使用Rails 3.1.1,我想正确翻译ActiveModel
的错误消息。我不知道覆盖i18n_scope
是否是解决问题的正确方法(或者有其他方法),但official documentation说:
i18n_scope()
返回类的i18n_scope。如果要自定义,请覆盖 查找。
... 我应该如何过分重视i18n_scope
?
此时我收到以下“警告”:
# Note the 'activemodel' part
translation missing: de.activemodel.errors.models.my_class.attributes.message.blank
# I would like to "map" translations to 'de.activerecord.errors.messages.blank'
# as made for all other ActiveRecord classes in my application
我的ActiveModel
课程如下:
class MyClass
include ActiveModel::Conversion
include ActiveModel::Validations
include ActiveModel::Dirty
extend ActiveModel::Naming
extend ActiveModel::Translation
validates :name, :presence => true
...
end
答案 0 :(得分:11)
它应该是一种类方法,类似于AR code:
class MyClass
include ActiveModel ...
class << self
def i18n_scope
:activerecord
end
end
end
答案 1 :(得分:1)
如果我的回答错误,我必须道歉但我认为以下链接可能对您有所帮助。 http://api.rubyonrails.org/classes/ActiveModel/Errors.html
这个可以帮到你 - &gt; https://github.com/svenfuchs/activemodel-error
或者您可以尝试使用文件de.yml
德:
activemodel:
errors:
my_class:
attributes:
message:
blank: "your error description"
最后一个解决方案,你可能会使用这个宝石 - &gt; https://github.com/svenfuchs/rails-i18n 它会自动为我们翻译错误消息。