MediaWiki  REL1_31
LanguageShi.php
Go to the documentation of this file.
1 <?php
37  protected $mDoContentConvert;
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 
129 class 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 }
ShiConverter\$mDoContentConvert
$mDoContentConvert
Definition: LanguageShi.php:37
ShiConverter\translate
translate( $text, $toVariant)
It translates text into variant.
Definition: LanguageShi.php:109
LanguageShi
Tachelhit.
Definition: LanguageShi.php:129
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:37
LanguageShi\__construct
__construct()
Definition: LanguageShi.php:130
$link
usually copyright or history_copyright This message must be in HTML not wikitext & $link
Definition: hooks.txt:3021
ShiConverter\$mToTifinagh
$mToTifinagh
Definition: LanguageShi.php:57
NS_USER_TALK
const NS_USER_TALK
Definition: Defines.php:77
ReplacementArray
Wrapper around strtr() that holds replacements.
Definition: ReplacementArray.php:24
LanguageConverter\getPreferredVariant
getPreferredVariant()
Get preferred language variant.
Definition: LanguageConverter.php:161
LanguageConverter\loadTables
loadTables( $fromCache=true)
Load conversion tables either from the cache or the disk.
Definition: LanguageConverter.php:913
ShiConverter\loadDefaultTables
loadDefaultTables()
Load default conversion tables.
Definition: LanguageShi.php:66
ShiConverter\findVariantLink
findVariantLink(&$link, &$nt, $ignoreOtherCond=false)
A function wrapper:
Definition: LanguageShi.php:85
ShiConverter
Conversion script between Latin and Tifinagh for Tachelhit.
Definition: LanguageShi.php:36
NS_USER
const NS_USER
Definition: Defines.php:76
ShiConverter\$mToLatin
$mToLatin
Definition: LanguageShi.php:39
ShiConverter\$mUpperToLowerCaseLatin
$mUpperToLowerCaseLatin
Definition: LanguageShi.php:48
LanguageConverter
Base class for language conversion.
Definition: LanguageConverter.php:34
Language
Internationalisation code.
Definition: Language.php:35