mediawiki-extensions-Confir.../ConfirmEdit.alias.php
Siebrand Mazeland 550309ea3b Localisation updates for special pages and magic words for extensions from http://translatewiki.net.
Backwards compatibility with MediaWiki 1.15 and earlier dropped for special page aliases.
2011-12-25 22:19:29 +00:00

89 lines
1.9 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' ),
);
/** Galician (Galego) */
$specialPageAliases['gl'] = array(
'Captcha' => array( 'Captcha' ),
);
/** 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 script) (‪Српски (ћирилица)) */
$specialPageAliases['sr-ec'] = array(
'Captcha' => array( отврдни_код' ),
);
/** Cantonese (粵語) */
$specialPageAliases['yue'] = array(
'Captcha' => array( '驗證碼' ),
);
/** Simplified Chinese (‪中文(简体)) */
$specialPageAliases['zh-hans'] = array(
'Captcha' => array( '验证码' ),
);
/** Traditional Chinese (‪中文(繁體)) */
$specialPageAliases['zh-hant'] = array(
'Captcha' => array( '驗證碼' ),
);