Index: taxonomy_manager.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/taxonomy_manager/taxonomy_manager.module,v
retrieving revision 1.5.2.17.2.11
diff -u -F^function -r1.5.2.17.2.11 taxonomy_manager.module
--- taxonomy_manager.module	13 Jan 2009 20:29:09 -0000	1.5.2.17.2.11
+++ taxonomy_manager.module	9 Mar 2009 23:11:13 -0000
@@ -391,6 +391,10 @@ function _taxonomy_manager_tree_get_item
   else {
     $tree = taxonomy_get_tree($vid, $parent);
   }
+
+  if (module_exists('i18ntaxonomy')) {
+    $tree = i18ntaxonomy_localize_terms($tree);
+  }
   
   return $tree;
 }
@@ -415,6 +419,10 @@ function taxonomy_manager_tree_get_terms
     }
   }
   
+  if (module_exists('i18ntaxonomy')) {
+    $tree = i18ntaxonomy_localize_terms($tree);
+  }
+  
   return $terms;
 }
 
