Translate only certain fields inside a structure field

Hi,

Is it possible to translate just certain fields inside a structure field? Here I add translate: false on the style field since I want the button to have the same style on both languages.

But I guess this is not supported? :thinking:

buttons:
  label: Buttons
  max: 2
  type: structure
  fields:
    text:
      label: Text
      type: text
      width: 2/3
    style:
      default: primary
      label: Style
      options:
        primary: Primary
        secondary: Secondary
      required: true
      translate: false
      type: select
      width: 1/3

The translate option does not apply to individual fields within a structure because items in a structure don’t have a counterpart in another language (meaning, you can add, remove, sort items differently in other languages, so there is no way–at least not currently–to even know how these items relate to each other.

1 Like