Merge "Make autoblocks update with the parent block"
[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 * Ukrainian numeric format is "12 345,67" but "1234,56"
91 *
92 * @param $_ string
93 *
94 * @return string
95 */
96 function commafy( $_ ) {
97 if ( !preg_match( '/^\-?\d{1,4}(\.\d+)?$/', $_ ) ) {
98 return strrev( (string)preg_replace( '/(\d{3})(?=\d)(?!\d*\.)/', '$1,', strrev( $_ ) ) );
99 } else {
100 return $_;
101 }
102 }
103 }