summaryrefslogtreecommitdiff
path: root/languages/classes/LanguageFr.php
blob: ecc1531746932775074fbf3217e472534e9a9caa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php
/** French (Français)
 *
 * @addtogroup Language
 *
 */

class LanguageFr extends Language {
	/**
	 * Use singular form for zero (see bug 7309)
	 */
        function convertPlural( $count, $w1, $w2, $w3, $w4, $w5) {
		return $count <= '1' ? $w1 : $w2;
        }
}
?>