mediawiki-extensions-OATHAuth/OATHAuth.alias.php
Amir Sarabadani a95802a14e Add SpecialDisableOATHForUser
Bug: T195207
Change-Id: I695a376e15e8a95a02849a6ec67b882228852ef8
2018-10-26 14:52:44 +00:00

51 lines
1 KiB
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
*/
$specialPageAliases = [];
/** English (English) */
$specialPageAliases['en'] = [
'OATH' => [ 'Two-factor authentication', 'OATH', 'OATHAuth' ],
'DisableOATHForUser' => [ 'DisableOATHForUser' ],
];
/** Arabic (العربية) */
$specialPageAliases['ar'] = [
'OATH' => [ 'أواث', 'أواث_أوث' ],
];
/** Egyptian Arabic (مصرى) */
$specialPageAliases['arz'] = [
'OATH' => [ 'اواث', 'اواث_اوث' ],
];
/** Czech (čeština) */
$specialPageAliases['cs'] = [
'OATH' => [ 'Dvoufaktorové_ověření' ],
];
/** Northern Luri (لۊری شومالی) */
$specialPageAliases['lrc'] = [
'OATH' => [ 'قأسأم' ],
];
/** Urdu (اردو) */
$specialPageAliases['ur'] = [
'OATH' => [ 'حلف_نامہ' ],
];
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = [
'OATH' => [ 'OATH验证' ],
];
/** Traditional Chinese (中文(繁體)‎) */
$specialPageAliases['zh-hant'] = [
'OATH' => [ 'OATH_認證' ],
];