Merge "ForeignAPIRepo: Fetch thumb error from foreign repo"
[lhc/web/wiklou.git] / languages / classes / LanguageUk.php
1 <?php
2 /**
3 * Ukrainian (українська мова) 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 * @ingroup Language
22 */
23
24 /**
25 * Ukrainian (українська мова)
26 *
27 * @ingroup Language
28 */
29 class LanguageUk extends Language {
30
31 /**
32 * Convert from the nominative form of a noun to some other case
33 * Invoked with {{grammar:case|word}}
34 *
35 * @param $word string
36 * @param $case string
37 * @return string
38 */
39 function convertGrammar( $word, $case ) {
40 global $wgGrammarForms;
41 if ( isset( $wgGrammarForms['uk'][$case][$word] ) ) {
42 return $wgGrammarForms['uk'][$case][$word];
43 }
44
45 # These rules are not perfect, but they are currently only used for site names so it doesn't
46 # matter if they are wrong sometimes. Just add a special case for your site name if necessary.
47
48 # join and array_slice instead mb_substr
49 $ar = array();
50 preg_match_all( '/./us', $word, $ar );
51 if ( !preg_match( "/[a-zA-Z_]/us", $word ) ) {
52 switch ( $case ) {
53 case 'genitive': # родовий відмінок
54 if ( ( join( '', array_slice( $ar[0], -4 ) ) == 'вікі' ) || ( join( '', array_slice( $ar[0], -4 ) ) == 'Вікі' ) ) {
55 } elseif ( join( '', array_slice( $ar[0], -1 ) ) == 'ь' ) {
56 $word = join( '', array_slice( $ar[0], 0, -1 ) ) . 'я';
57 } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ія' ) {
58 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ії';
59 } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ка' ) {
60 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ки';
61 } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ти' ) {
62 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'тей';
63 } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ди' ) {
64 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'дів';
65 } elseif ( join( '', array_slice( $ar[0], -3 ) ) == 'ник' ) {
66 $word = join( '', array_slice( $ar[0], 0, -3 ) ) . 'ника';
67 }
68 break;
69 case 'dative': # давальний відмінок
70 # stub
71 break;
72 case 'accusative': # знахідний відмінок
73 if ( ( join( '', array_slice( $ar[0], -4 ) ) == 'вікі' ) || ( join( '', array_slice( $ar[0], -4 ) ) == 'Вікі' ) ) {
74 } elseif ( join( '', array_slice( $ar[0], -2 ) ) == 'ія' ) {
75 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ію';
76 }
77 break;
78 case 'instrumental': # орудний відмінок
79 # stub
80 break;
81 case 'prepositional': # місцевий відмінок
82 # stub
83 break;
84 }
85 }
86 return $word;
87 }
88
89 /**
90 * @param $count int
91 * @param $forms array
92 * @return string
93 */
94 function convertPlural( $count, $forms ) {
95 if ( !count( $forms ) ) {
96 return '';
97 }
98
99 // If the actual number is not mentioned in the expression, then just two forms are enough:
100 // singular for $count == 1
101 // plural for $count != 1
102 // For example, "This user belongs to {{PLURAL:$1|one group|several groups}}."
103 if ( count( $forms ) === 2 ) {
104 return $count == 1 ? $forms[0] : $forms[1];
105 }
106
107 // @todo FIXME: CLDR defines 4 plural forms. Form for decimals is missing/
108 // See http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html#uk
109 $forms = $this->preConvertPlural( $forms, 3 );
110
111 if ( $count > 10 && floor( ( $count % 100 ) / 10 ) == 1 ) {
112 return $forms[2];
113 } else {
114 switch ( $count % 10 ) {
115 case 1: return $forms[0];
116 case 2:
117 case 3:
118 case 4: return $forms[1];
119 default: return $forms[2];
120 }
121 }
122 }
123
124 /**
125 * Ukrainian numeric format is "12 345,67" but "1234,56"
126 *
127 * @param $_ string
128 *
129 * @return string
130 */
131 function commafy( $_ ) {
132 if ( !preg_match( '/^\-?\d{1,4}(\.\d+)?$/', $_ ) ) {
133 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
134 } else {
135 return $_;
136 }
137 }
138 }