'#description'=>t('This option is very helpful to enable/disable challenges on forms. When enabled, users with the "%admincaptcha" permission will see CAPTCHA administration links on all forms (except on administrative pages, which shouldn\'t be accessible to untrusted users in the first place). These links make it possible to enable a challenge of the desired type or disable it.',array('%admincaptcha'=>'administer CAPTCHA settings')),
);
// field set with form_id -> CAPTCHA type configuration
$form['captcha_types']=array(
'#type'=>'fieldset',
'#title'=>t('Challenge type per form'),
'#description'=>t('Select the challenge type you want for each of the listed forms (identified by their so called <em>form_id</em>\'s). You can easily add arbitrary forms with the help of the \'%CAPTCHA_admin_links\' option.',array('%CAPTCHA_admin_links'=>t('Add CAPTCHA adminstration links to forms'))),
CAPTCHA_PERSISTENCE_SHOW_ALWAYS=>t('Always add a challenge.'),
CAPTCHA_PERSISTENCE_SKIP_ONCE_SUCCESSFUL_PER_FORM=>t('Omit challenges for a form once the user has successfully responded to a challenge for that form.'),
CAPTCHA_PERSISTENCE_SKIP_ONCE_SUCCESSFUL=>t('Omit challenges for all forms once the user has successfully responded to a challenge.'),
),
'#description'=>t('Define if challenges should be omitted during the rest of a session once the user successfully responses to a challenge.'),
);
// option for logging wrong responses
$form['captcha_log_wrong_responses']=array(
'#type'=>'checkbox',
'#title'=>t('Log wrong responses'),
'#description'=>t('Report information about wrong responses to the !watchdoglog.',array('!watchdoglog'=>l('log','admin/logs/watchdog'))),