Can I paste the default locale or locale from the session[:lang] as locale param when I type:
domain.com/feed => domain.com/:locale/feed
Now when I type domain.com/feed
it prints the next locale error:
"feed" is not a valid locale
in the
def set_locale
I18n.locale = params[:locale] || I18n.default_locale
end
How can I redirect automatically? Can I?
You can make it optional:
Read 3.2 Dynamic Segments.