我正在尝试使用语言环境以西班牙语显示文本,但它一直使用英语作为默认值。我的代码:
# 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>
。我错过了什么吗?
提前致谢