I am trying to make a pluralization work with zero case and also using number_with_delimiter
to make it readable with bigger numbers.
So, I have in my YAML file:
count:
zero: no counts
one: 1 count
other %{count} counts
And in the view:
t 'count', number_with_delimiter(count)
The problem is, it does not work with the zero case. It handle it as other case. But, if I leave out the number_with_delimiter
method it work as expected.
It is possible to pluralize with a number format handling also the zero case?
Rails already have helpers to pluralize the string according to the count given.