hello,
I am changing the locale in the app controller
before_filter :set_locale
def set_locale
I18n.locale = params[:hl] || I18n.default_locale
end
for a Page that contains rendered partials and has a layout which yields the menu items.
The static text from the Page is translated to the new locale, however the static text from the layout isn't, including the yielded menu items.
It looks like a threading issue.
Has someone encountered this behavior for I18n?