gems i18n 1.1.0
v1.1.0

latest releases: 1.14.7, 1.14.6, 1.14.5...
6 years ago

BREAKING CHANGE: Fallbacks

  • Fallbacks now exclude default locale - #415, possibly fixes #413 + #338

Please check your Rails app for this line:

config.i18n.fallbacks = true

This setting is now incorrect as of this version of I18n. It should instead be:

config.i18n.fallbacks = [I18n.default_locale]

If not, fallbacks will be broken in your app by I18n 1.1.x.

Ensure that you are using config.i18n.fallbacks = [I18n.default_locale] if you intend on fallbacks behaving correctly in I18n.

Other fixes

  • Simplified default exception handler - #414
  • Fixed deprecated use of assert_nothing_raised #417
  • Fixed pluralization behavior for KeyValue backend with subtrees disabled - #419
  • Allow yaml file extension - #421

Don't miss a new i18n release

NewReleases is sending notifications on new releases.