Index: captcha.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/captcha/captcha.module,v
retrieving revision 1.42.2.11
diff -u -b -B -u -p -r1.42.2.11 captcha.module
--- captcha.module	20 Jul 2007 21:37:10 -0000	1.42.2.11
+++ captcha.module	22 Jul 2007 13:26:42 -0000
@@ -186,8 +186,8 @@ function captcha_admin_settings($form_id
   $form["captcha_description"] = array(
     '#type' => 'textfield',
     '#title' => t('Captcha description'),
-    '#description' => t('With this description you can explain to the user why the captcha needs to be solved.'),
-    '#default_value' => t(variable_get('captcha_description', CAPTCHA_DESCRIPTION)),
+    '#description' => t('With this description you can explain to the user why the captcha needs to be solved. (This string can be translated with Drupal\'s built-in localization.)'),
+    '#default_value' => variable_get('captcha_description', CAPTCHA_DESCRIPTION),
   );
   // field for captcha persistence
   $form["captcha_persistence"] = array(
@@ -280,7 +280,7 @@ function captcha_form_alter($form_id, &$
     }
 
     // Add a captcha part to the form (depends on value of captcha_description)
-    $captcha_description = variable_get('captcha_description', CAPTCHA_DESCRIPTION);
+    $captcha_description = t(variable_get('captcha_description', CAPTCHA_DESCRIPTION));
     if ($captcha_description) {
       // $captcha_description is not empty: captcha part is a fieldset with description
       $form['captcha'] = array(
