You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As of Rails 4.2, i18n has been upgraded to fail upon default_locale assignment if the locale given is not listed in the available_locales.
The rails instructions recommend you configure this inside your Current::Application class with config.i18n.available_locales = [:en, :other].
Guard-Konacha fails to use this and therefore fails to start on rails 4.2 applications forcing the hosting application to use I18n.available_locales = [:en, :other] outside of the Current::Application definition.
The text was updated successfully, but these errors were encountered:
As of Rails 4.2, i18n has been upgraded to fail upon default_locale assignment if the locale given is not listed in the available_locales.
The rails instructions recommend you configure this inside your
Current::Application
class withconfig.i18n.available_locales = [:en, :other]
.Guard-Konacha fails to use this and therefore fails to start on rails 4.2 applications forcing the hosting application to use
I18n.available_locales = [:en, :other]
outside of theCurrent::Application
definition.The text was updated successfully, but these errors were encountered: