X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9934eed1903d347dcbfd1dc2df99063febdb3899..945ff7911ca51dc250ffaba71f62821b5c0c0a95:/config/initializers/i18n.rb diff --git a/config/initializers/i18n.rb b/config/initializers/i18n.rb index 2562b67a0..a94618c7e 100644 --- a/config/initializers/i18n.rb +++ b/config/initializers/i18n.rb @@ -4,35 +4,31 @@ 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 - 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