diff --git a/i18n.module b/i18n.module
index a64b9dd..eaa088f 100644
--- a/i18n.module
+++ b/i18n.module
@@ -171,6 +171,7 @@ function i18n_menu() {
 function i18n_menu_alter(&$items) {
   $items['node/%node/translate']['page callback'] = 'i18n_translation_node_overview';
   $items['node/%node/translate']['file'] = 'i18n.pages.inc';
+  $items['node/%node/translate']['file path'] = drupal_get_path('module', 'i18n');
   $items['node/%node/translate']['module'] = 'i18n';
 }
 
diff --git a/i18ntaxonomy/i18ntaxonomy.module b/i18ntaxonomy/i18ntaxonomy.module
index e97a800..1ed955e 100644
--- a/i18ntaxonomy/i18ntaxonomy.module
+++ b/i18ntaxonomy/i18ntaxonomy.module
@@ -100,18 +100,21 @@ function i18ntaxonomy_menu() {
  * Take over the taxonomy pages
  */
 function i18ntaxonomy_menu_alter(&$items) {
+  $path = drupal_get_path('module', 'i18ntaxonomy');
   // If ctool's page manager is active for the path skip this modules override.
   if (variable_get('page_manager_term_view_disabled', TRUE)) {
     // Taxonomy term page. Localize terms.
     $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'] = $path;
   }
 
   // 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'] = $path;
 }
 
 /**
