This snippet shows you how to Localize taxonomy term in Drupal 7.
Source code viewer
$term = taxonomy_term_load(arg(1)); if (module_exists('i18n_taxonomy')) { module_load_include('inc', 'i18n', 'i18n_taxonomy.pages'); $term = i18n_taxonomy_localize_terms($term); } echo $term->name;Programming Language: PHP