diff -rup domain_taxonomy.admin.inc ./domain_taxonomy.admin.inc
--- domain_taxonomy.admin.inc	2009-06-23 18:17:41.000000000 +0200
+++ ./domain_taxonomy.admin.inc	2010-02-03 17:28:38.000000000 +0100
@@ -18,9 +18,9 @@ function domain_taxonomy_configure_form(
     '#default_value' => variable_get('domain_taxonomy_options', 0),
     '#options' => array(
       0 => t('Pass the default form values as hidden fields'),
-      1 => t('Take user to the default domain'),
-      2 => t('Take user to their assigned domain'),
-      3 => t('Show user their publishing options')),
+      1 => t('Take users to the default domain'),
+      2 => t('Take users to their assigned domain'),
+      3 => t('Show users their publishing options')),
   );
 
   $form['domain_taxonomy_behavior']['domain_taxonomy_debug'] = array(
@@ -43,34 +43,29 @@ function domain_taxonomy_configure_form(
     '#title' => t('Taxonomy search engine optimization'),
     '#default_value' => variable_get('domain_taxonomy_seo', 0),
     '#options' => array(0 => t('Do not rewrite URLs'), 1 => t('Rewrite all URLs to point to a single source')),
-    '#description' => t('If rewrite is turned on, all term links will point to a single instance of the term.  This
-      option reduces the chance that search engines will recognize duplicate content.')
+    '#description' => t('If rewrite is turned on, all term links will point to a single instance of the term. This option reduces the chance that search engines will recognize duplicate content.')
   );
 
   $form['domain_taxonomy_disable_vocs'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Vocabulares without domain access rules'),
+    '#title' => t('Vocabularies without domain access rules'),
     '#collapsible' => TRUE,
     '#collapsed' => TRUE
   );
 
   $form['domain_taxonomy_share_vocs'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Share this vocabulares to all affiliates by default'),
+    '#title' => t('Share these vocabularies to all affiliates by default'),
     '#collapsible' => TRUE,
     '#collapsed' => TRUE
   );
 
   $form['domain_taxonomy_node_inherit'] = array(
     '#type' => 'fieldset',
-    '#title' => t('Parent vocabulares for node types'),
+    '#title' => t('Parent vocabularies for node types'),
     '#collapsible' => TRUE,
     '#collapsed' => TRUE,
-    '#description' => t('Inherit access rules for nodes from terms of selected vocabulares.
-    If vocabulary is not selected than node does not inherite domain rules from parent terms.
-    <br>Example: choose vocabulary "Forum" for node type "Forum Topic" if you want nodes in forums to
-	inherit parents forums domain access rules.
-    ')
+    '#description' => t('Inherit access rules for nodes from terms of selected vocabularies. If vocabulary is not selected, the node does not inherit domain rules from parent terms. <br />Example: choose vocabulary "Forum" for node type "Forum Topic" if you want nodes in forums to inherit parents forums domain access rules.')
   );
 
   $vocs = taxonomy_get_vocabularies();
@@ -111,9 +106,7 @@ function domain_taxonomy_configure_form(
     '#rows' => 5,
     '#cols' => 40,
     '#default_value' => variable_get('domain_taxonomy_paths', "taxonomy/term/%t\r\ntaxonomy/edit/term/%t\r\nforum/%t"),
-    '#description' => t('When using SEO or other path rewrites, the following link paths should be turned into absolute URLs.  Enter
-      the Drupal path of the link, using the <em>%t</em> placeholder to represent the term id.
-      Enter one path per line.  See the README for more details.')
+    '#description' => t('When using SEO or other path rewrites, the following link paths should be turned into absolute URLs. Enter the Drupal path of the link, using the <em>%t</em> placeholder to represent the term id. Enter one path per line. See the README for more details.')
   );
 
   return system_settings_form($form);
diff -rup domain_taxonomy.module ./domain_taxonomy.module
--- domain_taxonomy.module	2009-06-23 18:17:41.000000000 +0200
+++ ./domain_taxonomy.module	2010-02-03 17:37:12.000000000 +0100
@@ -77,9 +77,9 @@ function domain_taxonomy_form_alter(&$fo
 	    if (user_access('set domain access')) {
 		    $form['domain']['domain_load_fromparent'] = array(
 			       '#type' => 'checkbox',
-			       '#prefix' => '<b>'.t('Actions on form submit').':</b>',
+			       '#prefix' => '<strong>'.t('Actions on form submit').':</strong>',
 			       '#title' => t('Load domain access options for node from parent term'),
-			       '#description' => t('This option override domain access options below (except <i>Source domain</i>). Parent vocabulary').': '.drupal_strtoupper($vocs[$parent_vid]->name),
+			       '#description' => t('This option overrides domain access options below (except <em>Source domain</em>). Parent vocabulary').': '.drupal_strtoupper($vocs[$parent_vid]->name),
 			       '#default_value' => $form['#node']->nid ? false:true,
 			       '#weight' => -3,
 			);
@@ -149,31 +149,31 @@ function domain_taxonomy_form_alter(&$fo
 
       $form['domain']['domain_update_subterm'] = array(
         '#type' => 'checkbox',
-        '#prefix' => '<b>'.t('Actions on form submit').':</b>',
+        '#prefix' => '<strong>'.t('Actions on form submit').':</strong>',
         '#title' => t('Override all child terms'),
-        '#description' => t('This option not for save, it`s only process rules update action for subterms when you submit this form'),
+        '#description' => t('This option is not for saving: it only processes subterms when this form is submitted.'),
         '#default_value' => false,
       );
       $form['domain']['domain_update_subnodes'] = array(
         '#type' => 'checkbox',
         '#title' => t('Override all child nodes'),
-        '#description' => t('This option not for save, it`s only process rules update action for subnodes when you submit this form'),
+        '#description' => t('This option is not for saving: it only processes child nodes when this form is submitted.'),
         '#default_value' => false,
       );
       $form['domain']['domain_load_fromparent'] = array(
         '#type' => 'checkbox',
-        '#title' => t('Load domain access options for term from parent term'),
-        '#description' => t('This option override domain access options below. This option not for save, it`s only process rules inherit action when you submit this form'),
+        '#title' => t('Load domain access options for terms from parent term'),
+        '#description' => t('This option overrides the domain access options below. It is not for saving: the inherit action is applied only when this form is submitted.'),
         '#default_value' => $term->tid ? false:true,
         '#attributes' => array('onclick' => 'this.checked ? $(\'#'.$dt_edit_id.'\').hide():$(\'#'.$dt_edit_id.'\').show();'),
       );
 
       $form['domain']['domain_site'] = array(
         '#type' => 'checkbox',
-        '#prefix' => '<div id="'.$dt_edit_id.'" '.(!$term->tid ? 'style="display:none;"':'').'><b>'.t('Publishing options').':</b>',
+        '#prefix' => '<div id="'.$dt_edit_id.'" '.(!$term->tid ? 'style="display:none;"':'').'><strong>'.t('Publishing options').':</strong>',
         '#title' => t('Send to all affiliates'),
         '#required' => FALSE,
-        '#description' => t('Select if this term can be shown to all affiliates.  This setting will override the options below.'),
+        '#description' => t('Select if this term can be shown to all affiliates. This setting will override the options below.'),
         '#default_value' => (isset($term->tid)) ? $term->domain_site : variable_get('domain_share_voc_'.$vocabulary->vid, $behavior),
       );
       $form['domain']['domains'] = array(
@@ -301,7 +301,7 @@ function domain_taxonomy_form_alter(&$fo
             }
             if (!empty($list)) {
               $form['domain']['domains_notes'] = array(
-               '#value' => '<label><b>'.t('Publishing status').':</b></label>'. theme('item_list', $list) .'<div class="description">'. t('This term has also been published to these affiliates.') .'</div>',
+               '#value' => '<label><strong>'.t('Publishing status').':</strong></label>'. theme('item_list', $list) .'<div class="description">'. t('This term has also been published to these affiliates.') .'</div>',
               );
             }
             break;
@@ -453,7 +453,7 @@ function domain_taxonomy_form_term_submi
   }
 
   if (_domain_taxonomy_is_debug()) {
-	  drupal_set_message(t('Saving term with options').': <br>'._domain_taxonomy_get_access_info(($term->domains?$term->domains:$term->domains_raw),$term->domain_site,$term->domain_source),'status');
+	  drupal_set_message(t('Saving term with options').': <br />'._domain_taxonomy_get_access_info(($term->domains?$term->domains:$term->domains_raw),$term->domain_site,$term->domain_source),'status');
   }
 
   // save term access
@@ -462,7 +462,7 @@ function domain_taxonomy_form_term_submi
   // update subterms access
   if ($term->domain_update_subterm) {
   	if (_domain_taxonomy_is_debug()) {
-		drupal_set_message(t('Choosed domain rules inheritance from current term to child terms'), 'status');
+		drupal_set_message(t('Domain rules inheritance applied from current term to child terms'), 'status');
   	}
 	$terms = taxonomy_get_tree($term->vid, $term->tid);
   	if (count($terms)>0) {
@@ -481,7 +481,7 @@ function domain_taxonomy_form_term_submi
   // update subnodes access
   if ($term->domain_update_subnodes) {
 	if (_domain_taxonomy_is_debug()) {
-  		drupal_set_message(t('Choosed domain rules inheritance from current term to child nodes'), 'status');
+  		drupal_set_message(t('Domain rules inheritance applied from current term to child nodes'), 'status');
 	}
   	$result = domain_taxonomy_select_nodes(array($term->tid),'or','all');
   	$items = array();
@@ -504,11 +504,11 @@ function _domain_taxonomy_get_access_inf
     foreach ($domains as $did=>$v) {
    	   if ($did==-1) $did=0 ;
        if (!$v || !$all_domains[$did]) continue;
-       $domains_text.='<BR> - '.$all_domains[$did]['sitename'];
+       $domains_text.='<br /> - '.$all_domains[$did]['sitename'];
     }
-    $out.=t('Term published to all affiliates').': '.($domain_site?t('yes'):t('no')).'<BR>';
-    $out.=t('Term source domain').': '.$all_domains[$domain_source]['sitename'].'<BR>';
-    $out.=t('Term published on this domains').': '.$domains_text.'<BR>';
+    $out.=t('Term published to all affiliates').': '.($domain_site?t('yes'):t('no')).'<br />';
+    $out.=t('Term source domain').': '.$all_domains[$domain_source]['sitename'].'<br />';
+    $out.=t('Term published on these domains').': '.$domains_text.'<br />';
     return $out;
 }
