61cd91c62368b64d6f58da27aee7f578d647f086
[lhc/web/wiklou.git] / languages / LanguageFr.php
1 <?php
2 /** French (Français)
3 *
4 * @package MediaWiki
5 * @subpackage Language
6 *
7 */
8
9 class LanguageFr extends Language {
10 /**
11 * Use singular form for zero (see bug 7309)
12 */
13 function convertPlural( $count, $w1, $w2, $w3) {
14 return $count <= '1' ? $w1 : $w2;
15 }
16 }
17 ?>