I have my project built with SilverStripe
3.1.13 (both CMS and Framework), and I'm using silverstripe-translatable
and dataobject-translatable
in order to organize my translations on the website.
Let's say I have Post.php
(which is DataObject
for working with Posts on my website), and each post got it own category
(many-many
relationship goes here, but it doesn't really matter)).
The problem is: I hit Save
button when creating new Post
dataobject and I want to these category
'ies would be duplicated automatically to another locales.
How could I implement that in my app? I want to save these values (they're boolean) into another translations of these dataobjects.