mediawiki-extensions-Confir.../ConfirmEdit.alias.php
Translation updater bot f4761e9797 Localisation updates from http://translatewiki.net.
Change-Id: If99957a63ddffaf40b4f17787ba68404cb4ac41a
2012-08-06 19:26:19 +00:00

109 lines
2.3 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( '画像認証' ),
);
/** Korean (한국어) */
$specialPageAliases['ko'] = 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( 'Captcha' ),
);
/** Malayalam (മലയാളം) */
$specialPageAliases['ml'] = array(
'Captcha' => array( 'ക്യാപ്ച' ),
);
/** Serbian (Cyrillic script) (‪српски (ћирилица)) */
$specialPageAliases['sr-ec'] = array(
'Captcha' => array( отврдни_код' ),
);
/** Turkish (Türkçe) */
$specialPageAliases['tr'] = array(
'Captcha' => array( 'GüvenlikKodu' ),
);
/** Cantonese (粵語) */
$specialPageAliases['yue'] = array(
'Captcha' => array( '驗證碼' ),
);
/** Simplified Chinese (‪中文(简体)‬) */
$specialPageAliases['zh-hans'] = array(
'Captcha' => array( '验证码' ),
);
/** Traditional Chinese (‪中文(繁體)‬) */
$specialPageAliases['zh-hant'] = array(
'Captcha' => array( '驗證碼' ),
);