Skip to content

Commit

Permalink
Fixing French plural form.
Browse files Browse the repository at this point in the history
Signed-off-by: David Persson <davidpersson@gmx.de>
  • Loading branch information
greut authored and mariuswilms committed Jul 24, 2011
1 parent 6aced72 commit 1703a61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion g11n/resources/php/fr/message/default.php
Expand Up @@ -15,7 +15,7 @@
*/
return array(
'pluralForms' => 2,
'pluralRule' => function ($n) { return $n == 1 ? 0 : 1; }
'pluralRule' => function ($n) { return $n > 1 ? 1 : 0; }
);

?>

0 comments on commit 1703a61

Please sign in to comment.