本文介绍了如何使用i18n与Rails 4枚举的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Rails 4 很棒,但是什么是正确的翻译模式i18n?
Rails 4 Active Record Enums are great, but what is the right pattern for translating with i18n?
推荐答案
我没有找到任何具体的模式,所以我只是补充说:
I didn't find any specific pattern either, so I simply added:
en:
user_status:
active: Active
pending: Pending...
archived: Archived
到任意的.yml文件。然后在我的意见中:
to an arbitrary .yml file. Then in my views:
I18n.t :"user_status.#{user.status}"
这篇关于如何使用i18n与Rails 4枚举的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!