i18n
デフォルトロケール
code:config/initializers/locale.rb
Rails.application.config.i18n.default_locale = :ja
I18n.default_locale = :ja
ロケールファイル
code:config/locales/ja.yml
ja:
hello: "こんにちは、ようこそ世界へ"
everybody:
e1: "みなさん"
code:app/views/top/index.html.erb
<h2><%= t 'everybody.e1' %></h2>
<h2><%= t :hello %></h2>
小餅 良介. 独習Ruby on Rails (Japanese Edition) (Kindle Locations 8798-8799). Kindle Edition.
tはI18n.tの省略