X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/b99e8702912226ffc9264efaeede2d4d2e3c7156..4d91fe3dd95c1058cb8d24fd4c900223e30b9059:/config/initializers/i18n.rb diff --git a/config/initializers/i18n.rb b/config/initializers/i18n.rb index 52a02313a..de44126b0 100644 --- a/config/initializers/i18n.rb +++ b/config/initializers/i18n.rb @@ -1,31 +1,50 @@ -require 'globalize/i18n/missing_translations_log_handler' - -I18n.missing_translations_logger = Logger.new("#{RAILS_ROOT}/log/missing_translations.log") -I18n.exception_handler = :missing_translations_log_handler -I18n.load_path += Dir[ File.join(RAILS_ROOT, 'config', 'legales', '*.yml') ] - module I18n module Backend - class Simple - protected - alias_method :old_init_translations, :init_translations - - def init_translations - old_init_translations + module Fallbacks + def find_first_string_or_lambda_default(defaults) + defaults.each_with_index { |default, ix| return ix if default && !default.is_a?(Symbol) } + nil + end + end - merge_translations(:nb, translations[:no]) - translations[:no] = translations[:nb] + module PluralizationFallback + def pluralize(locale, entry, count) + super + rescue InvalidPluralizationData => ex + raise ex unless ex.entry.has_key?(:other) + ex.entry[:other] + end + end + end - friendly = translate('en', 'time.formats.friendly') + module JS + class << self + def make_ordered(unordered) + ordered = ActiveSupport::OrderedHash.new - available_locales.each do |locale| - time_formats = I18n.t('time.formats', :locale => locale) + unordered.keys.sort { |a,b| a.to_s <=> b.to_s }.each do |key| + value = unordered[key] - unless time_formats.has_key?(:friendly) - store_translations(locale, :time => { :formats => { :friendly => friendly } }) + if value.is_a?(Hash) + ordered[key] = make_ordered(value) + else + ordered[key] = value end end + + ordered + end + + def filtered_translations_with_order + make_ordered(filtered_translations_without_order) end + + alias_method_chain :filtered_translations, :order end end end + +I18n::Backend::Simple.include(I18n::Backend::PluralizationFallback) +I18n::Backend::Simple.include(I18n::Backend::Fallbacks) + +I18n.fallbacks.map("no" => "nb")