如何在RoR中使用多个i18n ymls

时间:2015-02-27 02:03:25

标签: ruby-on-rails

我想为多个客户端

使用多个en.yml(和其他)

例如,

如果客户端是博客,我想加载en_boogle.yml字词

en_boogle.yml

en:
  title: boogle

如果是yumhoo,我想加载en_yumhoo.yml单词

en_yumhoo.yml

en:
  title: yumhoo

我可以在rails中配置吗?

1 个答案:

答案 0 :(得分:0)

为什么不这样做:

 en:
     boogle:
       title: Hello Boogle
       ...other boogle stuff
    yumhoo:
       title: Hello Yumhoo
       ...other yumhoo stuff