Get specific content from a different language?

Hi,
how can I display on a page, a specific content from the same page, but a different language?
foreach($page->termin()->toStructure()->flip() as $item ) :

thank you for your help
marcus

By going via the content object and passing the desired language code as argument:

$page->content('en')->get('termin')->toStructure();

Great, thx.