module RailsI18n::Pluralization::Romanian
def self.rule
def self.rule lambda do |n| return :other unless n.is_a?(Numeric) if n == 1 :one elsif n == 0 || FROM_1_TO_19.include?(n % 100) :few else :other end end end
def self.rule lambda do |n| return :other unless n.is_a?(Numeric) if n == 1 :one elsif n == 0 || FROM_1_TO_19.include?(n % 100) :few else :other end end end