module I18n::Backend::Pluralization

def symbolic_count(count)

and returns the symbolic version
Normalizes categories of 0.0 and 1.0
def symbolic_count(count)
  count = 0 if count == 0
  count = 1 if count == 1
  count.to_s.to_sym
end