Search found 2383 matches

by isiticov
Fri Feb 27, 2004 8:19 pm
Forum: TsiLang Components Suite
Topic: question about default charset
Replies: 3
Views: 8554

I think it should be installed with MS Office, but you may try to install the additional languages support for your Win2k and may be this will contain the Arial Unicode font as well. Otherwise you will need just to use different fonts for diferent languages.
by isiticov
Fri Feb 27, 2004 8:17 pm
Forum: TsiLang Components Suite
Topic: Using TsiLang with TMS inspector bar
Replies: 3
Views: 7810

They are. ExtendedTranslations is property with translations as well as others. The only difference is that it provides support for additional and "custom" property types, exactly as in case with TMS Inspector.
by isiticov
Fri Feb 27, 2004 5:23 am
Forum: TsiLang Components Suite
Topic: question about default charset
Replies: 3
Views: 8554

For non translated controls it is up to you to use or not some particular Charset and depends on your app design. When using DEFAULT_CHARSET your user will be able to see correctly only languages supported by OS by default. This means: that under default locale set German you will be able to see Ger...
by isiticov
Thu Feb 26, 2004 7:00 pm
Forum: TsiLang Components Suite
Topic: Using TsiLang with TMS inspector bar
Replies: 3
Views: 7810

Just use ExtendedTranslations property and translate your Items captions as well as any other their property.
by isiticov
Thu Feb 26, 2004 6:55 pm
Forum: TsiLang Components Suite
Topic: Getting languages from SIB file???
Replies: 5
Views: 10340

Thank you for your files. There was small bug in TsiLangDispatcher LoadAllFromFile() method which is already fixed in our internal sources. This is why we were unable to reproduce the bug. You can either wait till next release or modify the siComp.pas by replacing all occurrences of FileName to AFil...
by isiticov
Wed Feb 25, 2004 5:47 pm
Forum: TsiLang Components Suite
Topic: Getting languages from SIB file???
Replies: 5
Views: 10340

Please send it to us among with test project where it was used. Thanks.
by isiticov
Wed Feb 25, 2004 12:41 pm
Forum: TsiLang Components Suite
Topic: Getting languages from SIB file???
Replies: 5
Views: 10340

Could you please try to replace special chars (umlauts) in language names and check if this would help?
Because may this is the origin of problem.
by isiticov
Wed Feb 25, 2004 5:53 am
Forum: TsiLang Components Suite
Topic: BIG PROBLEM, WHY DOES SILANG NOT RECURSE FRAMES?
Replies: 1
Views: 6172

In order to translate frames you should place TsiLang inside base frame.

You can find sample project (in Delphi) that demonstrates TsiLang functionality when using Frames at http://www.sicomponents.com/soft/siLangFrames.zip
by isiticov
Thu Feb 19, 2004 8:18 pm
Forum: TsiLang Components Suite
Topic: const section
Replies: 1
Views: 5833

Yes, either changed CONST to VAR or add {$J+} at the top of your unit.
by isiticov
Tue Feb 17, 2004 6:45 pm
Forum: Resource Builder
Topic: Bug when trying to use quotes in title
Replies: 1
Views: 10334

Yes, there is bug will be fixed. As workaround could be used to edit dialog resource as text and place \" in control's caption where quote should be then it will work.
by isiticov
Mon Feb 16, 2004 3:49 am
Forum: Resource Builder
Topic: include file issue
Replies: 1
Views: 10295

We're working now under implementing something like this. So hope this will be available soon.
by isiticov
Fri Feb 13, 2004 6:09 am
Forum: TsiLang Components Suite
Topic: What to do with a translated .sil file?
Replies: 3
Views: 8341

Do you able to open SIL file in SIL Editor and see all its content correctly? It looks like something wrong with SIL file. Please check that its format is correct. There should be the sections as in INI files: [Captions], [Hints] and so on. Each section should list components for each form: TForm1.L...
by isiticov
Fri Feb 13, 2004 6:06 am
Forum: TsiLang Components Suite
Topic: Static string tables
Replies: 2
Views: 7248

May be such way would be applicable and helpful: AnsiString String1; AnsiString String2; AnsiString String3; static AnsiString * sActions[] = { &String1, &String2, &String3}; -------------------- void __fastcall TForm1::FormCreate(TObject *Sender) { siLangLinked1ChangeLanguage(Sender); }...
by isiticov
Fri Feb 13, 2004 5:37 am
Forum: TsiLang Components Suite
Topic: Is GetTextOrDefault thread safe?
Replies: 2
Views: 7036

Yes it is thread safe since it will only read from translations list. So you can use it in threads as well.
by isiticov
Fri Feb 13, 2004 5:35 am
Forum: TsiLang Components Suite
Topic: Found String Constants
Replies: 3
Views: 7730

Yes, of course you have to be sure that there are no already any string with new ID which may become after changing start ID.