aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2009-02-10 12:57:12 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2009-02-10 12:57:12 +0100
commit7527cdf79c640eae5db29a6f3f9b955aa50bc29e (patch)
tree7b3f90e160fe4c53373201c716152f2686f0c7eb /actionpack/CHANGELOG
parent3c6bf82115e184f9c819e5797d3822b6b9daeb14 (diff)
downloadrails-7527cdf79c640eae5db29a6f3f9b955aa50bc29e.tar.gz
rails-7527cdf79c640eae5db29a6f3f9b955aa50bc29e.tar.bz2
rails-7527cdf79c640eae5db29a6f3f9b955aa50bc29e.zip
Added partial scoping to TranslationHelper#translate, so if you call translate('.foo') from the people/index.html.erb template, you'll actually be calling I18n.translate(people.index.foo) [DHH]
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG2
1 files changed, 2 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 41e3be8b35..546adeb61d 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,7 @@
*Edge*
+* Added partial scoping to TranslationHelper#translate, so if you call translate(".foo") from the people/index.html.erb template, you'll actually be calling I18n.translate("people.index.foo") [DHH]
+
* Fix a syntax error in current_page?() that was prevent matches against URL's with multiple query parameters #1385, #1868 [chris finne/Andrew White]
* Added localized rescue template when I18n.locale is set (ex: public/404.da.html) #1835 [José Valim]