本地化时候发生错误:ranslation missing: zh-CN.product.tite 如下:
application.rb
config.i18n.load_path += Dir[Rails.root.join('config', 'locales','*.{rb,yml}').to_s]
config.i18n.default_locale = :"zh-CN"
创建: /config/locales/zh-CN.yml
zh-CN:
product:
title:产品
视图 view:
<h1><%= I18n.t('product.title') %></h1>
如果把视图中代码换成 t,也就是快捷方式
<h1><%= t('product.title') %></h1>
视图就会显示"title"。 重启服务器了。昨天开始弄本地化的,网上找了下,感觉很简单,好折磨人。求助