rails 5.2.2をインストールしたときのエラー
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
警告文の第2段落によると、
I18n(>= 1.1.0) かつ Rails (< 5.2.2) において fallback 機能を有効にしたい場合、
または、
警告文の第3段落で紹介されているgithubのページによると、
I18n 1.1.x 系において fallback 機能を有効にしたい場合、
/config/environments/production.rb
config.i18n.fallbacks = [I18n.default_locale]
rails newの度に毎回これをやらないといけないのか
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2)
と書かれていることから5.2.2では治るのかどうなのか