specific key does not exist. This then allows r16613 to be reverted as there is no need to distinguish the cases. Fixes #2087.
52 lines
1.5 KiB
Ruby
52 lines
1.5 KiB
Ruby
require 'i18n/backend/simple'
|
|
|
|
module Globalize
|
|
module Backend
|
|
class Pluralizing < I18n::Backend::Simple
|
|
def pluralize(locale, entry, count)
|
|
return entry unless entry.is_a?(Hash) and count
|
|
key = :zero if count == 0 && entry.has_key?(:zero)
|
|
key ||= pluralizer(locale).call(count, entry)
|
|
raise InvalidPluralizationData.new(entry, count) unless entry.has_key?(key)
|
|
translation entry[key], :plural_key => key
|
|
end
|
|
|
|
def add_pluralizer(locale, pluralizer)
|
|
pluralizers[locale.to_sym] = pluralizer
|
|
end
|
|
|
|
def pluralizer(locale)
|
|
pluralizers[locale.to_sym] || default_pluralizer
|
|
end
|
|
|
|
protected
|
|
def default_pluralizer
|
|
pluralizers[:en]
|
|
end
|
|
|
|
def pluralizers
|
|
@pluralizers ||= {
|
|
:en => lambda { |count, entry|
|
|
case count
|
|
when 1 then entry.has_key?(:one) ? :one : :other
|
|
else :other
|
|
end
|
|
},
|
|
:sl => lambda { |count, entry|
|
|
case count % 100
|
|
when 1 then entry.has_key?(:one) ? :one : :other
|
|
when 2 then entry.has_key?(:two) ? :two : :other
|
|
when 3,4 then entry.has_key?(:few) ? :few : :other
|
|
else :other
|
|
end
|
|
}
|
|
}
|
|
end
|
|
|
|
# Overwrite this method to return something other than a String
|
|
def translation(string, attributes)
|
|
string
|
|
end
|
|
end
|
|
end
|
|
end
|