- 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]
-
- friendly = translate('en', 'time.formats.friendly')
-
- available_locales.each do |locale|
- time_formats = I18n.t('time.formats', :locale => locale)
+ module PluralizationFallback
+ def pluralize(locale, entry, count)
+ super
+ rescue InvalidPluralizationData => ex
+ raise ex unless ex.entry.key?(:other)
+ ex.entry[:other]
+ end
+ end
+ end