mediawiki-extensions-Math/Math.alias.php
petarpetkovic 9925a1922d Add Serbian aliases
Bug: T212586
Change-Id: I3b139337d45e22da10b85dd5e6ce0a6dc74207cf
2019-05-13 03:36:53 +02:00

58 lines
1.3 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Aliases for Math
*
* In addition to this file, there is Math.alias.noTranslate.php that contains invisible
* special pages.
*
* @file
* @ingroup Extensions
*/
$specialPageAliases = [];
/** English (English) */
$specialPageAliases['en'] = [
'MathStatus' => [ 'MathStatus' ],
];
/** Arabic (العربية) */
$specialPageAliases['ar'] = [
'MathStatus' => [ الة_الرياضيات' ],
];
/** Czech (čeština) */
$specialPageAliases['cs'] = [
'MathStatus' => [ 'Stav_matematiky' ],
];
/** Persian (فارسی) */
$specialPageAliases['fa'] = [
'MathStatus' => [ 'وضعیت_ریاضی' ],
];
/** Macedonian (македонски) */
$specialPageAliases['mk'] = [
'MathStatus' => [ 'МатСтатус' ],
];
/** Serbian Cyrillic (српски (ћирилица)) */
$specialPageAliases['sr-ec'] = [
'MathStatus' => [ 'СтањеПриказаМатематичкихФормула' ],
];
/** Serbian Latin (srpski (latinica)) */
$specialPageAliases['sr-el'] = [
'MathStatus' => [ 'StanjePrikazaMatematičkihFormula' ],
];
/** Urdu (اردو) */
$specialPageAliases['ur'] = [
'MathStatus' => [ 'کیفیت_ریاضی' ],
];
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = [
'MathStatus' => [ '数学状态' ],
];