3 * Shilha specific code.
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.
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.
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
25 * Conversion script between Latin and Tifinagh for Tachelhit.
26 * - Tifinagh -> lowercase Latin
27 * - lowercase/uppercase Latin -> Tifinagh
31 * - https://en.wikipedia.org/wiki/Shilha_language
36 class ShiConverter
extends LanguageConverter
{
37 protected $mDoContentConvert;
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',
48 public $mUpperToLowerCaseLatin = [
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', 'Ɣ' => 'ɣ',
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' => 'ⵒ',
66 function loadDefaultTables() {
68 'lowercase' => new ReplacementArray( $this->mUpperToLowerCaseLatin
),
69 'shi-tfng' => new ReplacementArray( $this->mToTifinagh
),
70 'shi-latn' => new ReplacementArray( $this->mToLatin
),
71 'shi' => new ReplacementArray()
77 * - if there is no selected variant, leave the link
79 * - do not try to find variants for usernames
81 * @param string &$link
83 * @param bool $ignoreOtherCond
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
) {
95 parent
::findVariantLink( $link, $nt, $ignoreOtherCond );
96 if ( $this->getPreferredVariant() == $this->mMainLanguageCode
) {
102 * It translates text into variant
104 * @param string $text
105 * @param string $toVariant
109 function translate( $text, $toVariant ) {
110 // If $text is empty or only includes spaces, do nothing
111 // Otherwise translate it
112 if ( trim( $text ) ) {
114 // To Tifinagh, first translate uppercase to lowercase Latin
115 if ( $toVariant == 'shi-tfng' ) {
116 $text = $this->mTables
['lowercase']->replace( $text );
118 $text = $this->mTables
[$toVariant]->replace( $text );
129 class LanguageShi
extends Language
{
130 function __construct() {
131 parent
::__construct();
133 $variants = [ 'shi', 'shi-tfng', 'shi-latn' ];
134 $variantfallbacks = [
141 $this->mConverter
= new ShiConverter( $this, 'shi', $variants, $variantfallbacks, $flags );