add language to set field drupal 8 code example
Example: add language to set field drupal 8
$translation->set('field_my_field', 'my en value');
$translation = $term->getTranslation('ja');
$translation->set('field_my_field', 'my ja value');
$term->save();