Formatting plural on Shapado and Open Street Map

> You should always use all n forms if your language has n forms. No more, no less.

If an English message uses 'zero' do all languages have to use 'zero', regardless of whether 'zero' is defined for their language or not?

Lloffiwr (talk)17:01, 10 March 2012

I really don't know. I have no knowledge of the inner workings of rails i18n.

Siebrand23:16, 10 March 2012
 

All languages support a key of 'zero' which is handled outside of the language specific pluralizers as seen here:

https://github.com/svenfuchs/i18n/blob/master/lib/i18n/backend/pluralization.rb#L34

So if the value is 0 and a key of "zero" exists then it is used, otherwise the language specific pluralizer is called.

TomH (talk)22:49, 19 March 2012

And so, if an English message uses 'zero', do all the translations have to use 'zero', even if they don't actually need it?

Lloffiwr (talk)22:53, 19 March 2012

Not at all - if there is no "zero" key for a given language then that languages normal pluralization rules are used to select a key.

TomH (talk)00:27, 20 March 2012

Thanks for setting me straight.

Lloffiwr (talk)08:22, 20 March 2012