I have a listbox populated form a database table. I want to add a last item called "Go back" and I add it from the source code in this way:
lbDGroup.Items.Add('GO BACK');
I have a TLang component with the "GO BACK" string translated into another languages, but this item it's not transalted (it always shows "GO BACK").
How can I set it to be translated with TLang (all components added from design and all showmessages are shown correctly translated).
Thank's