cakephp / localized

I18n and L10n related CakePHP code
Other
213 stars 178 forks source link

Fixed incorrect plural form in header.... #78

Closed trante closed 10 years ago

trante commented 10 years ago

It seems like french plural form looks like this: "Plural-Forms: nplurals=2; plural=(n==1? 0 : 1);\n" But the correct value is: "Plural-Forms: nplurals=2; plural=(n > 1);\n"

http://localization-guide.readthedocs.org/en/latest/l10n/pluralforms.html

lorenzo commented 10 years ago

Thanks!