forked from GNUsocial/gnu-social
Update i18n/L10n.
This commit is contained in:
parent
90ce201684
commit
596d2c212a
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user