mediawiki-extensions-Confir.../ConfirmEdit.alias.php

84 lines
1.8 KiB
PHP
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 special pages
*
* @file
* @ingroup Extensions
*/
$specialPageAliases = array();
/** English (English) */
$specialPageAliases['en'] = array(
'Captcha' => array( 'Captcha' ),
);
/** Arabic (العربية) */
$specialPageAliases['ar'] = array(
'Captcha' => array( 'كابتشا' ),
);
/** Egyptian Spoken Arabic (مصرى) */
$specialPageAliases['arz'] = array(
'Captcha' => array( 'كابتشا' ),
);
/** Esperanto (Esperanto) */
$specialPageAliases['eo'] = array(
'Captcha' => array( 'Kontraŭspamilo' ),
);
/** Estonian (Eesti) */
$specialPageAliases['et'] = array(
'Captcha' => array( 'Robotilõks' ),
);
/** Persian (فارسی) */
$specialPageAliases['fa'] = array(
'Captcha' => array( 'کپچا' ),
);
/** Finnish (Suomi) */
$specialPageAliases['fi'] = array(
'Captcha' => array( 'Ihmiskäyttäjävarmistus' ),
);
/** Japanese (日本語) */
$specialPageAliases['ja'] = array(
'Captcha' => array( 'キャプチャ' ),
);
/** Colognian (Ripoarisch) */
$specialPageAliases['ksh'] = array(
'Captcha' => array( 'Kaptscha' ),
);
/** Macedonian (Македонски) */
$specialPageAliases['mk'] = array(
'Captcha' => array( 'Капча' ),
);
/** Malayalam (മലയാളം) */
$specialPageAliases['ml'] = array(
'Captcha' => array( 'ക്യാപ്ച' ),
);
/** Serbian Cyrillic ekavian (‪Српски (ћирилица)) */
$specialPageAliases['sr-ec'] = array(
'Captcha' => array( отврдни_код' ),
);
/** Simplified Chinese (‪中文(简体)) */
$specialPageAliases['zh-hans'] = array(
'Captcha' => array( '验证码' ),
);
/** Traditional Chinese (‪中文(繁體)) */
$specialPageAliases['zh-hant'] = array(
'Captcha' => array( '驗證碼' ),
);
/**
* For backwards compatibility with MediaWiki 1.15 and earlier.
*/
$aliases =& $specialPageAliases;