mirror of
https://github.com/github/rails.git
synced 2026-01-12 08:08:31 -05:00
Add a deprecation for nested i18n namespace lookup.
This commit is contained in:
@@ -96,5 +96,21 @@ module ActiveRecord
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
config.after_initialize do
|
||||
container = :"activerecord.attributes"
|
||||
I18n.t(container, :default => {}).each do |key, value|
|
||||
if value.is_a?(Hash) && value.any? { |k,v| v.is_a?(Hash) }
|
||||
$stderr.puts "[DEPRECATION WARNING] Nested I18n namespace lookup under \"#{container}.#{key}\" is no longer supported"
|
||||
end
|
||||
end
|
||||
|
||||
container = :"activerecord.models"
|
||||
I18n.t(container, :default => {}).each do |key, value|
|
||||
if value.is_a?(Hash)
|
||||
$stderr.puts "[DEPRECATION WARNING] Nested I18n namespace lookup under \"#{container}.#{key}\" is no longer supported"
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user