1
vote
1answer
34 views

Globalize.with_locale in after_commit callback does not change anything

I'm having troubles with Globalize3 gem when updating cached attribute in after_commit callback. #In My Model after_commit :write_localized_caches private def write_localized_caches ...
0
votes
0answers
44 views

Switch off I18n/Globalize3 fallbacks per Rails model basis

Is it possible to switch off I18n/Globalize3 fallbacks per Rails model basis? I.e. some models use fallback, some don't.
0
votes
1answer
190 views

Locale fallback from country to language without having to define each individually

I am localizing an app with the default rails I18n with globalize3 as the back-end. Is it possible to set a locale with a country code (ie :fr-CA) to fallback to its specific language (:fr) before ...