Search found 17 matches

by DavidD
Thu Jun 14, 2012 9:51 pm
Forum: TsiLang Components Suite
Topic: Requirements for Chinese display
Replies: 2
Views: 7988

Thank you

I knew you would have something.
by DavidD
Wed Jun 13, 2012 5:10 pm
Forum: TsiLang Components Suite
Topic: Requirements for Chinese display
Replies: 2
Views: 7988

Requirements for Chinese display

I apologize for bothering you with this, but I think you will be able to answer quickly whereas I would take a long time putting the pieces together. We have used TsiLang to do an English & French version of our program. Now we need to add Chinese. We are using Delphi 7 with DevEx components (ve...
by DavidD
Fri Jan 29, 2010 8:52 pm
Forum: TsiLang Components Suite
Topic: DevEx Localizer
Replies: 1
Views: 4887

DevEx Localizer

Our current globalized product uses tsiLang v6.0.3 :oops: We are now needing to globalize a newer version of our product that makes almost exclusive use of DevEx components including grids, trees, ribbons and such. With tsiLang v6.0.3 some DevEx component captions were 'invisible' (buried under Prop...
by DavidD
Thu Jan 17, 2008 6:21 pm
Forum: TsiLang Components Suite
Topic: Memory Leak
Replies: 3
Views: 7327

This is on line 7999 in the 16-Nov-2006 version of siComp.

How often would this be called? It looks, maybe, like only on a Change Language event.
by DavidD
Thu Apr 12, 2007 5:21 pm
Forum: TsiLang Components Suite
Topic: strings need translation before form is created
Replies: 5
Views: 8872

Yah, I know it's not a TsiLang problem. Let me just confirm a couple of things. My already created form is dmInternational. I will need to manually copy the strings from the TfrmViewer siLang component properties to the dmInternational.siLang component properties and assign it an IDS_xxx ID unique w...
by DavidD
Thu Apr 12, 2007 4:38 pm
Forum: TsiLang Components Suite
Topic: strings need translation before form is created
Replies: 5
Views: 8872

When would I make the change to specify the already created form?
by DavidD
Thu Apr 12, 2007 4:33 pm
Forum: TsiLang Components Suite
Topic: Expert - Clear Translation - how to get list of strings back
Replies: 1
Views: 5525

Expert - Clear Translation - how to get list of strings back

In diagnosing the problem with needing to call my global TsiLang.GetText and the local TsiLang.GetText in the same unit, I used the TsiLang Expert, File | Clear Translation option. Now, however, all the strings are gone. The File | Source | With Form... option says everything is ok. How do I get the...
by DavidD
Thu Apr 12, 2007 3:42 pm
Forum: TsiLang Components Suite
Topic: strings need translation before form is created
Replies: 5
Views: 8872

strings need translation before form is created

Hoo boy, we have gotten too tricky. The situation is this: unit interface type TfrmViewer = class(ancestor viewer with TsiLang component) public class function ShowItems (formCaption: String): Boolean; end; function ShowItems1: boolean; function ShowItems2: boolean; implementation function ShowItems...
by DavidD
Mon Mar 19, 2007 10:06 pm
Forum: TsiLang Components Suite
Topic: Working with SIL files #2
Replies: 1
Views: 5495

Working with SIL files #2

And one more:
When I read back the project SIL file it seems to overwrite translations I have made in the code using TsiLang Expert (design time) with blanks from the SIL file. Am I observing the behavior correctly and if so, can it be flagged to only read in non-blank entries?

Thanks again
by DavidD
Mon Mar 19, 2007 10:00 pm
Forum: TsiLang Components Suite
Topic: Working with SIL files
Replies: 1
Views: 5350

Working with SIL files

Some questions and observations about working with SIL files: File | Save/Load Translation | Save Project - the SIL file (Captions) contains blanks even though all my forms siLangLink components have AutoSkipEntries = True. What am I missing? File | Save/Load Translation | Save Project Properties cr...
by DavidD
Thu Mar 15, 2007 9:53 pm
Forum: TsiLang Components Suite
Topic: siLang data mod initialization
Replies: 1
Views: 5319

siLang data mod initialization

We have placed both both the siLangDispatcher and siLang components in an otherwise empty data mod called dmInternational. It is auto-created before any other form. However, several of our non-visual units reference GetTextordefault and MessageDlg and they have initialization code sections. This com...
by DavidD
Tue Mar 13, 2007 8:10 pm
Forum: TsiLang Components Suite
Topic: Size optimization
Replies: 2
Views: 5822

I just discovered that I had project Options set to compile without any run time packages. I added the D7r.bpl to the list and now the exe is down to less than 8 mbyte. :D
by DavidD
Tue Mar 13, 2007 7:20 pm
Forum: TsiLang Components Suite
Topic: Unable to obtain the interface of form module
Replies: 2
Views: 6339

Splendid - actually it was mis-named in the project source.
by DavidD
Tue Mar 13, 2007 2:49 pm
Forum: TsiLang Components Suite
Topic: Unable to obtain the interface of form module
Replies: 2
Views: 6339

Unable to obtain the interface of form module

I have one form that gives the above error when attempting to use the Wizard. The beginning of the file is: unit StopsReportOptions; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, Buttons, MiscUtils; type TfrmStopsReportOptions = class(TF...
by DavidD
Mon Mar 12, 2007 9:49 pm
Forum: TsiLang Components Suite
Topic: Skipped lines in need of translation
Replies: 1
Views: 5081

Skipped lines in need of translation

The following line of Delphi code is not recognized as needing a GetTextorDefault: self.OrdCustomerAddress2.Hint:= 'Bill to: '#13+dmOrder.OrdCustomerAddrBlock.AsString + tern(AppSettings.Admin.Misc.ShowMapIt,#13'Click to locate address on internet',''); Tern (bool,string,string) is a function return...