| 1 | Index: babel/messages/plurals.py |
|---|
| 2 | =================================================================== |
|---|
| 3 | --- babel/messages/plurals.py (revision 494) |
|---|
| 4 | +++ babel/messages/plurals.py (working copy) |
|---|
| 5 | @@ -%ld,%ld +%ld,%ld @@ |
|---|
| 6 | # Slovenian |
|---|
| 7 | 'sl': (4, '(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)'), |
|---|
| 8 | # Serbian - From Pootle's PO's |
|---|
| 9 | - 'sr': (3, '(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10< =4 && (n%100<10 || n%100>=20) ? 1 : 2)'), |
|---|
| 10 | + 'sr': (3, '(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)'), |
|---|
| 11 | # Southern Sotho - From Pootle's PO's |
|---|
| 12 | 'st': (2, '(n != 1)'), |
|---|
| 13 | # Swedish |
|---|