mediawiki-extensions-OATHAuth/OATHAuth.alias.php
Dejan Savuljesku ea984e5c2b Refactor the extension to support multiple auth modules
Please note, this patch requires a schema change before merging

Change-Id: I71286534d21d95083436d64d79811943c1a1d032
ERM: #14484
Bug: T218210
2019-06-18 10:45:21 +00:00

62 lines
1.4 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' ],
'OATHManage' => [ 'Manage_Two-factor_authentication', 'OATH_Manage', 'OATHManage' ]
];
/** Arabic (العربية) */
$specialPageAliases['ar'] = [
'OATH' => [ 'أواث', 'أواث_أوث' ],
];
/** Egyptian Arabic (مصرى) */
$specialPageAliases['arz'] = [
'OATH' => [ 'اواث', 'اواث_اوث' ],
];
/** Czech (čeština) */
$specialPageAliases['cs'] = [
'OATH' => [ 'Dvoufaktorové_ověření' ],
];
/** Northern Luri (لۊری شومالی) */
$specialPageAliases['lrc'] = [
'OATH' => [ 'قأسأم' ],
];
/** Serbian Cyrillic (српски (ћирилица)) */
$specialPageAliases['sr-ec'] = [
'OATH' => [ 'Двофакторска_потврда_идентитета' ],
];
/** Serbian Latin (srpski (latinica)) */
$specialPageAliases['sr-el'] = [
'OATH' => [ 'Dvofaktorska_potvrda_identiteta' ],
];
/** Urdu (اردو) */
$specialPageAliases['ur'] = [
'OATH' => [ 'حلف_نامہ' ],
];
/** Simplified Chinese (中文(简体)‎) */
$specialPageAliases['zh-hans'] = [
'OATH' => [ 'OATH验证' ],
];
/** Traditional Chinese (中文(繁體)‎) */
$specialPageAliases['zh-hant'] = [
'OATH' => [ 'OATH_認證' ],
];