mediawiki-extensions-Confir.../ConfirmEdit.alias.php
Translation updater bot d50e41cf1e Localisation updates from http://translatewiki.net.
Change-Id: Ideaa70baff39173dd4253a11ffd2a65c01c6c8a4
2012-05-23 19:16:03 +00:00

99 lines
2.1 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' ),
);
/** Hindi (हिन्दी) */
$specialPageAliases['hi'] = array(
'Captcha' => array( 'कैप्चा', 'कैपचा' ),
);
/** Japanese (日本語) */
$specialPageAliases['ja'] = array(
'Captcha' => array( '画像認証' ),
);
/** Colognian (Ripoarisch) */
$specialPageAliases['ksh'] = array(
'Captcha' => array( 'Kaptscha' ),
);
/** Cornish (Kernowek) */
$specialPageAliases['kw'] = array(
'Captcha' => array( 'Captcha' ),
);
/** 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( '驗證碼' ),
);