mediawiki-extensions-Math/Math.alias.php
Martin Urbanec 64d0b3e3ea Translate Special:MathStatus into Czech
Change-Id: Id4cf6084fc5486c84afbf62aae96f6b10345e9b3
2019-04-19 20:59:01 +02:00

48 lines
971 B
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' => [ 'МатСтатус' ],
];
/** Urdu (اردو) */
$specialPageAliases['ur'] = [
'MathStatus' => [ 'کیفیت_ریاضی' ],
];
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = [
'MathStatus' => [ '数学状态' ],
];