X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9934eed1903d347dcbfd1dc2df99063febdb3899..eeb9866d50e35b8f8b75e59aed582caba533778f:/config/initializers/i18n.rb diff --git a/config/initializers/i18n.rb b/config/initializers/i18n.rb index 2562b67a0..1ee7716e6 100644 --- a/config/initializers/i18n.rb +++ b/config/initializers/i18n.rb @@ -4,7 +4,7 @@ module I18n def pluralize(locale, entry, count) super rescue InvalidPluralizationData => ex - raise ex unless ex.entry.has_key?(:other) + raise ex unless ex.entry.key?(:other) ex.entry[:other] end end @@ -15,7 +15,7 @@ module I18n def make_ordered(unordered) ordered = ActiveSupport::OrderedHash.new - unordered.keys.sort { |a,b| a.to_s <=> b.to_s }.each do |key| + unordered.keys.sort { |a, b| a.to_s <=> b.to_s }.each do |key| value = unordered[key] if value.is_a?(Hash)