Search found 12 matches

by markjan
Tue Oct 03, 2006 7:32 pm
Forum: TsiLang Components Suite
Topic: Searching entire .sib file in TsiLang Editor
Replies: 4
Views: 12115

Great, that would be an extremely useful feature.
by markjan
Tue Oct 03, 2006 4:03 pm
Forum: TsiLang Components Suite
Topic: Searching entire .sib file in TsiLang Editor
Replies: 4
Views: 12115

Searching entire .sib file in TsiLang Editor

Is there a way to search for a specific text across the entire .sib file when you have it open in the TsiLang Files Editor?

Often a translator does not know in which specific form a text is located, and you have to search through each and every form until you find it.
by markjan
Thu Apr 27, 2006 12:22 pm
Forum: TsiLang Components Suite
Topic: Issues with TsiLang Files Editor
Replies: 2
Views: 6158

It was reported by a user on our forum:

http://www.collectorz.com/phpbb2/viewtopic.php?t=5774

Maybe you can ask him directly for more info?
by markjan
Wed Apr 26, 2006 9:14 am
Forum: TsiLang Components Suite
Topic: Issues with TsiLang Files Editor
Replies: 2
Views: 6158

Issues with TsiLang Files Editor

Users translating our Collectorz.com software have reported the following two issues: 1. In TsiLang Files Editor shortcuts RAlt+a and RAlt+s are bound to editor's functions, while in Polish (and I am sure in some other languages too) they are used for national chracters entry. It's quite uncomfortab...
by markjan
Thu Feb 16, 2006 1:45 pm
Forum: TsiLang Components Suite
Topic: 6.0.1: Bug in TsiLangDispatcher?
Replies: 11
Views: 19453

No problem; can I assume these changes will be applied in the next update?
by markjan
Thu Feb 16, 2006 9:24 am
Forum: TsiLang Components Suite
Topic: 6.0.1: Bug in TsiLangDispatcher?
Replies: 11
Views: 19453

The code fragment I posted above solves the problem; does that give you any clue as to where the problem is?

As to a form missing from the sib file: I created it from the Language Expert doing a 'Save Project' from it - so I assume that includes all forms in the project.
by markjan
Tue Feb 14, 2006 5:09 pm
Forum: TsiLang Components Suite
Topic: 6.0.1: Bug in TsiLangDispatcher?
Replies: 11
Views: 19453

I did check the .sib file with the SILEditor (that's how I added the new language to it), and as far as I can see all units and forms show that language column. How would I 'correct' the sib file in this case? Also, please understand that this is not an exotic problem. We want to be able to have use...
by markjan
Tue Feb 14, 2006 2:10 pm
Forum: TsiLang Components Suite
Topic: 6.0.1: Bug in TsiLangDispatcher?
Replies: 11
Views: 19453

OK, but I get an ELanguageError after running this code. It happens when the .sib file has more languages than are defined design-time. The LoadAllFromFile completes OK, but when I later set the LangDispatcher.ActiveLanguage property to the new value, I get the error message because one of the TsiLa...
by markjan
Tue Feb 14, 2006 1:47 pm
Forum: TsiLang Components Suite
Topic: 6.0.1: Bug in TsiLangDispatcher?
Replies: 11
Views: 19453

OK; in the same method I also noticed if FSIComponents.Count > 0 then begin FLangNames.Assign(TsiCustomLang(FSIComponents[0]).FLangNames); FNumOfLanguages := TsiCustomLang(FSIComponents[0]).NumOfLanguages; end; should that not be if FSIComponents.Count > 0 then begin LangNames.Assign(TsiCustomLang(F...
by markjan
Tue Feb 14, 2006 1:05 pm
Forum: TsiLang Components Suite
Topic: 6.0.1: Bug in TsiLangDispatcher?
Replies: 11
Views: 19453

6.0.1: Bug in TsiLangDispatcher?

In procedure TsiLangDispatcher.LoadAllFromFile (in siComp.pas), there is a code section that reads

Code: Select all

  for I := 0 to FSIComponents.Count - 1 do
    TsiCustomLang(FSIComponents[0]).Loaded;
should that not be

Code: Select all

  for I := 0 to FSIComponents.Count - 1 do
    TsiCustomLang(FSIComponents[I]).Loaded;
?
by markjan
Wed Feb 08, 2006 3:38 pm
Forum: TsiLang Components Suite
Topic: Adding other CONST after "Modifying source"
Replies: 11
Views: 17372

Thanks for the explanation; "skip words and phrases" is the one I need then - good. Perhaps the terminology can be clarified in the interface and manual?
by markjan
Wed Feb 08, 2006 1:02 pm
Forum: TsiLang Components Suite
Topic: Adding other CONST after "Modifying source"
Replies: 11
Views: 17372

Am I correct to understand that this means that the exclude list works on partial matches? I.e. if I add 'a' to the exclude list, any string that includes 'a' anywhere will be excluded?

If so, that is very confusing and not how I expected it to work. I would much prefer an exact match option.