aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/CHANGELOG.md
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-29 23:46:55 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2014-12-29 23:48:35 -0300
commitecb1981bfd3ffaca3a3efd110fc85380ece8191d (patch)
tree1b48cc326ad1c3ea800967a66cd106525e42e573 /actionmailer/CHANGELOG.md
parentd9b080bf3b1f28a52a2020c5c4b106cddf0303e0 (diff)
downloadrails-ecb1981bfd3ffaca3a3efd110fc85380ece8191d.tar.gz
rails-ecb1981bfd3ffaca3a3efd110fc85380ece8191d.tar.bz2
rails-ecb1981bfd3ffaca3a3efd110fc85380ece8191d.zip
Template lookup now respect default locale and I18n fallbacks.
Given the following templates: mailer/demo.html.erb mailer/demo.en.html.erb mailer/demo.pt.html.erb Before this change for a locale that doesn't have its related file the `mailer/demo.html.erb` will be rendered even if `en` is the default locale. Now `mailer/demo.en.html.erb` has precedence over the file without locale. Also, it is possible to give a fallback. mailer/demo.pt.html.erb mailer/demo.pt-BR.html.erb So if the locale is `pt-PT`, `mailer/demo.pt.html.erb` will be rendered given the right I18n fallback configuration. Fixes #11884.
Diffstat (limited to 'actionmailer/CHANGELOG.md')
-rw-r--r--actionmailer/CHANGELOG.md23
1 files changed, 23 insertions, 0 deletions
diff --git a/actionmailer/CHANGELOG.md b/actionmailer/CHANGELOG.md
index 88b0962e8c..2f9c0dd7a3 100644
--- a/actionmailer/CHANGELOG.md
+++ b/actionmailer/CHANGELOG.md
@@ -1 +1,24 @@
+* Template lookup now respect default locale and I18n fallbacks.
+
+ Given the following templates:
+
+ mailer/demo.html.erb
+ mailer/demo.en.html.erb
+ mailer/demo.pt.html.erb
+
+ Before this change for a locale that doesn't have its related file the `mailer/demo.html.erb` will
+ be rendered even if `en` is the default locale.
+
+ Now `mailer/demo.en.html.erb` has precedence over the file without locale.
+
+ Also, it is possible to give a fallback.
+
+ mailer/demo.pt.html.erb
+ mailer/demo.pt-BR.html.erb
+
+ So if the locale is `pt-PT`, `mailer/demo.pt.html.erb` will be rendered given the right I18n
+ fallback configuration.
+
+ *Rafael Mendonça França*
+
Please check [4-2-stable](https://github.com/rails/rails/blob/4-2-stable/actionmailer/CHANGELOG.md) for previous changes.