Is posible to access to the Translated Names of the fields from inside a script?
When I say "Translated Names of fields" I mean to the named defined in the language.lng file, for example:
... if I would build a tree inside a script, instead of put something static text like:Fields.Strings.String[8]=Título Original
.... I code something dinamic what work with different translations files like: ( NOTE: This don't work)PickTreeAdd('Titre original (Original Title)', IntToStr(fieldOriginalTitle));
Thanks in advance.PickTreeAdd(Fields.Strings.String[8], IntToStr(fieldOriginalTitle));
Cheers!