Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 25
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
LanguageHy
0.00% covered (danger)
0.00%
0 / 25
0.00% covered (danger)
0.00%
0 / 1
132
0.00% covered (danger)
0.00%
0 / 1
 convertGrammar
0.00% covered (danger)
0.00%
0 / 25
0.00% covered (danger)
0.00%
0 / 1
132
1<?php
2/**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
17 *
18 * @file
19 * @author Ruben Vardanyan (Me@RubenVardanyan.com)
20 */
21
22use MediaWiki\MainConfigNames;
23use MediaWiki\MediaWikiServices;
24
25/**
26 * Armenian (Հայերեն)
27 *
28 * @ingroup Languages
29 */
30class LanguageHy extends Language {
31
32    public function convertGrammar( $word, $case ) {
33        $grammarForms =
34            MediaWikiServices::getInstance()->getMainConfig()->get( MainConfigNames::GrammarForms );
35        if ( isset( $grammarForms['hy'][$case][$word] ) ) {
36            return $grammarForms['hy'][$case][$word];
37        }
38
39        # These rules are not perfect, but they are currently only used for site names so it doesn't
40        # matter if they are wrong sometimes. Just add a special case for your site name if necessary.
41
42        # join and array_slice instead mb_substr
43        $ar = [];
44        preg_match_all( '/./us', $word, $ar );
45        if ( !preg_match( "/[a-zA-Z_]/u", $word ) ) {
46            switch ( $case ) {
47                case 'genitive': # սեռական հոլով
48                    if ( implode( '', array_slice( $ar[0], -1 ) ) == 'ա' ) {
49                        $word = implode( '', array_slice( $ar[0], 0, -1 ) ) . 'այի';
50                    } elseif ( implode( '', array_slice( $ar[0], -1 ) ) == 'ո' ) {
51                        $word = implode( '', array_slice( $ar[0], 0, -1 ) ) . 'ոյի';
52                    } elseif ( implode( '', array_slice( $ar[0], -4 ) ) == 'գիրք' ) {
53                        $word = implode( '', array_slice( $ar[0], 0, -4 ) ) . 'գրքի';
54                    } else {
55                        $word .= 'ի';
56                    }
57                    break;
58                case 'dative':  # Տրական հոլով
59                    # stub
60                    break;
61                case 'accusative': # Հայցական հոլով
62                    # stub
63                    break;
64                case 'instrumental':
65                    # stub
66                    break;
67                case 'prepositional':
68                    # stub
69                    break;
70            }
71        }
72        return $word;
73    }
74}