翻译模型的值

发布于 2024-10-03 22:12:23 字数 241 浏览 2 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

梨涡 2024-10-10 22:12:23

如果您在 en.yml 中创建以下结构:

#en.yml
en:
  label_french: French
  label_german: German

那么您可以从视图中调用以下内容:

<%= t("label_#{@nationality.name}") %>

If you create the following structure in your en.yml:

#en.yml
en:
  label_french: French
  label_german: German

Then you can call the following from your views:

<%= t("label_#{@nationality.name}") %>
樱&纷飞 2024-10-10 22:12:23

看一下 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

草莓酥 2024-10-10 22:12:23

所有内容均在 i18n Rails 指南中进行了解释: http://guides.rubyonrails.org/i18n.html

All is explain on i18n rails guides : http://guides.rubyonrails.org/i18n.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文