diff --git a/includes/i18nviews_handler_field_term_node_tid.inc b/includes/i18nviews_handler_field_term_node_tid.inc
index a61b70e..01046ae 100644
--- a/includes/i18nviews_handler_field_term_node_tid.inc
+++ b/includes/i18nviews_handler_field_term_node_tid.inc
@@ -40,7 +40,8 @@ class i18nviews_handler_field_term_node_tid extends views_handler_field_term_nod
 
         if (!empty($this->options['link_to_taxonomy'])) {
           $this->items[$term->node_nid][$term->tid]['make_link'] = TRUE;
-          $this->items[$term->node_nid][$term->tid]['path'] = 'taxonomy/term/' . $term->tid;
+          $path = entity_uri('taxonomy_term', $term);
+          $this->items[$term->node_nid][$term->tid]['path'] = $path['path'];
         }
       }
     }
