翻译模型的值
使用 Rails 3.0.3 处理以下问题的最佳方法是什么?
我有一个模型(id,名称)国籍,其中存储不同的国籍,
即:法国,德国,比利时
我的应用程序应该以多种语言提供,因此包含国籍的选择输入应显示法国,德国,比利时,如果区域设置设置为英语,如果区域设置设置为法语,则应显示 Francais、Allemand、Belge。
在哪里存储翻译以及如何在我的代码中使用它们?
感谢您的帮助。
What's the best way to handle the following problem with rails 3.0.3?
I have a Model(id, name) Nationality, in which I store different nationalities
ie: French, German, Belgian
My application should be available in multiples languages, so the select input which contains the nationalities should show French, German, Belgian if the locale is set to english, and should show Francais, Allemand, Belge if the locale is set to french.
Where to store the translation and how to use them in my code?
Thanks for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您在 en.yml 中创建以下结构:
那么您可以从视图中调用以下内容:
If you create the following structure in your en.yml:
Then you can call the following from your views:
看一下 puret gem,它可以挂钩到您现有的模式而不改变它。
https://github.com/jo/puret#readme
Have a look at the puret gem which hooks into your existing schema without changing it.
https://github.com/jo/puret#readme
所有内容均在 i18n Rails 指南中进行了解释: http://guides.rubyonrails.org/i18n.html
All is explain on i18n rails guides : http://guides.rubyonrails.org/i18n.html