module RailsI18n::Pluralization::OneWithZeroOther
def self.rule
def self.rule lambda { |n| n == 0 || n == 1 ? :one : :other } end
def self.with_locale(locale)
def self.with_locale(locale) { locale => { :'i18n' => { :plural => { :keys => [:one, :other], :rule => rule }}}} end