Last modified: 2007-11-30 14:07:20 UTC
With Czech language you can give three variants to {{PLURAL}} template: {{plural:$1|kategorie|kategorie|kategorií}} The same should be in Polish (currently there are only two forms). KDE handles these three forms with such expression: n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2
Created attachment 4393 [details] convertPlural() for Polish (pl) Added a patch against trunk/phase3. I submitted the code to Stv in 2006, but it seems to have never been committed. Oh well...
Created attachment 4395 [details] convertPlural() for Polish (pl)
Created attachment 4396 [details] convertPlural() for Polish (pl)
r27967