本地化 – Rails I18n验证不建议警告,设置enforce_available_locales = true后

前端之家收集整理的这篇文章主要介绍了本地化 – Rails I18n验证不建议警告,设置enforce_available_locales = true后前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你在config / application.rb中放置了这样的东西
I18n.enforce_available_locales = true                                        
config.i18n.load_path += Dir[Rails.root.join('config/locales/','*.{rb,yml}').to_s]
config.i18n.available_locales = ['es-LA',:en]                               
config.i18n.default_locale = 'es-LA'

并且警告仍然出现:

[deprecated] I18n.enforce_available_locales will default to true in the future.

解决方法

原因是由于语言国家/地区格式的错误.好消息是它已经被修复了.这在Github中报道了 Issue 13164,固定在 pull request 229.

如果要使用修复程序获取最新的代码,请更新gem,如下所示:

更新您的Gemfile与:

gem 'i18n',github: 'svenfuchs/i18n'

然后:捆绑安装

原文链接:https://www.f2er.com/ruby/266069.html

猜你在找的Ruby相关文章