我有mongoid和模型翻译的问题.当我尝试在我的模型上使用mongoDB时,我不知道要翻译属性和模型名称.它通常在*.yml文件中,但在这个时候这不起作用.有任何想法吗?
变体与"activemodel"对我不起作用.但.
这个变种对我有用:
en: mongoid: errors: models: user: attributes: email: blank: "You have to give me your e-mail address" not_found: "e-mail address not found in list of members" #... attributes: user: email: "Email address" name: "Your nickname" #...
从这里
在yml文件中尝试这个(在我的例子中是config/locales/pt-BR.yml):
activemodel: attributes: [model_name]: [attribute1]: "[translation1]" [attribute2]: "[translation2]" [attribute3]: "[translation3]"
为我工作,使用mongoid 2.0.0.beta.17和rails 3.0.0