我在閱讀I18N for Active Record Models但我無法在我的模型上獲得正確顯示的屬性。Rails I18n錯誤
我有這樣一個模型:
class Tran < ActiveRecord::Base
validates :description, :presence => true,
:length => {:maximum => 100 }
end
和這樣的en.yml文件:
en:
activerecord:
attributes:
tran:
description: "Description"
errors:
models:
tran:
attributes:
description:
errors:
messages:
blank: "can't be blank!"
當我告訴客戶端上的錯誤信息時,「不能空白!」成功顯示,但描述不會像我所期望的那樣變爲「描述」。我究竟做錯了什麼?
謝謝。
任何人?我只是無法得到這個工作。 – skaz 2011-04-17 14:42:12