DoNotTranslate

All announcements, questions and issues related to the TsiLang Components Suite.
Post Reply
LePrince
Posts: 9
Joined: Tue Aug 25, 2009 2:09 pm

DoNotTranslate

Post by LePrince »

Hi,

i just found out that excluded Types get displayed in the Translation Editor although they shouldn't (because i excluded them).

To solve this add the following line to siTransEditor.pas approx. at line no 1524:

Code: Select all

        if ASiLang.DoNotTranslate.IndexOf(ASiLang.Owner.Components[I].Name) > -1
          then
          Continue;
        if ASiLang.DoNotTranslate.IndexOf('!' + ASiLang.Owner.Components[I].ClassName) > -1 then Continue;  // this is the added line 
Greetings, Wolfgang
isiticov
Site Admin
Posts: 2383
Joined: Thu Nov 21, 2002 3:17 pm

Post by isiticov »

Hi,

Thank you for the the fix! It will be applied in next update.
Best regards,
Igor Siticov.
Post Reply