Access to Translated field Names from inside Scripts

If you made a script you can offer it to the others here, or ask help to improve it. You can also report here bugs & problems with existing scripts.
Post Reply
aleph
Posts: 4
Joined: 2005-08-21 14:34:29

Access to Translated field Names from inside Scripts

Post by aleph »

Hi, sorry for my poor english...

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:

Fields.Strings.String[8]=Título Original
... if I would build a tree inside a script, instead of put something static text like:
PickTreeAdd('Titre original (Original Title)', IntToStr(fieldOriginalTitle));
.... I code something dinamic what work with different translations files like: ( NOTE: This don't work)
PickTreeAdd(Fields.Strings.String[8], IntToStr(fieldOriginalTitle));
Thanks in advance.
Cheers!
antp
Site Admin
Posts: 9651
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

Hi,
It is not possible currently.
aleph
Posts: 4
Joined: 2005-08-21 14:34:29

Post by aleph »

Ok, antp
Thanks for the fast answer. :wink:
Post Reply