Update i18n/L10n.

This commit is contained in:
Siebrand Mazeland 2010-09-18 10:41:13 +02:00
parent 90ce201684
commit 596d2c212a
1 changed files with 6 additions and 6 deletions

View File

@ -61,7 +61,7 @@ class RecaptchaPlugin extends Plugin
function onEndRegistrationFormData($action) function onEndRegistrationFormData($action)
{ {
$action->elementStart('li'); $action->elementStart('li');
$action->raw('<label for="recaptcha">Captcha</label>'); $action->raw('<label for="recaptcha">'._m('Captcha').'</label>');
// AJAX API will fill this div out. // AJAX API will fill this div out.
// We're calling that instead of the regular one so we stay compatible // We're calling that instead of the regular one so we stay compatible
@ -100,9 +100,9 @@ class RecaptchaPlugin extends Plugin
if (!$resp->is_valid) { if (!$resp->is_valid) {
if($this->display_errors) { if($this->display_errors) {
$action->showForm ("(reCAPTCHA error: " . $resp->error . ")"); $action->showForm(sprintf(_("(reCAPTCHA error: %s)", $resp->error)));
} }
$action->showForm("Captcha does not match!"); $action->showForm(_m("Captcha does not match!"));
return false; return false;
} }
} }