MediaWiki master
LanguageHy.php
Go to the documentation of this file.
1<?php
24
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}
Armenian (Հայերեն)
convertGrammar( $word, $case)
Grammatical transformations, needed for inflected languages Invoked by putting {{grammar:case|word}} ...
Base class for language-specific code.
Definition Language.php:63
A class containing constants representing the names of configuration variables.
Service locator for MediaWiki core services.