Index: i18ntaxonomy/i18ntaxonomy.module
===================================================================
--- i18ntaxonomy/i18ntaxonomy.module	(révision 5749)
+++ i18ntaxonomy/i18ntaxonomy.module	(copie de travail)
@@ -107,12 +107,14 @@ function i18ntaxonomy_menu_alter(&$items) {
     $items['taxonomy/term/%']['module'] = 'i18ntaxonomy';
     $items['taxonomy/term/%']['page callback'] = 'i18ntaxonomy_term_page';
     $items['taxonomy/term/%']['file'] = 'i18ntaxonomy.pages.inc';
+    $items['taxonomy/term/%']['file path'] = drupal_get_path('module', 'i18ntaxonomy');
   }
 
   // Localize autocomplete
   $items['taxonomy/autocomplete']['module'] = 'i18ntaxonomy';
   $items['taxonomy/autocomplete']['page callback'] = 'i18ntaxonomy_autocomplete';
   $items['taxonomy/autocomplete']['file'] = 'i18ntaxonomy.pages.inc';
+  $items['taxonomy/autocomplete']['file path'] = drupal_get_path('module', 'i18ntaxonomy');
 }
 
 /**
@@ -181,7 +183,8 @@ function i18ntaxonomy_theme() {
   return array(
     'i18ntaxonomy_term_page' => array(
       'arguments' => array('tids' => array(), 'result' => NULL),
-      'file' => 'taxonomy.pages.inc',
+      'file' => 'i18ntaxonomy.pages.inc',
+      'file path' => drupal_get_path('module', 'i18ntaxonomy'),
     ),
   );
 }
