Hello,
I have many projects which use one unit which contains all my resourcestrings. When I use the PE Import, it retrieves all the strings of the exe file.
But there are too many strings, I just want traduce the resourcestring of my unit.
Do you know how to do this ?
Thanks
Thib
[Solved] ResourceString
[Solved] ResourceString
Last edited by Thib on Tue Jun 20, 2006 3:13 pm, edited 1 time in total.
Hello,
Actually, most of your strings will be groupped in the list, but Wizard unable to distinguish between "your" strings and others. So you will have to find your strings and import them.
Additionally, you can try to use use CONST section translation (if you use Delphi) and rename resourcestring keyword to var after this.
Hope this helps.
Actually, most of your strings will be groupped in the list, but Wizard unable to distinguish between "your" strings and others. So you will have to find your strings and import them.
Additionally, you can try to use use CONST section translation (if you use Delphi) and rename resourcestring keyword to var after this.
Hope this helps.
Best regards,
Igor Siticov.
Igor Siticov.
Resource strings are stored in executable resources and when translating them they will be duplicated in TsiLang too. When using CONST section they will be stored in TsiLang only. And additionally this gives you the more comfortable way of translating them since you will see all of them at once and won't need to search them from all application's strings.
Best regards,
Igor Siticov.
Igor Siticov.