Page 1 of 1

Tab translation

Posted: Thu Apr 23, 2026 1:45 pm
by Bohun
How to properly add a translation of the VGROUP tab?

Code: Select all

<vgroup title="Basic" i18n="#cat_basic">
and

Code: Select all

<vgroup i18n="#cat_basic" title="Basic">
don't work

Re: Tab translation

Posted: Fri Apr 24, 2026 7:28 pm
by airsoftsoftwair
According to the documentation the i18n syntax for attributes is like this:

Code: Select all

<window title="My application@i18n:1">...</window>
So for your case it probably should be this:

Code: Select all

<vgroup title="Basic@i18n:#cat_basic">

Re: Tab translation

Posted: Fri Apr 24, 2026 10:27 pm
by Bohun
It worked, thank you for your help