mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-24 08:13:53 +00:00
e7602b7263
* (bug 8595) French AntiSpoof localisation patch by Korrigan * (bug 8596) French BoardVote localisation patch by Korrigan * (bug 8597) French CategoryTree localisation patch by Korrigan * (bug 8609) French Cite localisation patch by Korrigan * (bug 8612) Portugues extensions localisation patch by 555
60 lines
3 KiB
PHP
60 lines
3 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Internationalisation file for the FancyCaptcha plug-in
|
|
*
|
|
* @package MediaWiki
|
|
* @subpackage Extensions
|
|
*/
|
|
|
|
function efFancyCaptchaMessages() {
|
|
return array(
|
|
|
|
/* English */
|
|
'en' => array(
|
|
'fancycaptcha-edit' => 'Your edit includes new external links. To help protect against automated
|
|
spam, please enter the words that appear below in the box ([[Special:Captcha/help|more info]]):',
|
|
'fancycaptcha-createaccount' => 'To help protect against automated account creation, please enter the words
|
|
that appear below in the box ([[Special:Captcha/help|more info]]):',
|
|
),
|
|
|
|
/* German */
|
|
'de' => array(
|
|
'fancycaptcha-edit' => 'Ihre Bearbeitung enthält neue externe Links. .
|
|
Zum Schutz vor automatisiertem Spamming ist es nötig, dass Sie das nachfolgende Wort
|
|
in das darunter erscheinende Feld eintragen. Klicken Sie dann erneut auf „Seite speichern“.
|
|
<br />[[{{ns:special}}:Captcha/help|(Was soll das?)]]',
|
|
'fancycaptcha-createaccount' => 'Zum Schutz vor automatisierter Anlage von Benutzerkonten
|
|
ist es nötig, dass Sie das nachfolgende Wort in das darunter erscheinende Feld eintragen.
|
|
[[{{ns:special}}:Captcha/help|(Fragen oder Probleme?)]]',
|
|
),
|
|
|
|
/* Indonesian */
|
|
'id' => array(
|
|
'fancycaptcha-edit' => 'Suntingan Anda mencantumkan pranala luar baru. Untuk perlindungan terhadap spam otomatis, harap masukkan kata di bawah ini ke dalam kotak yang tersedia ([[Special:Captcha/help|info tambahan]]):',
|
|
'fancycaptcha-createaccount' => 'Untuk perlindungan terhadap pembuatan akun otomatis, tolong masukkan kata di bawah ini ke dalam kotak yang tersedia ([[Special:Captcha/help|info tambahan]]):',
|
|
),
|
|
|
|
/* Finnish (Niklas Laxström) */
|
|
'fi' => array(
|
|
'fancycaptcha-edit' => 'Muokkauksesi sisältää uusia linkkejä muille sivuille. Kirjoita kuvan sisältämät sanat alla olevaan tekstikentään ([[Special:Captcha/help|lisätietoja]]):',
|
|
'fancycaptcha-createaccount' => 'Kirjoita kuvan sisältämät sanat alla olevaan tekstikentään ([[Special:Captcha/help|lisätietoja]]):',
|
|
),
|
|
|
|
/* Hebrew */
|
|
'he' => array(
|
|
'fancycaptcha-edit' => 'עריכתכם כוללת קישורים חיצוניים חדשים. כהגנה מפני ספאם אוטומטי, אנא הקלידו את המילים המופיעות להלן בתיבה ([[{{ns:special}}:Captcha/help|מידע נוסף]]):',
|
|
'fancycaptcha-createaccount' => 'כהגנה מפני יצירת חשבונות אוטומטית, אנא הקלידו את המילים המופיעות להלן בתיבה ([[{{ns:special}}:Captcha/help|מידע נוסף]]):',
|
|
),
|
|
|
|
/* Portuguese */
|
|
'pt' => array(
|
|
'fancycaptcha-edit' => 'Sua edição inclui novas ligações externas; como prevenção contra sistemas automatizados que inserem spam, será necessário que você digite as palavras exibidas no seguinte box ([[Special:Captcha/help|mais informações]]):',
|
|
'fancycaptcha-createaccount' => 'Como prevenção contra sistemas automatizados que inserem spam, será necessário que você digite as palavras exibidas no seguinte box para que possa se cadastrar ([[Special:Captcha/help|mais informações]]):',
|
|
),
|
|
|
|
);
|
|
}
|
|
|
|
?>
|