尋找一個解決方案如何編寫翻譯記錄在以下情況下,陽明海運的I18n文件:ActiveModel ::錯誤翻譯錯誤消息的屬性部分?
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
是記錄here。
如何以及在哪裏可以編寫錯誤消息的:quantity
屬性的翻譯?
謝謝。
你要翻譯的屬性名稱「量」或錯誤消息?或兩者? – zwippie
正如問題中提到的':quantity'。來自第二個參數的消息翻譯確實沒有問題。 –