235c235 < $parent->description = check_plain($parent->description); --- > $parent->description = check_plain(tt("taxonomy:vocabulary:$parent->vid:description", $parent->description)); 330c330 < drupal_set_title(check_plain($vi->name) . ' » ' . drupal_strtoupper($output['letter'])); --- > drupal_set_title(check_plain(tt("taxonomy:vocabulary:$id:name", $vi->name)) . ' » ' . drupal_strtoupper($output['letter'])); 587,588c587,588 < $term->name = check_plain(t($term->name)); < $term->description = check_plain($term->description); --- > $term->name = check_plain(tt("taxonomy:term:$term->tid:name", $term->name)); > $term->description = check_plain(check_plain(tt("taxonomy:term:$term->tid:description", $term->description)));