mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-13 18:16:56 +00:00
9cceee17cc
* array() -> [] * spacing fixes * dirname( __FILE__ ) -> __DIR__ * Add phpcs style checks using latest mediawiki-codesniffer to keep things clean. Co-Authored-By: Bryan Davis <bd808@wikimedia.org> Change-Id: I95735f928d3e5d6ac9d2a10d92b40ed01cf2737c
45 lines
903 B
PHP
45 lines
903 B
PHP
<?php
|
||
/**
|
||
* Aliases for OATHAuth's special pages
|
||
*
|
||
* @file
|
||
* @ingroup Extensions
|
||
*/
|
||
// @codingStandardsIgnoreFile
|
||
|
||
$specialPageAliases = [];
|
||
|
||
/** English (English) */
|
||
$specialPageAliases['en'] = [
|
||
'OATH' => [ 'OATH', 'OATHAuth' ],
|
||
];
|
||
|
||
/** Arabic (العربية) */
|
||
$specialPageAliases['ar'] = [
|
||
'OATH' => [ 'أواث', 'أواث_أوث' ],
|
||
];
|
||
|
||
/** Egyptian Arabic (مصرى) */
|
||
$specialPageAliases['arz'] = [
|
||
'OATH' => [ 'اواث', 'اواث_اوث' ],
|
||
];
|
||
|
||
/** Northern Luri (لۊری شومالی) */
|
||
$specialPageAliases['lrc'] = [
|
||
'OATH' => [ 'قأسأم' ],
|
||
];
|
||
|
||
/** Urdu (اردو) */
|
||
$specialPageAliases['ur'] = [
|
||
'OATH' => [ 'حلف_نامہ' ],
|
||
];
|
||
|
||
/** Simplified Chinese (中文(简体)) */
|
||
$specialPageAliases['zh-hans'] = [
|
||
'OATH' => [ 'OATH验证' ],
|
||
];
|
||
|
||
/** Traditional Chinese (中文(繁體)) */
|
||
$specialPageAliases['zh-hant'] = [
|
||
'OATH' => [ 'OATH_認證' ],
|
||
]; |