Update i18n/L10n.

This commit is contained in:
Siebrand Mazeland 2010-09-18 10:41:13 +02:00
parent 90ce201684
commit 596d2c212a

View File

@ -61,7 +61,7 @@ class RecaptchaPlugin extends Plugin
function onEndRegistrationFormData($action)
{
$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.
// 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($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;
}
}