Is it possible to translate the File Title for all files in the assets folder?
I installed the translatable plugin but there is no documentation for file translation in the i18n SilverStripe chapter or plugin documentation.
In my ProductPage I have a custom field for File upload:
$fields->addFieldToTab(
'Root.Attachments',
$uploadField = UploadField::create('Files', 'Dateien')
);
The files can be on the English and German website. I need to translate the File Title for each language.
I tried the following but when I change the File Title it changes for both German and English:
// Apply Translatable modifications
$this->applyTranslatableFieldsUpdate($fields, 'updateCMSFields');
