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

@ -2,7 +2,7 @@
/** /**
* StatusNet, the distributed open-source microblogging tool * StatusNet, the distributed open-source microblogging tool
* *
* Plugin to show reCaptcha when a user registers * Plugin to show reCaptcha when a user registers
* *
* PHP version 5 * PHP version 5
* *
@ -61,14 +61,14 @@ 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
// with application/xml+xhtml output as for mobile. // with application/xml+xhtml output as for mobile.
$action->element('div', array('id' => 'recaptcha')); $action->element('div', array('id' => 'recaptcha'));
$action->elementEnd('li'); $action->elementEnd('li');
$action->recaptchaPluginNeedsOutput = true; $action->recaptchaPluginNeedsOutput = true;
return true; return true;
} }
@ -83,7 +83,7 @@ class RecaptchaPlugin extends Plugin
$url = "http://api.recaptcha.net/js/recaptcha_ajax.js"; $url = "http://api.recaptcha.net/js/recaptcha_ajax.js";
} }
$action->script($url); $action->script($url);
// And when we're ready, fill out the captcha! // And when we're ready, fill out the captcha!
$key = json_encode($this->public_key); $key = json_encode($this->public_key);
$action->inlinescript("\$(function(){Recaptcha.create($key, 'recaptcha');});"); $action->inlinescript("\$(function(){Recaptcha.create($key, 'recaptcha');});");
@ -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;
} }
} }