mediawiki-extensions-Math/Math.alias.php
mjbmr 640bf070ae Add Persian special page alias
Change-Id: I4b97dd7b27f31c76a392e334ef0b52825828b4e9
2015-08-22 17:14:38 +00:00

38 lines
853 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
*/
// @codingStandardsIgnoreFile
$specialPageAliases = array();
/** English (English) */
$specialPageAliases['en'] = array(
'MathStatus' => array( 'MathStatus' ),
);
/** Arabic (العربية) */
$specialPageAliases['ar'] = array(
'MathStatus' => array( الة_الرياضيات' ),
);
/** Persian (فارسی) */
$specialPageAliases['fa'] = array(
'MathStatus' => array( 'وضعیت_ریاضی' ),
);
/** Macedonian (македонски) */
$specialPageAliases['mk'] = array(
'MathStatus' => array( 'МатСтатус' ),
);
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = array(
'MathStatus' => array( '数学状态' ),
);