diff options
author | Rafael França <rafaelmfranca@gmail.com> | 2019-03-11 21:47:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-11 21:47:38 -0400 |
commit | f2cd46bd043820aa732203ab6c6a54f37062aad1 (patch) | |
tree | a24548bad1ddd80b3893a52d1d4163f2d438a6d2 /activemodel/CHANGELOG.md | |
parent | 96242410a8ce8d2de60483002ac20526f3f64c90 (diff) | |
parent | 9ccc5e104287e45b21e4129991b1e507aa1a7dff (diff) | |
download | rails-f2cd46bd043820aa732203ab6c6a54f37062aad1.tar.gz rails-f2cd46bd043820aa732203ab6c6a54f37062aad1.tar.bz2 rails-f2cd46bd043820aa732203ab6c6a54f37062aad1.zip |
Merge pull request #35424 from Korri/validation-rules-locale-fallback
Fall back to parent locale before falling back to the :errors namespace
Diffstat (limited to 'activemodel/CHANGELOG.md')
-rw-r--r-- | activemodel/CHANGELOG.md | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/activemodel/CHANGELOG.md b/activemodel/CHANGELOG.md index a644c63992..d7586f60ed 100644 --- a/activemodel/CHANGELOG.md +++ b/activemodel/CHANGELOG.md @@ -1,3 +1,27 @@ + +* Changed how validation error translation strings are fetched: The new behaviour + will first try the more specific keys, including doing locale fallback, then try + the less specific ones. + + For example this is the order keys will now be tried for a `blank` error on a + `product`'s `title` attribute with current locale set to `en-US`: + + en-US.activerecord.errors.models.product.attributes.title.blank + en-US.activerecord.errors.models.product.blank + en-US.activerecord.errors.messages.blank + + en.activerecord.errors.models.product.attributes.title.blank + en.activerecord.errors.models.product.blank + en.activerecord.errors.messages.blank + + en-US.errors.attributes.title.blank + en-US.errors.messages.blank + + en.errors.attributes.title.blank + en.errors.messages.blank + + *Hugo Vacher* + ## Rails 6.0.0.beta2 (February 25, 2019) ## * Fix date value when casting a multiparameter date hash to not convert |