在我en.yml翻譯文件,我有:如何覆蓋ruby-on-rails中的通用activerecord錯誤消息?
activerecord:
errors:
template:
header:
one: "1 error prohibited this {{model}} from being saved"
other: "{{count}} errors prohibited this {{model}} from being saved"
當登錄到我的應用程序,該錯誤信息過程中出現的ActiveRecord /驗證錯誤:
「1個錯誤禁止該用戶會話從保存「
顯示(其中user_session是正在使用的模型)。我寧願讓它說一些像
「發生錯誤,以防止您登錄到您的帳戶」。
如何覆蓋我的特定錯誤信息?
謝謝。我有一種感覺,通過在模型和屬性部分的翻譯文件中添加附加條目,有一種更簡單的方法,但我沒有找到任何明確解釋如何去做的東西。 activerecord: - > errors: - > models:AND activerecord: - > errors: - > attributes: – 2010-03-22 23:42:41