def plural(value, string)
"#{value} #{value.abs == 1 ? string.singularize : string.pluralize}"
end
If not, what would be a short, sweet name for this method?
def plural(value, string)
"#{value} #{value.abs == 1 ? string.singularize : string.pluralize}"
end
If not, what would be a short, sweet name for this method?