mediawiki-extensions-OATHAuth/OATHAuth.alias.php
Zoranzoki21 e04223f78a Add OATH alias for Serbian
Change-Id: I4ff3f5ad62c7259d86a883e0291acc95a4a0a618
2018-11-09 15:49:16 +00:00

61 lines
1.3 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' => [ 'قأسأم' ],
];
/** 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_認證' ],
];