2014-06-05 22:12:33 +00:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Aliases for Math
|
|
|
|
|
*
|
2015-01-24 08:25:04 +00:00
|
|
|
|
* In addition to this file, there is Math.alias.noTranslate.php that contains invisible
|
|
|
|
|
* special pages.
|
|
|
|
|
*
|
2014-06-05 22:12:33 +00:00
|
|
|
|
* @file
|
|
|
|
|
* @ingroup Extensions
|
|
|
|
|
*/
|
2015-03-30 19:47:52 +00:00
|
|
|
|
// @codingStandardsIgnoreFile
|
2014-06-05 22:12:33 +00:00
|
|
|
|
|
|
|
|
|
$specialPageAliases = array();
|
|
|
|
|
|
|
|
|
|
/** English (English) */
|
|
|
|
|
$specialPageAliases['en'] = array(
|
2015-03-30 19:47:52 +00:00
|
|
|
|
'MathStatus' => array( 'MathStatus' ),
|
2015-03-31 19:46:14 +00:00
|
|
|
|
);
|
|
|
|
|
|
2015-04-30 20:19:51 +00:00
|
|
|
|
/** Arabic (العربية) */
|
|
|
|
|
$specialPageAliases['ar'] = array(
|
|
|
|
|
'MathStatus' => array( 'حالة_الرياضيات' ),
|
|
|
|
|
);
|
|
|
|
|
|
2015-04-02 19:24:17 +00:00
|
|
|
|
/** Macedonian (македонски) */
|
|
|
|
|
$specialPageAliases['mk'] = array(
|
|
|
|
|
'MathStatus' => array( 'МатСтатус' ),
|
|
|
|
|
);
|
|
|
|
|
|
2015-03-31 19:46:14 +00:00
|
|
|
|
/** Simplified Chinese (中文(简体)) */
|
|
|
|
|
$specialPageAliases['zh-hans'] = array(
|
|
|
|
|
'MathStatus' => array( '数学状态' ),
|
2015-03-30 19:47:52 +00:00
|
|
|
|
);
|