From: Siebrand Mazeland Date: Sun, 5 Jun 2011 17:40:25 +0000 (+0200) Subject: Update translator documentation. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=59006ffee1e95b18a9a1c269f6706640825e6221;p=quix0rs-gnu-social.git Update translator documentation. --- diff --git a/plugins/Recaptcha/RecaptchaPlugin.php b/plugins/Recaptcha/RecaptchaPlugin.php index fbc0e0cac1..d0932efe22 100644 --- a/plugins/Recaptcha/RecaptchaPlugin.php +++ b/plugins/Recaptcha/RecaptchaPlugin.php @@ -93,9 +93,12 @@ class RecaptchaPlugin extends Plugin if (!$resp->is_valid) { if($this->display_errors) { - $action->showForm(sprintf(_m("(reCAPTCHA error: %s)", $resp->error))); + // TRANS: Error message displayed if there is in error communicating with the + // TRANS: reCAPTCHA server. %s is the error. + $action->showForm(sprintf(_m('(reCAPTCHA error: %s)', $resp->error))); } - $action->showForm(_m("Captcha does not match!")); + // TRANS: Error message displayed if a provided captcha response does not match. + $action->showForm(_m('Captcha does not match!')); return false; } } @@ -107,6 +110,7 @@ class RecaptchaPlugin extends Plugin 'author' => 'Eric Helgeson', 'homepage' => 'http://status.net/wiki/Plugin:Recaptcha', 'rawdescription' => + // TRANS: Plugin description. _m('Uses Recaptcha service to add a '. 'captcha to the registration page.')); return true;