Index: mollom.module =================================================================== RCS file: /cvs/drupal-contrib/contributions/modules/mollom/mollom.module,v retrieving revision 1.2.2.147 diff -u -p -r1.2.2.147 mollom.module --- mollom.module 10 Jul 2010 01:03:52 -0000 1.2.2.147 +++ mollom.module 15 Jul 2010 16:17:59 -0000 @@ -1334,7 +1334,7 @@ function mollom_validate_captcha($form, // Bail out if no value was provided. if (empty($form_state['values']['mollom']['captcha'])) { - form_set_error('mollom][captcha', t('The CAPTCHA field is required.')); + form_set_error('mollom][captcha', t('The word verification is required.')); return; } @@ -1751,16 +1751,16 @@ function mollom_get_captcha($type, array $output .= ''; $output = '' . $output . ''; - $output .= ' (' . t('use image CAPTCHA') . ')'; + $output .= ' (' . t('verify via image') . ')'; } break; case 'image': $response = mollom('mollom.getImageCaptcha', $data); if ($response) { - $output .= 'Mollom CAPTCHA'; + $output .= '' . t('Type the characters you see in this picture.') . ''; $output = '' . $output . ''; - $output .= ' (' . t('play audio CAPTCHA') . ')'; + $output .= ' (' . t('verify via audio') . ')'; } break; }