I have upgraded a Silverstripe site from 3.x to 4.x.
3.x was using Multilingual for translation, now in 4.x I have replaced Multilingual with Silverstripe Fluent module but I am wondering how I can import data ( translated fields ) into the new system with Fluent in place.
To be more precise I want to update the SiteTree_Localised table with the translated data programmatically something like
$record = SiteTree_Localised::get()->filter(array(
'RecordID' => 16,
'Locale' => 'de_DE'
))->first();
$record->Title = 'Some title';
$record->write();
But this does not work as SiteTree_Localised object does not exist ? How do I update the above record ?