diff options
author | Jaime Iniesta <jaimeiniesta@gmail.com> | 2010-11-17 09:24:47 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2010-11-21 03:29:43 +0100 |
commit | f044d38192dab10ccdf6556e2bb3b9c90a912fbe (patch) | |
tree | df8331df9a506d723263511463d158a2b22539e6 /railties | |
parent | cbea139130f0d5794a7756fcf93aed48c033ce29 (diff) | |
download | rails-f044d38192dab10ccdf6556e2bb3b9c90a912fbe.tar.gz rails-f044d38192dab10ccdf6556e2bb3b9c90a912fbe.tar.bz2 rails-f044d38192dab10ccdf6556e2bb3b9c90a912fbe.zip |
i18n guide: this is not longer a problem
Diffstat (limited to 'railties')
-rw-r--r-- | railties/guides/source/i18n.textile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/i18n.textile b/railties/guides/source/i18n.textile index 31b6d72041..4ae11b1b7b 100644 --- a/railties/guides/source/i18n.textile +++ b/railties/guides/source/i18n.textile @@ -253,7 +253,7 @@ match '/:locale' => 'dashboard#index' Do take special care about the *order of your routes*, so this route declaration does not "eat" other ones. (You may want to add it directly before the +root :to+ declaration.) -IMPORTANT: This solution has currently one rather big *downside*. Due to the _default_url_options_ implementation, you have to pass the +:id+ option explicitly, like this: +link_to 'Show', book_url(:id => book)+ and not depend on Rails' magic in code like +link_to 'Show', book+. If this should be a problem, have a look at two plugins which simplify work with routes in this way: Sven Fuchs's "routing_filter":http://github.com/svenfuchs/routing-filter/tree/master and Raul Murciano's "translate_routes":http://github.com/raul/translate_routes/tree/master. +NOTE: Have a look at two plugins which simplify work with routes in this way: Sven Fuchs's "routing_filter":http://github.com/svenfuchs/routing-filter/tree/master and Raul Murciano's "translate_routes":http://github.com/raul/translate_routes/tree/master. h4. Setting the Locale from the Client Supplied Information |