Module | I18n::Backend::Helpers |
In: |
lib/active_support/vendor/i18n-0.3.7/i18n/backend/helpers.rb
|
SEPARATOR_ESCAPE_CHAR | = | "\001" |
Expand keys chained by the the given separator through nested Hashes
>> { "a.b.c" => "d", "a.b.e" => "f", "a.g" => "h", "i" => "j" }.unwind => { "a" => { "b" => { "c" => "d", "e" => "f" }, "g" => "h" }, "i" => "j"}