Page 1 of 1

DoNotTranslate

Posted: Wed Nov 11, 2009 4:31 pm
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

Posted: Thu Nov 12, 2009 8:44 am
by isiticov
Hi,

Thank you for the the fix! It will be applied in next update.