Index: primary_term.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/primary_term/primary_term.module,v
retrieving revision 1.8.2.16
diff -u -8 -p -u -p -r1.8.2.16 primary_term.module
--- primary_term.module	18 Oct 2010 20:45:30 -0000	1.8.2.16
+++ primary_term.module	10 Nov 2010 08:21:25 -0000
@@ -182,18 +182,18 @@ function primary_term_form_alter(&$form,
 }
 
 /**
  * Validate our changes to the node_type_form.
  */
 function primary_term_node_type_form_validate(&$form, &$form_state) {
   // Verify that if the Primary Term is required, there is a vocabulary
   // associated with it.
-  if ( ($form_state['values']['pt_required']) && !in_array(TRUE, $form_state['values']['pt_vocabs']) ) {
-    form_set_error('pt_required','If you choose to make the Primary Term required, you must select at least one vocabulary for it.');
+  if (($form_state['values']['pt_required']) && !in_array(TRUE, $form_state['values']['pt_vocabs'])) {
+    form_set_error('pt_vocabs', t('If the primary term is required, you must select at least one vocabulary.'));
   }
 }
 
 /**
  * Get primary term for a given node version id (vid)
  *
  * @param integer $vid
  *//**
