Index: trunk/phase3/languages/Language.php |
— | — | @@ -1298,7 +1298,7 @@ |
1299 | 1299 | * @return string |
1300 | 1300 | */ |
1301 | 1301 | function convertPlural( $count, $w1, $w2, $w3, $w4, $w5) { |
1302 | | - return $count == '1' ? $w1 : $w2; |
| 1302 | + return ( $count == '1' || $count == '-1' ) ? $w1 : $w2; |
1303 | 1303 | } |
1304 | 1304 | |
1305 | 1305 | /** |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -32,6 +32,7 @@ |
33 | 33 | progress in the extension repository. |
34 | 34 | * Running maintenance/parserTests.php with '--record' option, will now automaticly |
35 | 35 | tries to create its database tables. |
| 36 | +* Made the PLURAL: parser function return singular on -1 per default. |
36 | 37 | |
37 | 38 | == Languages updated == |
38 | 39 | |