[FileBackend] Added resyncFiles() function to multiwrite backend.
[lhc/web/wiklou.git] / languages / classes / LanguageBe.php
1 <?php
2 /**
3 * Belarusian normative (Беларуская мова) specific code.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @author Ævar Arnfjörð Bjarmason <avarab@gmail.com>
22 * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License
23 * @license http://www.gnu.org/copyleft/fdl.html GNU Free Documentation License
24 * @ingroup Language
25 */
26
27 /**
28 * Belarusian normative (Беларуская мова)
29 *
30 * This is still the version from Be-x-old, only duplicated for consistency of
31 * plural and grammar functions. If there are errors please send a patch.
32 *
33 * @ingroup Language
34 * @see http://be.wikipedia.org/wiki/Talk:LanguageBe.php
35 */
36 class LanguageBe extends Language {
37
38 /**
39 * @param $count int
40 * @param $forms array
41 *
42 * @return string
43 */
44 function convertPlural( $count, $forms ) {
45 if ( !count( $forms ) ) { return ''; }
46 // @todo FIXME: CLDR defines 4 plural forms instead of 3
47 // http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html
48 $forms = $this->preConvertPlural( $forms, 3 );
49
50 if ( $count > 10 && floor( ( $count % 100 ) / 10 ) == 1 ) {
51 return $forms[2];
52 } else {
53 switch ( $count % 10 ) {
54 case 1: return $forms[0];
55 case 2:
56 case 3:
57 case 4: return $forms[1];
58 default: return $forms[2];
59 }
60 }
61 }
62 }