--- petition.module	2009-03-17 15:09:15.000000000 -0700
+++ petition.module2	2009-03-31 10:23:28.879771700 -0700
@@ -168,7 +168,7 @@ function petition_admin_settings() {
  if (module_exists("ip2cc")) {
  $form['petition_geography']['petition_country_check'] = array(
   '#title' => t('Country check'), 
-  '#description' => t("If enabled, this will allow users to create petitions checking a petition signer's ip adress corresponds to the country he/she entered in his signature. This is a way to eliminate cheaters."), 
+  '#description' => t("If enabled, this will allow users to create petitions checking a petition signer's ip address corresponds to the country he/she entered in his signature. This is a way to eliminate cheaters."), 
   '#type' => 'checkbox', 
   '#return_value' => 1, 
   '#default_value' => variable_get('petition_country_check', 1), 
@@ -361,7 +361,7 @@ function petition_form(&$node, &$param) 
   $default_country_check = is_numeric($node->country_check) ? $node->country_check : 0;
   $form['petition_node_geography'] ['country_check']= array(
    '#title' => t('Country check'), 
-   '#description' => t("If enabled, this petition will check that a signer's ip adress corresponds to the country he/she entered in his signature. This is a way to eliminate cheaters."), 
+   '#description' => t("If enabled, this petition will check that a signer's ip address corresponds to the country he/she entered in his signature. This is a way to eliminate cheaters."), 
    '#type' => 'checkbox', 
    '#return_value' => 1, 
    '#default_value' => $default_country_check, 
@@ -427,7 +427,7 @@ function petition_form(&$node, &$param) 
  $form['petition_node_settings'] ['maintainer_email']= array(
  '#type' => 'textfield', 
  '#title' => t("Petition's maintainer's email"), 
- '#description' => t("Enter the email adress where you wish to receive regular updates as to how many signatures there are on your petition"), 
+ '#description' => t("Enter the email address where you wish to receive regular updates as to how many signatures there are on your petition"), 
  '#default_value' => $maintainer_email, 
  '#weight' => 1			
  );
@@ -638,7 +638,7 @@ function petition_validate($node) {
  form_set_error('petition', t('Please, give an email address if you wish to receive regular update'));
  }
  If (!empty($node->maintainer_email) AND !valid_email_address($node->maintainer_email)) {
- form_set_error('petition', t('Please, use a valid email adress. ') . t(' your current mail adress is: ') . check_plain($node->maintainer_email));
+ form_set_error('petition', t('Please, use a valid email address. ') . t(' your current mail address is: ') . check_plain($node->maintainer_email));
  }
  //check the email body contains the @link
  If (isset($node->email_body) AND (strpos($node->email_body, '@link')===FALSE)) {
@@ -896,7 +896,7 @@ function petition_signature_form($form_s
  If (in_array('address', $node->optional_fields, TRUE)) {
   $form['signature']['address'] = array(
    '#type' => 'textfield', 
-   '#title' => t('Adress'), 
+   '#title' => t('Address'), 
    '#maxlength' => 300, 
    '#required' => $required['address'], 
    '#weight' => 3		
@@ -1013,9 +1013,9 @@ function petition_signature_form_validat
   $co = ip2cc_get_country($remote_addr);
   If (isset($co)) {
    $ip_country = $co->country_code2;
-   //IF ENABLED, CHECK ENTERED COUNTRY AGAINST IP ADRESS
+   //IF ENABLED, CHECK ENTERED COUNTRY AGAINST IP ADDRESS
    If (($ip_country != $country) AND ($node->country_check == 1)) {
-    form_set_error('signature', t('The ip adress from which you signed this petition does not correspond to the country where you are claiming to live in. Please, verify. If the error persists, please contact the site administrator .'));
+    form_set_error('signature', t('The ip address from which you signed this petition does not correspond to the country where you are claiming to live in. Please, verify. If the error persists, please contact the site administrator .'));
     }		
    // IF ENABLED, CHECK IP IS ENTERED FROM AN ALLOWED COUNTRY
    elseif ($node->country_restriction_enabled == 1) {
@@ -1028,17 +1028,17 @@ function petition_signature_form_validat
      }
     }
     if ($check = FALSE) {
-     form_set_error('signature', t('The ip adress from which you signed this petition corresponds to a country where the petition does not apply. We unfortunately cannot accept your signature .'));
+     form_set_error('signature', t('The ip address from which you signed this petition corresponds to a country where the petition does not apply. We unfortunately cannot accept your signature .'));
      }
     }
   }	
    else {
-    form_set_error('signature', t('The ip adress from which you signed this petition does not correspond to any known country. Please contact the site administrator .'));
+    form_set_error('signature', t('The ip address from which you signed this petition does not correspond to any known country. Please contact the site administrator .'));
     }
   }
 	
  If (!valid_email_address($email)) {
-  form_set_error('signature', t('Please, use a valid email adress') . t('. Your current address is:') . $email);
+  form_set_error('signature', t('Please, use a valid email address') . t('. Your current address is:') . $email);
   }
 	
  $same_signature = db_query("SELECT cid FROM {petition_signatures} WHERE nid = %d AND email = '%s'", $nid, $email);
@@ -1048,7 +1048,7 @@ function petition_signature_form_validat
  }
 
  If (count($same)>0) {
-  form_set_error('signature', t('Someone using the same email address has already signed the petition. Please use another mail adress .'));
+  form_set_error('signature', t('Someone using the same email address has already signed the petition. Please use another mail address .'));
   }
 
 }
