Posted by byenary on November 30, 2012 at 12:14am
Simple contenttype with internationalization
I have 4 languages, and they are translated using internationalization module (using translate tab)
So every instance exists in 4 languages.
No on that contentype I want to show the translation of the title.
Tried this with something like this:
$options['langcode'] = 'en';
$content['field_engels'][0]['#markup'] = t($content['body']['#object']->title,array(),$options);But the titles from my instances are present in the translateinterface but the translations are not present, while I sort of translated while adding the content in the different languages)
Any suggestions on how to acomplish this?
Thx in advance