scope ":locale", locale: /#{I18n.available_locales.join("|")}/ do
resources :products
root to: 'products#index'
end
match '*path', to: redirect("/#{I18n.default_locale}/%{path}"), constraints: lambda { |req| !req.path.starts_with? "/#{I18n.default_locale}/" }
match '', to: redirect("/#{I18n.default_locale}")