Displaying 1 result from an estimated 1 matches for "localized_url_helpers".
2008 Apr 26
0
Routing: Language as first part of path, for just about everything
...w''
map.resources :categories, :path_prefix => '':lang''
Having looked around, I managed to find two plugins, that get''s me
half-way there:
http://www.artweb-design.de/2007/5/13/concise-localized-rails-url-helpers-solved-twice
More specifically resource_fu and localized_url_helpers
Adding either of these and setting a default language in
default_url_options, it''s easy to get a nice default value for named
routes
def default_url_options(options)
{ :lang => ''en'' }
end
But, what do I do with non-named routes?
link_to :controller => '...