为以下情况寻找如何在 I18n yml 文件中写入翻译记录的解决方案:
class SomeClass < ActiveRecord::Base
validate: stock_avail
def stock_avail
# errors is an instance of ActiveModel::Errors
errors.add(:quantity, I18n.t('validation.stock_exceeded'))
# how to write a translation for :quantity part ?
end
end
errors.add
记录在这里。
我如何以及在哪里可以:quantity
为错误消息的属性编写翻译?
谢谢。