mediawiki-extensions-OATHAuth/OATHAuth.alias.php
Reedy 9cceee17cc Clean up code style and docblocks
* 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
2016-09-30 14:40:06 -06:00

45 lines
903 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 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_認證' ],
];