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?
If not, what would be a short, sweet name for this method? |
||||
|
|
|
ActionView::Helpers::TextHelper
More documentation and examples available here |
|||
|
|