--- directdebit.module	2010-03-10 16:47:06.000000000 +0100
+++ directdebit.langpatch.module	2010-12-14 10:56:50.000000000 +0100
@@ -161,17 +161,17 @@ function directdebit_form($form_values, 
 /**
  * Implementation of hook_validate().
  */
 function directdebit_form_validate( $form, &$form_state) {
   $fields_to_use = variable_get('directdebit_field_list', array( 'directdebit_bank_withdraw_permission'));
 
   if ( $fields_to_use['directdebit_bank_withdraw_permission'] &&
     ( !isset($form_state['values']['directdebit_bank_withdraw_permission']) || !$form_state['values']['directdebit_bank_withdraw_permission'][1])) {
-    form_set_error('directdebit_bank_withdraw_permission', t('You must give us permission to withdraw money from your bank accuunt or choose another payment method'));
+    form_set_error('directdebit_bank_withdraw_permission', t('You must give us permission to withdraw money from your bank account or choose another payment method'));
   }
   
   if (!is_array($form)) {
     // This is only necessary for directdebit_process_post processing aka direct calling
     $fields = directdebit_api('#title');
     foreach ($fields_to_use as $key => $value) {
       if ( $value) {
         if ($fields[$key]['#required'] && empty($form_state['values'][$key])) {
@@ -214,9 +214,9 @@ function directdebit_process_post(&$paym
       }
       else {
         $payment_details[$key] = check_plain( $post);
       }
     }
   }
 
   return $payment_details;
-}
\ No newline at end of file
+}
