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 .= '</object>';
 
         $output = '<span class="mollom-captcha-content mollom-audio-captcha">' . $output . '</span>';
-        $output .= ' (<a href="#" class="mollom-switch-captcha mollom-image-captcha">' . t('use image CAPTCHA') . '</a>)';
+        $output .= ' (<a href="#" class="mollom-switch-captcha mollom-image-captcha">' . t('verify via image') . '</a>)';
       }
       break;
 
     case 'image':
       $response = mollom('mollom.getImageCaptcha', $data);
       if ($response) {
-        $output .= '<img src="' . check_plain(url($response['url'])) . '" alt="Mollom CAPTCHA" />';
+        $output .= '<img src="' . check_plain(url($response['url'])) . '" alt="' . t('Type the characters you see in this picture.') . '" />';
         $output = '<span class="mollom-captcha-content mollom-image-captcha">' . $output . '</span>';
-        $output .= ' (<a href="#" class="mollom-switch-captcha mollom-audio-captcha">' . t('play audio CAPTCHA') . '</a>)';
+        $output .= ' (<a href="#" class="mollom-switch-captcha mollom-audio-captcha">' . t('verify via audio') . '</a>)';
       }
       break;
   }
