前提・実現したいこと
rails 6.0.3.4を使っています。
viewにて「〇〇分前」のように表示させたいです。
発生している問題
「2days前」のように英語表記になってしまいます。
該当のソースコード
Ruby
1index.html.erb 2 3<% @articles.each do |article| %> 4 <%=time_ago_in_words(article.created_at)%>前 5<% end %>
ruby
1application.rb 2 3module Stockapp 4 class Application < Rails::Application 5 # Initialize configuration defaults for originally generated Rails version. 6 config.load_defaults 6.0 7 config.time_zone = "Asia/Tokyo" 8 config.i18n.default_locale = :ja 9 # Settings in config/environments/* take precedence over those specified here. 10 # Application configuration can go into files in config/initializers 11 # -- all .rb files in that directory are automatically loaded after loading 12 # the framework and any gems in your application. 13 end 14end
ruby
1ja.yml 2 3ja: 4 datetime: 5 distance_in_words: 6 about_x_hours: 7 one: 約1時間 8 other: 約%{count}時間 9 about_x_months: 10 one: 約1ヶ月 11 other: 約%{count}ヶ月 12 about_x_years: 13 one: 約1年 14 other: 約%{count}年 15 almost_x_years: 16 one: 1年弱 17 other: "%{count}年弱" 18 half_a_minute: 30秒前後 19 less_than_x_seconds: 20 one: 1秒以内 21 other: "%{count}秒未満" 22 less_than_x_minutes: 23 one: 1分以内 24 other: "%{count}分未満" 25 over_x_years: 26 one: 1年以上 27 other: "%{count}年以上" 28 x_seconds: 29 one: 1秒 30 other: "%{count}秒" 31 x_minutes: 32 one: 1分 33 other: "%{count}分" 34 x_days: 35 one: 1日 36 other: "%{count}日" 37 x_months: 38 one: 1ヶ月 39 other: "%{count}ヶ月" 40 x_years: 41 one: 1年 42 other: "%{count}年"
試したこと
日本語表記についても設定を変えたりしているのですが、上手く行きません...
コンソールで $ bin/rails c として
I18n.default_locale と打つと :ja と表示されますか?
また、 I18n.load_path と打つと表示されるパスの中に ja.yml は含まれていますか?
:ja と 表示され ja.yml が含まれている場合、
サーバーを停止、 $ spring stop してからサーバーを起動すると日本語になりませんか?
@neko_daisukiさんコメントありがとうございます!
コンソールで両方試した結果、どちらも含まれていたためサーバー再起動したところ、日本語表記になっていました!!gemを追加したらサーバーを再起動しなければ反映されないことをすっかり忘れていました。コンソールを使った確認方法はまだ曖昧なので、勉強になりました!ありがとうございます!
回答1件
あなたの回答
tips
プレビュー