I am using Kirby 5, and I have a structure of Team members, with some fields. Text fields like Name, Image, etc, should not be translated, and I am adding translate:false to them. Even when doing so, the field still displays as editable in the secondary language, but it imports the value from the base value.
I have another field inside the same structure, which should also not be translatable (and translate:false is also set on it) but it is a toggles field. This field, whenever is saved, loses all information if translate is set to false. The image field information is also lost and not replicated between translations, and the field appears as empty in the secondary language.
I would like to:
translate:false
to work as expected, disabling fields, and not saving unnecessary data in the secondary language.- that the toggles value is not lost when
translate:false
is set.
Does anyone has a hint on this? Thanks in advance.