diff --git a/lib/i18n/backend/base.rb b/lib/i18n/backend/base.rb index 1e2fef02..7ca9c28a 100644 --- a/lib/i18n/backend/base.rb +++ b/lib/i18n/backend/base.rb @@ -188,8 +188,8 @@ def pluralize(locale, entry, count) # # if the given subject is an array then: # each element of the array is recursively interpolated (until it finds a string) - # method interpolates ["yes, %{user}", ["maybe no, %{user}, "no, %{user}"]], :user => "bartuz" - # # => "["yes, bartuz",["maybe no, bartuz", "no, bartuz"]]" + # method interpolates ["yes, %{user}", ["maybe no, %{user}", "no, %{user}"]], :user => "bartuz" + # # => ["yes, bartuz", ["maybe no, bartuz", "no, bartuz"]] def interpolate(locale, subject, values = EMPTY_HASH) return subject if values.empty?