Tab translation

Find quick help here to get you started with Hollywood
Post Reply
Bohun
Posts: 24
Joined: Sat Jul 16, 2016 8:34 am
Location: Poland

Tab translation

Post 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
User avatar
airsoftsoftwair
Posts: 5953
Joined: Fri Feb 12, 2010 2:33 pm
Location: Germany
Contact:

Re: Tab translation

Post 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">
Bohun
Posts: 24
Joined: Sat Jul 16, 2016 8:34 am
Location: Poland

Re: Tab translation

Post by Bohun »

It worked, thank you for your help
Post Reply