Hello,
I have a multilingual panel and I save my translation values in a separate file.
It works as expected and I can use the values in my blueprint.
Working example:
label: my.translation.value
Mutlilingual values in options are working in general, see example:
label: my.translation.value
type: select
options:
option1:
en: 'bli'
de: 'bla'
fr: 'blubb'
option2:
en: 'bli'
de: 'bla'
fr: 'blubb'
However, it does not work or it least I don’t know how for type:select
options, when values are stored in a separate language file.
label: my.translation.value
type: select
options:
option1: my.translation.option1
option2: my.translation.option2
Any hints, how to solve this?
Thanks for answers in advance