6cc23e30503bbbb36e86ee7f5e4cd7fe72e263ec
[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 string $word
36 * @param string $case
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 don't cover the whole language.
46 # They are used only for site names.
47
48 # join and array_slice instead mb_substr
49 $ar = [];
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], -2 ) ) === 'ія' ) {
55 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ії';
56 } elseif ( join( '', array_slice( $ar[0], -2 ) ) === 'ти' ) {
57 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'т';
58 } elseif ( join( '', array_slice( $ar[0], -2 ) ) === 'ди' ) {
59 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'дів';
60 } elseif ( join( '', array_slice( $ar[0], -3 ) ) === 'ник' ) {
61 $word = join( '', array_slice( $ar[0], 0, -3 ) ) . 'ника';
62 }
63 break;
64 case 'accusative': # знахідний відмінок
65 if ( join( '', array_slice( $ar[0], -2 ) ) === 'ія' ) {
66 $word = join( '', array_slice( $ar[0], 0, -2 ) ) . 'ію';
67 }
68 break;
69 }
70 }
71 return $word;
72 }
73
74 /**
75 * Ukrainian numeric format is "12 345,67" but "1234,56"
76 *
77 * @param string $_
78 *
79 * @return string
80 */
81 function commafy( $_ ) {
82 if ( !preg_match( '/^\-?\d{1,4}(\.\d+)?$/', $_ ) ) {
83 return strrev( (string)preg_replace(
84 '/(\d{3})(?=\d)(?!\d*\.)/',
85 '$1,',
86 strrev( $_ )
87 ) );
88 } else {
89 return $_;
90 }
91 }
92 }