Displaying 1 result from an estimated 1 matches for "change_lg".
Did you mean:
change_log
2007 Sep 06
3
routes, default_url_options and languages
...).
*I would like all my URLs to look like this :*
/fr/companies
/en/companies
*I''ve setup this route :*
map.connect '':lg/:controller/:action/:id''
I don''t want to specify the :lg parameter in every url_for calls.
The language remains the same unless the params[:change_lg] is set.
*In my application.rb, I''ve written this :*
def default_url_options(options)
{ :lg => params[:change_lg].nil? ? session[:language] :
params[:change_lg] }
end
*My problem :*
When I use <?=companies_path ?> in my view, here is the URL that is
generated :
/companies?lg...