Form elemanı params ile bu ayar seçenekleri işe yaramaz! Bu seçenek ("theme" ve "lang") yerine hizmete geçilmesi gerekmektedir!
İşte * Zend_Service_ReCaptcha * yapıcı bulunuyor:
public function __construct($publicKey = null, $privateKey = null,
$params = null, $options = null, $ip = null)
{
…
Kullanımı:
$options = array('theme' => 'white', 'lang' => 'ru');
$recaptcha = new Zend_Service_ReCaptcha($publicKey, $privateKey, null, $options);
$this->view->recaptcha = $recaptcha->getHtml();
Eğer kullanım form elemanları istiyorum Aksi takdirde, önce hizmet nesnesi almalısınız. Böyle bir şey deneyin:
$options = array('theme' => 'white', 'lang' => 'ru');
$form->getElement('captcha')->getCaptcha()->getService()->setOptions($options);