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
- end
- module JS
- class << self
- def make_ordered(unordered)
- ordered = ActiveSupport::OrderedHash.new
-
- unordered.keys.sort { |a,b| a.to_s <=> b.to_s }.each do |key|
- value = unordered[key]
-
- if value.is_a?(Hash)
- ordered[key] = make_ordered(value)
- else
- ordered[key] = value
- end
- end
+ class Simple
+ def store_translations_with_normalisation(locale, data, options = {})
+ locale = I18n::Locale::Tag::Rfc4646.tag(locale).to_s
- ordered
+ store_translations_without_normalisation(locale, data, options)
end
- def filtered_translations_with_order
- make_ordered(filtered_translations_without_order)
+ alias_method_chain :store_translations, :normalisation
+ end
+ end
+
+ module JS
+ class FallbackLocales
+ def default_fallbacks_with_validation
+ default_fallbacks_without_validation.select do |locale|
+ ::I18n.available_locales.include?(locale)
+ end
end
- alias_method_chain :filtered_translations, :order
+ alias_method_chain :default_fallbacks, :validation
end
end
end