--- old\taxonomy_vtn-6.x-1.2\taxonomy_vtn\taxonomy_vtn.pages.inc	Thu Mar 05 08:54:48 2009
+++ new\taxonomy_vtn\taxonomy_vtn.pages.inc	Mon Mar 16 14:53:52 2009
@@ -218,10 +218,12 @@ function taxonomy_vtn_show_terms($arg = 
 
   $title = '';
   if (variable_get('taxonomy_vtn_user_friendly_titles', 1) == 1) {
-    $title = t('Terms in') .' ';
+    $title = t('Terms in @vocabulary', array('@vocabulary' => $voc_obj->name));
   }
-  drupal_set_title($title . t('@vocabulary', array('@vocabulary' => $voc_obj->name)));
-
+  else $title = t('@vocabulary', array('@vocabulary' => $voc_obj->name));  
+  
+  drupal_set_title($title);
+  
   // Check if the page hasn't already been cached. If not, create and cache it.
   $cc = cache_get('taxonomy_vtn_show_terms_'. $own_vid);
   $cache_data = $cc->data;
@@ -589,10 +591,12 @@ function taxonomy_vtn_show_nodes($arg = 
   }
 
   $title = '';
-  if (variable_get('taxonomy_vtn_user_friendly_titles', 1) == 1) {
-    $title = t('Nodes of term') .' ';
+   if (variable_get('taxonomy_vtn_user_friendly_titles', 1) == 1) {
+    $title = t('Nodes of term @term_name', array('@term_name' => $term_obj->name));
   }
-  drupal_set_title($title . t('@term_name', array('@term_name' => $term_obj->name)));
+  else $title = t('@term_name', array('@term_name' => $term_obj->name));  
+
+  drupal_set_title($title);
 
   // the variables are saved on a per vocabulary basis, get the identifier
   $own_vid = $term_obj->vid;
