MediaWiki REL1_34
LanguageShi.php
Go to the documentation of this file.
1<?php
38
39 public $mToLatin = [
40 'ⴰ' => 'a', 'ⴱ' => 'b', 'ⴳ' => 'g', 'ⴷ' => 'd', 'ⴹ' => 'ḍ', 'ⴻ' => 'e',
41 'ⴼ' => 'f', 'ⴽ' => 'k', 'ⵀ' => 'h', 'ⵃ' => 'ḥ', 'ⵄ' => 'ε', 'ⵅ' => 'x',
42 'ⵇ' => 'q', 'ⵉ' => 'i', 'ⵊ' => 'j', 'ⵍ' => 'l', 'ⵎ' => 'm', 'ⵏ' => 'n',
43 'ⵓ' => 'u', 'ⵔ' => 'r', 'ⵕ' => 'ṛ', 'ⵙ' => 's', 'ⵚ' => 'ṣ',
44 'ⵛ' => 'š', 'ⵜ' => 't', 'ⵟ' => 'ṭ', 'ⵡ' => 'w', 'ⵢ' => 'y', 'ⵣ' => 'z',
45 'ⵥ' => 'ẓ', 'ⵯ' => 'ʷ', 'ⵖ' => 'ɣ', 'ⵠ' => 'v', 'ⵒ' => 'p',
46 ];
47
49 'A' => 'a', 'B' => 'b', 'C' => 'c', 'D' => 'd', 'E' => 'e',
50 'F' => 'f', 'G' => 'g', 'H' => 'h', 'I' => 'i', 'J' => 'j',
51 'K' => 'k', 'L' => 'l', 'M' => 'm', 'N' => 'n', 'O' => 'o',
52 'P' => 'p', 'Q' => 'q', 'R' => 'r', 'S' => 's', 'T' => 't',
53 'U' => 'u', 'V' => 'v', 'W' => 'w', 'X' => 'x', 'Y' => 'y',
54 'Z' => 'z', 'Ɣ' => 'ɣ',
55 ];
56
57 public $mToTifinagh = [
58 'a' => 'ⴰ', 'b' => 'ⴱ', 'g' => 'ⴳ', 'd' => 'ⴷ', 'ḍ' => 'ⴹ', 'e' => 'ⴻ',
59 'f' => 'ⴼ', 'k' => 'ⴽ', 'h' => 'ⵀ', 'ḥ' => 'ⵃ', 'ε' => 'ⵄ', 'x' => 'ⵅ',
60 'q' => 'ⵇ', 'i' => 'ⵉ', 'j' => 'ⵊ', 'l' => 'ⵍ', 'm' => 'ⵎ', 'n' => 'ⵏ',
61 'u' => 'ⵓ', 'r' => 'ⵔ', 'ṛ' => 'ⵕ', 'γ' => 'ⵖ', 's' => 'ⵙ', 'ṣ' => 'ⵚ',
62 'š' => 'ⵛ', 't' => 'ⵜ', 'ṭ' => 'ⵟ', 'w' => 'ⵡ', 'y' => 'ⵢ', 'z' => 'ⵣ',
63 'ẓ' => 'ⵥ', 'ʷ' => 'ⵯ', 'ɣ' => 'ⵖ', 'v' => 'ⵠ', 'p' => 'ⵒ',
64 ];
65
66 function loadDefaultTables() {
67 $this->mTables = [
68 'lowercase' => new ReplacementArray( $this->mUpperToLowerCaseLatin ),
69 'shi-tfng' => new ReplacementArray( $this->mToTifinagh ),
70 'shi-latn' => new ReplacementArray( $this->mToLatin ),
71 'shi' => new ReplacementArray()
72 ];
73 }
74
85 function findVariantLink( &$link, &$nt, $ignoreOtherCond = false ) {
86 // check for user namespace
87 if ( is_object( $nt ) ) {
88 $ns = $nt->getNamespace();
89 if ( $ns == NS_USER || $ns == NS_USER_TALK ) {
90 return;
91 }
92 }
93
94 $oldlink = $link;
95 parent::findVariantLink( $link, $nt, $ignoreOtherCond );
96 if ( $this->getPreferredVariant() == $this->mMainLanguageCode ) {
97 $link = $oldlink;
98 }
99 }
100
109 function translate( $text, $toVariant ) {
110 // If $text is empty or only includes spaces, do nothing
111 // Otherwise translate it
112 if ( trim( $text ) ) {
113 $this->loadTables();
114 // To Tifinagh, first translate uppercase to lowercase Latin
115 if ( $toVariant == 'shi-tfng' ) {
116 $text = $this->mTables['lowercase']->replace( $text );
117 }
118 $text = $this->mTables[$toVariant]->replace( $text );
119 }
120 return $text;
121 }
122}
123
129class LanguageShi extends Language {
130 function __construct() {
131 parent::__construct();
132
133 $variants = [ 'shi', 'shi-tfng', 'shi-latn' ];
134 $variantfallbacks = [
135 'shi' => 'shi-tfng',
136 'shi-tfng' => 'shi',
137 'shi-latn' => 'shi',
138 ];
139
140 $flags = [];
141 $this->mConverter = new ShiConverter( $this, 'shi', $variants, $variantfallbacks, $flags );
142 }
143}
Base class for language conversion.
getPreferredVariant()
Get preferred language variant.
loadTables( $fromCache=true)
Load conversion tables either from the cache or the disk.
Tachelhit.
Internationalisation code.
Definition Language.php:37
Wrapper around strtr() that holds replacements.
Conversion script between Latin and Tifinagh for Tachelhit.
translate( $text, $toVariant)
It translates text into variant.
findVariantLink(&$link, &$nt, $ignoreOtherCond=false)
A function wrapper:
loadDefaultTables()
Load default conversion tables.
const NS_USER
Definition Defines.php:71
const NS_USER_TALK
Definition Defines.php:72