0

我正在尝试使用语言环境以西班牙语显示文本,但它一直使用英语作为默认值。我的代码:

# config/application.rb
config.i18n.default_locale = :es

# config/locales/es.yml
es:
  sections:
    fashion: Moda

# haml template
= t("sections.fashion")

在视图中生成以下 html: <span class="translation_missing" title="translation missing: en.sections.fashion">Fashion</span>。我错过了什么吗?
提前致谢

4

1 回答 1

0

尝试安装 gem:rails-i18n

就我而言,这是解决方案。

https://github.com/svenfuchs/rails-i18n

于 2013-06-13T18:57:37.450 回答