Having arq as fallback is problematic because shi is LTR and arq is RTL. In any case, the translation to French is more complete, so this wouldn't have a significant effect. It does fix a current problem that wikis with shy as the content language are shown right to left, which is definitely wrong. This was requested by User:Reda Kerbouche, and it makes sense to me. Bug: T281085 Change-Id: I09769c5ad8512e3545f5de8129e58ab4daec779a
31 lines
854 B
PHP
31 lines
854 B
PHP
<?php
|
||
/** Shawiya (Latin script) (Tachawit)
|
||
*
|
||
* To improve a translation please visit https://translatewiki.net
|
||
*
|
||
* @ingroup Language
|
||
* @file
|
||
*
|
||
* @author Reda Kerbouche
|
||
*/
|
||
|
||
$fallback = 'fr';
|
||
|
||
$namespaceNames = [
|
||
NS_MEDIA => 'Alɣagdud',
|
||
NS_SPECIAL => 'Uzzig',
|
||
NS_TALK => 'Tameslayt',
|
||
NS_USER => 'Useqdac',
|
||
NS_USER_TALK => 'Useqdac_tameslayt',
|
||
NS_PROJECT_TALK => '$1_tameslayt',
|
||
NS_FILE => 'Afaylu',
|
||
NS_FILE_TALK => 'Afaylu_tameslayt',
|
||
NS_MEDIAWIKI => 'MediaWiki',
|
||
NS_MEDIAWIKI_TALK => 'MediaWiki_tameslayt',
|
||
NS_TEMPLATE => 'Tamudemt',
|
||
NS_TEMPLATE_TALK => 'Tamudemt_tameslayt',
|
||
NS_HELP => 'Tallalt',
|
||
NS_HELP_TALK => 'Tallalt_tameslayt',
|
||
NS_CATEGORY => 'Taggayt',
|
||
NS_CATEGORY_TALK => 'Taggayt_tameslayt',
|
||
];
|