-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
-
module I18n
module Backend
- class Simple
- protected
- alias_method :old_init_translations, :init_translations
-
- def init_translations
- old_init_translations
-
- 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")