I am using Rails 3 with Globalize3 0.2.0.beta4
Ideally, I need: fr to return to: en and vice versa.
There are cases when only the French translation is available, and I need to show it, even if the locale is: ru.
I tried
config.i18n.fallbacks = { :fr => :en, :en => :fr }
but it’s somewhat unsurprising that this causes a too deep stack level error.
ruby-on-rails ruby-on-rails-3 internationalization globalization
marc
source share